/* ===== Custom Properties ===== */
:root {
  --fv-bg:    #FCF6EC;
  --emp-bg:   #B0C7D9;
  --sol-bg:   #FBD9CA;
  --scene-bg: #fae0d0;
  --col-bg:   #FCF6EC;
  --ugc-bg:   #E2D5EC;
  --prod-bg:  #fff;
  --cust-bg:  #C4DBCB;

  --black:  #2A2A2A;
  --mid:    #555;
  --light:  #888;
  --white:  #fff;
  --border: rgba(0,0,0,.12);

  --font:   'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;

  --w:      1200px;
  --px:     20px;
  --py:     48px;
  --radius: 8px;
  --ease:   .25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ===== Layout ===== */
.container {
  max-width: 360px;
  margin-inline: auto;
}

@media (min-width: 1080px) {
  .container {
    max-width: 1080px;
  }
}

/* ===== Typography helpers ===== */
.sec-title {
  font-family: var(--font);
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 8px;
}

.sec-title img {
  margin-inline: auto;
}

.sec-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 2.86px;
  text-align: center;
  color: var(--mid);
  margin-bottom: 32px;
}

.custom .sec-subtitle {
  color: var(--white);
}

@media (min-width: 1080px) {
  .sec-subtitle br {
    display: none;
  }

  .ugc .sec-subtitle br {
    display: inline;
  }

  .custom .sec-subtitle br {
    display: inline;
  }

  .custom .sec-subtitle {
    margin-bottom: 22px;
  }

  .ugc .sec-subtitle {
    font-size: 18px;
    vertical-align: middle;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 3px;
  transition: opacity var(--ease);
}

.btn:hover {
  opacity: .82;
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}

.btn__arrow {
  position: absolute;
  inset-inline-end: 56px;
}

.btn--cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.56px;
  text-align: center;
}

.btn--block {
  display: flex;
  width: 100%;
  padding: 18px;
  font-size: 16px;
  margin-top: 4px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 12px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--w);
  margin-inline: auto;
  height: 60px;
  padding-inline: 12px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  width: auto;
  height: 27px;
}

@media (min-width: 1080px) {
  .header__logo-img {
    height: 46px;
  }

  .header__inner {
    max-width: 1080px;
    padding-inline: 0;
    height: 80px;
  }
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: translate .3s ease, rotate .3s ease, opacity .2s ease, scale .2s ease;
}

@media (min-width: 1080px) {
  .header__menu-btn span {
    background: var(--black);
  }
}

/* ===== Nav Drawer ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--fv-bg);
  z-index: 200;
  translate: 100%;
  transition: translate .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.nav-drawer.is-open {
  translate: 0;
}

@media (min-width: 1080px) {
  .nav-drawer {
    inset: 0 0 0 auto;
    width: 360px;
  }
}

.nav-drawer__inner {
  display: flex;
  flex-direction: column;
  padding: 17px 15px;
  min-height: 100%;
}

.nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav-drawer__title img {
  width: 138px;
}

.nav-drawer__close {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--ease);
}

.nav-drawer__close:hover {
  background: rgba(0,0,0,.06);
}

.nav-drawer__list {
  list-style: none;
}

.nav-drawer__link {
  display: flex;
  align-items: center;
  height: 50px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 49.1px;
  letter-spacing: 2.86px;
  vertical-align: middle;
  color: var(--black);
  transition: opacity var(--ease);
}

.nav-drawer__link:hover {
  opacity: .6;
}

.nav-drawer__num {
  width: 22px;
  margin-inline-end: 12px;
  flex-shrink: 0;
}

.nav-drawer__link::after {
  content: '→';
  margin-left: auto;
  font-size: 12px;
  color: var(--black);
}

.nav-drawer__social {
  display: flex;
  gap: 26px;
  margin-top: 40px;
}

.nav-drawer__social img {
  width: 32px;
  height: 32px;
}

.nav-drawer__social a:hover {
  opacity: .7;
}

/* Hamburger → ✕ animation */
.header__menu-btn.is-open span:nth-child(1) {
  translate: 0 7px;
  rotate: 45deg;
}

.header__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
  scale: 0;
}

.header__menu-btn.is-open span:nth-child(3) {
  translate: 0 -7px;
  rotate: -45deg;
}

/* ===== FV ===== */
.fv {
  background: var(--fv-bg);
}

.fv__visual {
  position: relative;
  overflow: hidden;
}

.fv__slider {
  position: relative;
}

.fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.fv__slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.fv__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 13px;
}

.fv__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: 1px solid #6CB6E0;
  transition: background var(--ease);
}

.fv__dot.is-active {
  background: #6CB6E0;
}

.fv__content {
  background: var(--fv-bg);
}

.fv__content-inner {
  max-width: 360px;
  margin-inline: auto;
  padding-block: 28px 79.16px;
  text-align: center;
}

.fv__title {
  width: 319px;
  display: flex;
  justify-content: center;
  position: relative;
  left: 35px;
}

.fv__sub {
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 2.86px;
  text-align: center;
  color: var(--black);
  margin-bottom: 23px;
}

.fv__coupon {
  margin-bottom: 43px;
}

@media (min-width: 1080px) {
  .fv {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 540px) minmax(0, 540px) minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    align-items: center;
    padding-top: 80px;
  }

  .fv__content {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px 0 0;
  }

  .fv__visual {
    grid-column: 3;
    grid-row: 1;
  }

  .fv__dots {
    grid-column: 3;
    grid-row: 2;
    justify-content: center;
    padding: 16px 0 40px;
  }

  .fv__dot {
    width: 10px;
    height: 10px;
  }

  .fv__content-inner {
    max-width: none;
    text-align: left;
    padding-block: 0;
  }

  .fv__title {
    width: 478px;
    left: 0;
    margin-inline-start: auto;
  }

  .fv__sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 2.86px;
    text-align: center;
    vertical-align: middle;
  }

  .fv__coupon {
    width: 360px;
    margin: 0 auto 20px;
  }

  .btn--cta {
    width: 360px;
    margin: auto;
  }
}

/* ===== Empathy ===== */
.empathy {
  position: relative;
  background: var(--emp-bg);
  padding-block: 36px 62px;
}

.empathy .sec-title {
  margin-bottom: 36px;
}

.speech-list {
  display: flex;
  flex-direction: column;
  max-width: 360px;
  margin-inline: auto;
}

.speech-bubble {
  opacity: 0;
}

.speech-bubble.is-visible {
  opacity: 1;
}

.speech-bubble--l {
  align-self: start;
}

.speech-bubble--r {
  align-self: end;
}

.empathy-copy {
  position: absolute;
  bottom: -40px;
  left: 50%;
  translate: -50%;
  width: 304px;
  height: 81px;
  z-index: 1;
}

.empathy-copy img {
  width: 100%;
}

/* ===== Solution ===== */
.solution {
  background: var(--sol-bg);
  padding-block: 66px 80px;
}

.solution__banner {
  margin-bottom: 24px;
  overflow: hidden;
}

.solution__banner-inner {
  display: grid;
  align-items: center;
}

.solution__banner-text {
  margin-bottom: 14px;
}

.solution__banner-text img {
  margin-inline: auto;
}

@media (min-width: 1080px) {
  .solution {
    padding-block: 127px 136px;
  }

  .solution__banner {
    margin-bottom: 35px;
  }

  .solution__banner-inner {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .solution__banner-text {
    width: 370px;
    margin-inline-start: auto;
  }

  .solution__banner-text img {
    width: 370px;
  }

  .img-ph--sol-banner {
    width: 650px;
  }

  .img-ph--sol-banner img {
    width: 650px;
  }
}

.solution__copy {
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.solution__copy-sub {
  font-size: 14px;
  color: var(--mid);
  text-align: center;
  margin-bottom: 44px;
}

.feature-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 1080px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.feature-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-block: 14px 8px;
}

.feature-card__body {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
}

/* ===== Scene ===== */
.scene {
  background: var(--scene-bg);
  padding-block: var(--py);
}

.scene .container {
  margin-bottom: 20px;
}

.scene-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-inline: var(--px);
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.scene-scroll::-webkit-scrollbar {
  height: 4px;
}

.scene-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.2);
  border-radius: 2px;
}

.scene-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
}

.scene-caption {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
  color: var(--mid);
}

@media (min-width: 1080px) {
  .scene-card {
    flex: 0 0 200px;
  }
}

/* ===== Color Section ===== */
.oshi-colors {
  background: var(--col-bg);
  padding-bottom: 56px;
}

.oshi-colors > .sec-title {
  margin-bottom: 0;
}

.oshi-colors > .sec-title img {
  margin-inline: auto;
}

.oshi-colors .sec-subtitle {
  color: var(--black);
  margin-bottom: 12px;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 8px;
  width: 360px;
  margin-bottom: 39px;
}

@media (min-width: 1080px) {
  .color-grid {
    grid-template-columns: repeat(4, 1fr);
    width: 1080px;
    margin: auto auto 73px;
    gap: 36px 26px;
  }

  .color-item img {
    width: 100%;
  }

  .oshi-colors > .sec-title img {
    width: 582px;
  }

  .oshi-colors .sec-subtitle {
    margin-bottom: 32px;
    vertical-align: middle;
  }
}

.color-item {
  text-align: center;
}

.color-name {
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
}

.oshi-copy {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.56px;
  text-align: center;
  margin-bottom: 16px;
}

/* ===== UGC ===== */
.ugc {
  background: var(--ugc-bg);
  padding-bottom: 62px;
  position: relative;
}

.ugc > .sec-title {
  margin-bottom: 0;
}

.ugc > .sec-title img {
  margin-inline: auto;
}

.ugc .sec-subtitle {
  color: var(--white);
  margin-bottom: 0;
}

.bridge-copy--pc {
  display: none;
}

@media (min-width: 1080px) {
  .bridge-copy--pc {
    display: block;
    position: absolute;
    bottom: -40px;
    left: 50%;
    translate: -50%;
    width: 304px;
    height: 81px;
    z-index: 1;
  }

  .custom {
    position: relative;
  }
}

.ugc .bridge-copy {
  position: absolute;
  bottom: -40px;
  left: 50%;
  translate: -50%;
  width: 304px;
  height: 81px;
  z-index: 1;
}

.ugc .bridge-copy img {
  width: auto;
  height: 100%;
}

@media (min-width: 1080px) {
  .ugc .bridge-copy {
    display: none;
  }
}

.ugc-card {
  display: block;
  transition: scale var(--ease);
}

.ugc-card:hover {
  scale: 1.02;
}

.ugc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-inline-start: 3px;
}

.ugc-name {
  font-size: 11px;
  text-align: center;
  margin-top: 6px;
  color: var(--mid);
}

/* ===== Product ===== */
.product {
  background: var(--prod-bg);
  padding-block: 66px 69px;
}

.product__layout {
  display: grid;
  gap: 18px;
  margin-bottom: 55px;
}

.product__gallery {
  overflow: hidden;
}

.product__gallery #productMainImg {
  margin-bottom: 10px;
}

.product__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
}

.product__thumbs::-webkit-scrollbar {
  display: none;
}

.product__thumbs .img-ph--thumb {
  flex: 0 0 82px;
  cursor: pointer;
  border: #EEEEEE solid 1px;
}

.product__brand {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 2.2px;
  color: #7B7165;
  margin-bottom: 9px;
}

.product__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 37.4px;
  letter-spacing: -0.22px;
  color: var(--black);
  margin-bottom: 17px;
}

.product__price {
  display: flex;
  align-items: baseline;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 51px;
  letter-spacing: -0.6px;
  color: var(--black);
  margin-bottom: 12px;
}

.product__price-sub {
  display: flex;
  align-items: end;
}

.product__price-tax {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 18.7px;
  letter-spacing: 0;
  color: var(--black);
  align-self: end;
}

.product__price-badge {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 18.7px;
  letter-spacing: 0;
  color: var(--white);
  background: var(--black);
  padding: 4px 10px;
  border-radius: 2px;
}

.product-coupon {
  margin: 0 20px 24px;
}

.product-coupon-sub {
  font-size: 10px;
  color: var(--mid);
  margin-top: 4px;
}

.product__picker {
  margin-bottom: 24px;
}

.product__picker-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.product__picker-label,
.product__picker-current {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 18.7px;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--black);
}

.product__swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sw);
  transition: scale var(--ease);
}

.swatch.is-selected {
  border: 4px solid var(--white);
  box-shadow: 0 0 0 1px #A6A6A6;
}

.product__cart-note {
  font-size: 10px;
  text-align: center;
  color: var(--light);
  margin-top: 8px;
}

.product__specs {
  display: grid;
  gap: 24px;
}

@media (min-width: 1080px) {
  .product {
    padding-block: 66px 80px;
  }

  .product .container {
    max-width: 784px;
  }

  .product__gallery {
    width: 360px;
  }

  .product__layout {
    gap: 63px;
    grid-template-columns: 360px 1fr;
    align-items: end;
    margin-bottom: 36px;
  }

  .product-coupon {
    margin: 0 0 22px;
    width: 308px;
  }

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

.spec-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 37.4px;
  letter-spacing: -0.22px;
  color: var(--black);
  margin-bottom: 8px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.spec-table th,
.spec-table td {
  padding-block: 17px;
  padding-inline: 10px;
  text-align: left;
  border: 1px solid #F0E5D0;
  vertical-align: middle;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  letter-spacing: -0.22px;
}

.spec-table th {
  background: var(--fv-bg);
  font-size: 16px;
  line-height: 37.4px;
  width: 117px;
  white-space: nowrap;
}

.spec-table td {
  font-size: 14px;
  line-height: 19px;
}

.func-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
}

.func-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.22px;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 70px;
  border: 1px solid #F0E5D0;
}

/* ===== Custom ===== */
.custom {
  background: var(--cust-bg);
  padding-block: 0 62px;
}

.custom .sec-title {
  margin-bottom: 0;
}

.custom-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

@media (min-width: 1080px) {
  .custom {
    padding-block: 0 100px;
  }

  .custom .sec-title img {
    width: 505px;
  }

  .custom-grid {
    grid-template-columns: 1fr 1fr;
    width: 762px;
    margin: auto;
  }
}

/* ===== Final CTA ===== */
.final-cta {
  background: linear-gradient(170.6deg, #F8C5B5 0%, #F4A595 100%);
  padding-block: 32px 73px;
  overflow: hidden;
}

.final-cta__content {
  max-width: 360px;
  margin-inline: auto;
  text-align: center;
}

.final-cta__img {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.final-cta .btn + .btn {
  margin-top: 16px;
}

.final-cta__title {
  font-family: var(--font);
  font-size: clamp(36px, 8vw, 68px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.final-cta__title img {
  width: 399px;
}

.final-cta__sub br {
  display: none;
}

.final-cta__sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 2.86px;
  text-align: center;
  color: var(--black);
  margin-bottom: 15px;
}

.final-cta__coupon {
  display: inline-block;
  margin-bottom: 43px;
}

.final-cta__coupon-label {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--mid);
}

.final-cta__coupon-main {
  font-size: 18px;
  font-weight: 700;
  margin-block: 4px;
}

.final-cta__coupon-sub {
  font-size: 11px;
  color: var(--mid);
}

@media (min-width: 1080px) {
  .final-cta {
    padding-block: 92px;
  }

  .final-cta__content {
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1fr 502px;
    column-gap: 36px;
    align-items: start;
    text-align: left;
  }

  .final-cta__text {
    grid-column: 1;
    grid-row: 1;
    margin: auto 0;
  }

  .final-cta__title {
    width: 442px;
    margin: 0 0 24px auto;
  }

  .final-cta__title img {
    width: 100%;
  }

  .final-cta__sub {
    width: 442px;
    margin: 0 0 0 auto;
    font-size: 16px;
    line-height: 24px;
  }

  .final-cta__sub br {
    display: inline;
  }

  .final-cta__img {
    grid-column: 2;
    grid-row: 1;
    width: 502px;
    margin-bottom: 36px;
  }

  .final-cta__coupon {
    grid-column: 1 / 3;
    text-align: center;
    width: 360px;
    margin-inline: auto;
  }

  .final-cta .btn--dark,
  .final-cta .btn--white {
    grid-column: 1 / 3;
    width: 360px;
    margin-inline: auto;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding-top: 42px;
  text-align: center;
}

.footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.footer__logo-img {
  height: 41px;
}

.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 35px;
}


.footer__tags {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  width: 200px;
  margin-inline: auto;
  padding: 4px 12px;
}

.footer__tags span {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 19.8px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: var(--white);
  opacity: .5;
}

.footer__copy {
  font-size: 11px;
  color: var(--white);
  opacity: .5;
}

@media (min-width: 1080px) {
  .footer {
    padding-block: 42px;
  }
}
