@charset "UTF-8";
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  outline: none;
  appearance: none;
}

html {
  font-size: clamp(14px, 1vw, 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  overflow: hidden;
  color: #0071bc;
}
a:hover {
  color: #ffb700;
}

img {
  border: none;
  line-height: 0;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

ul li {
  list-style: none;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 1em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  body {
    font-size: 13px;
  }
}
body {
  letter-spacing: 0.5px;
}

#wrapper {
  overflow: hidden;
}

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.alpha,
.wrap-alpha a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .alpha:hover,
  .wrap-alpha a:hover {
    opacity: 0.7;
  }
}

.bd-01 {
  background: linear-gradient(transparent 60%, rgba(252, 238, 33, 0.6) 0%);
  font-weight: bold;
}

.link a {
  color: #0071bc;
}
.link a:hover {
  color: #ffb700;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .logo {
  margin: 0;
  line-height: 0;
}
.site-header .logo a {
  display: block;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .site-header .logo a:hover {
    opacity: 0.75;
  }
}
.site-header .logo img {
  width: auto;
  height: auto;
  max-width: 80px;
}
.site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 31;
  width: 100%;
  padding: clamp(24px, 4vh, 40px) 0 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .site-header--overlay {
    padding-top: 20px;
  }
}
.site-header--overlay .inner {
  max-width: none;
  padding-left: clamp(24px, 4vw, 48px);
  padding-right: clamp(24px, 4vw, 48px);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .site-header--overlay .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 43.75rem) {
  .site-header--overlay .inner {
    justify-content: flex-start;
  }
}
.site-header--overlay .logo img {
  width: 115px;
  height: auto;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .site-header--overlay .logo img {
    width: 90px;
  }
}

.mv-nav {
  position: fixed;
  top: clamp(24px, 4vh, 40px);
  left: 50%;
  z-index: 25;
  transform: translate(-50%, calc(-100% - 20px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.35s ease, visibility 0.35s ease;
}
@media screen and (max-width: 43.75rem) {
  .mv-nav {
    display: none;
  }
}
.mv-nav.is-show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .mv-nav {
    transition: none;
  }
}
.mv-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin: 0;
  padding: 12px clamp(24px, 4vw, 48px);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  list-style: none;
}
.mv-nav a {
  color: #333;
  font-size: 0.875em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .mv-nav a {
    font-size: 11px;
  }
}
.mv-nav a {
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}
@media (hover: hover) {
  .mv-nav a:hover {
    opacity: 0.65;
    color: #333;
  }
}

.mv-nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: opacity 0.25s ease;
}
@media screen and (max-width: 43.75rem) {
  .mv-nav__toggle {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 32;
  }
}
@media (hover: hover) {
  .mv-nav__toggle:hover {
    opacity: 0.75;
  }
}
.mv-nav__toggle.on .mv-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mv-nav__toggle.on .mv-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.mv-nav__toggle.on .mv-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mv-nav__toggle-bar {
  display: block;
  width: 20px;
  height: 1px;
  border-radius: 1px;
  background-color: #333;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sp-nav {
  display: none;
}
.sp-nav.is-open {
  display: block;
}
.sp-nav .sub {
  display: none;
}
.sp-nav .has-sub.on .sub {
  display: block;
}

.mv-nav-sp {
  position: fixed;
  inset: 0;
  z-index: 30;
  padding: clamp(88px, 14vh, 120px) 24px 40px;
  background-color: rgba(255, 255, 255, 0.97);
  overflow-y: auto;
}
.mv-nav-sp__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.mv-nav-sp__list li + li {
  margin-top: 4px;
}
.mv-nav-sp a {
  display: block;
  padding: 16px 12px;
  color: #333;
  font-size: 16px;
  letter-spacing: 0.08em;
  transition: opacity 0.25s ease;
}
@media (hover: hover) {
  .mv-nav-sp a:hover {
    opacity: 0.65;
    color: #333;
  }
}

html.is-nav-open {
  overflow: hidden;
}

.site-footer {
  background-color: #000;
  color: #fff;
}
.site-footer .footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 80px) 20px clamp(40px, 5vw, 56px);
  text-align: center;
}
.site-footer .footer-logo {
  margin: 0;
  line-height: 0;
}
.site-footer .footer-logo__img {
  display: inline-block;
  width: 100%;
  max-width: 220px;
  height: auto;
}
.site-footer .footer-copyright {
  margin: clamp(32px, 4vw, 48px) 0 0;
  color: #999;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 1px;
}
.site-footer .footer-copyright small {
  font-size: inherit;
}

#back-top {
  position: fixed;
  right: clamp(16px, 2vw, 24px);
  bottom: clamp(24px, 3vw, 40px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#back-top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#back-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  overflow: visible;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  #back-top a:hover {
    opacity: 0.75;
    color: #fff;
  }
}
#back-top .back-top__icon {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}

.inview {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.on {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 2s cubic-bezier(0.075, 0.82, 0.165, 1), transform 2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: var(--fade-delay, 0s);
}

html:not(.js) .inview {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .inview {
    opacity: 1;
    transform: none;
  }
  .on {
    transition: none;
  }
}
.visible {
  opacity: 1;
  transition: opacity 0.8s;
}

.invisible {
  opacity: 0;
}

.fromTopIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.8s, transform 0.8s;
}

.fromTopOut {
  transform: translate(0, -10px);
  opacity: 0;
}

.fromBottomIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.8s, transform 0.8s;
}

.fromBottomOut {
  transform: translate(0, 15px);
  opacity: 0;
}

.fromLeftIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.8s, transform 0.8s;
}

.fromLeftOut {
  transform: translate(-15px, 0);
  opacity: 0;
}

.fromRightIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.8s, transform 0.8s;
}

.fromRightOut {
  transform: translate(10px, 0);
  opacity: 0;
}

.scaleUpIn {
  transform: scale(1, 1);
  opacity: 1;
  transition: opacity 0.8s, transform 0.8s;
}

.scaleUpOut {
  transform: scale(1.2, 1.2);
  opacity: 0;
}

.scaleDownIn {
  transform: scale(1, 1);
  opacity: 1;
  transition: opacity 0.8s, transform 0.8s;
}

.scaleDownOut {
  transform: scale(0.7, 0.7);
  opacity: 0;
}

.rotateIn {
  transform: rotate(0deg) scale(1);
  opacity: 1;
  transition: opacity 0.8s, transform 0.8s;
}

.rotateOut {
  transform: rotate(30deg) scale(0.9);
  opacity: 0;
}

.delay1 {
  transition-delay: 0.1s;
}

.speed1 {
  transition-duration: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.speed2 {
  transition-duration: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.speed3 {
  transition-duration: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.speed4 {
  transition-duration: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

.speed5 {
  transition-duration: 0.5s;
}

.delay6 {
  transition-delay: 0.6s;
}

.speed6 {
  transition-duration: 0.6s;
}

.delay7 {
  transition-delay: 0.7s;
}

.speed7 {
  transition-duration: 0.7s;
}

.delay8 {
  transition-delay: 0.8s;
}

.speed8 {
  transition-duration: 0.8s;
}

.delay9 {
  transition-delay: 0.9s;
}

.speed9 {
  transition-duration: 0.9s;
}

.delay10 {
  transition-delay: 1s;
}

.speed10 {
  transition-duration: 1s;
}

.svg-draw {
  display: block;
  overflow: visible;
}
.svg-draw__path {
  fill: transparent;
  stroke: #231815;
  stroke-width: 0.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--path-length, 0);
  stroke-dashoffset: var(--path-length, 0);
  transition: stroke-dashoffset var(--draw-duration, 0.85s) cubic-bezier(0.65, 0, 0.35, 1) var(--draw-delay, 0s), fill 0.25s ease calc(var(--draw-delay, 0s) + var(--draw-duration, 0.85s) * 0.85), stroke 0.2s ease calc(var(--draw-delay, 0s) + var(--draw-duration, 0.85s));
}
.svg-draw.is-drawn .svg-draw__path {
  stroke-dashoffset: 0;
  fill: #231815;
  stroke: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .svg-draw__path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    fill: #231815;
    stroke: transparent;
    transition: none;
  }
}
html.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #dce8ef 0%, #eef4f8 42%, #fff 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s cubic-bezier(0.075, 0.82, 0.165, 1), visibility 0.9s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-loader__bg::before, .page-loader__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  animation: page-loader-float 5.5s ease-in-out infinite;
}
.page-loader__bg::before {
  top: 12%;
  left: 10%;
  width: min(42vw, 320px);
  height: min(42vw, 320px);
  background: rgba(118, 173, 201, 0.28);
}
.page-loader__bg::after {
  right: 8%;
  bottom: 10%;
  width: min(48vw, 360px);
  height: min(48vw, 360px);
  background: rgba(184, 209, 225, 0.55);
  animation-delay: -2.75s;
}
.page-loader__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  animation: page-loader-rise 1.2s cubic-bezier(0.075, 0.82, 0.165, 1) both;
}
.page-loader__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 4vw, 30px) clamp(32px, 6vw, 52px);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(118, 173, 201, 0.88) 0%, rgba(142, 189, 212, 0.92) 100%);
  box-shadow: 0 16px 40px rgba(118, 173, 201, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  animation: page-loader-breathe 2.8s ease-in-out infinite;
}
.page-loader__brand img {
  display: block;
  width: min(280px, 62vw);
  height: auto;
}
.page-loader__label {
  margin: 0;
  color: rgba(118, 173, 201, 0.85);
  font-size: 0.875em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .page-loader__label {
    font-size: 11px;
  }
}
.page-loader__label {
  letter-spacing: 0.18em;
  text-align: center;
}
.page-loader__indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-loader__indicator span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(118, 173, 201, 0.55);
  animation: page-loader-dot 1.4s ease-in-out infinite;
}
.page-loader__indicator span:nth-child(2) {
  animation-delay: 0.16s;
}
.page-loader__indicator span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes page-loader-float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(14px, -18px);
  }
}
@keyframes page-loader-rise {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes page-loader-breathe {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes page-loader-dot {
  0%, 80%, 100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader {
    transition-duration: 0.01ms;
  }
  .page-loader__bg::before, .page-loader__bg::after, .page-loader__brand, .page-loader__inner, .page-loader__indicator span {
    animation: none;
  }
}
/*
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  font-size: 12px;
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
  overflow: visible;
  margin: 0;
  background: #fff;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  position: absolute;
  bottom: -30px;
  left: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  margin: 0;
}
#cboxCurrent {
  position: absolute;
  bottom: -30px;
  left: 0;
  color: #ccc;
  font-size: 12px;
}
#cboxPrevious,
#cboxNext,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
  cursor: pointer;
}
#cboxClose {
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: -60px;
  right: 0;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
}

// Colorbox 矢印（common.js のスニペットと合わせて使用）
.cbox-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border: 0;
  background: transparent;
  cursor: pointer;
  &.prev {
    left: -40px;
    border-top: solid 1px #fff;
    border-left: solid 1px #fff;
    transform: translateY(-50%) rotate(-45deg);
  }
  &.next {
    right: -40px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: translateY(-50%) rotate(45deg);
  }
}
*/
.bt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.875em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .bt {
    font-size: 11px;
  }
}
.bt {
  line-height: 1;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  width: calc(50% - 8px);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .bt {
    min-height: 44px;
    padding: 10px 16px;
  }
}
.bt:hover {
  transform: translateY(2px);
  text-decoration: none;
  color: #fff;
}
.bt:focus-visible {
  outline: 2px solid #76adc9;
  outline-offset: 2px;
}

.bt-blue {
  background-color: #006cb7;
  box-shadow: 0 3px 0 #004e8c;
}
.bt-blue:hover {
  box-shadow: 0 1px 0 #004e8c;
}

.bt-orange {
  background-color: #e85e17;
  box-shadow: 0 3px 0 #c24d12;
}
.bt-orange:hover {
  box-shadow: 0 1px 0 #c24d12;
}

.bt-icon {
  flex-shrink: 0;
}

.bt-icon--play {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .bt-icon--play {
    border-top-width: 4px;
    border-bottom-width: 4px;
    border-left-width: 7px;
  }
}

.bt-icon--cart {
  display: block;
  width: 23px;
  height: auto;
  filter: brightness(0) invert(1);
}

.top-lineup {
  background-color: #fff;
  padding-bottom: 150px;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup {
    padding-bottom: 75px;
  }
}
.top-lineup .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}
.top-lineup .lineup-box {
  display: flex;
  gap: clamp(24px, 4vw, 40px);
  width: 100%;
  margin: 0 auto;
  padding: 20px 40px 0;
  border: 1px solid #e5e5e5;
  background-color: #fff;
}
@media screen and (max-width: 52.125rem) {
  .top-lineup .lineup-box {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}
@media screen and (max-width: 43.75rem) {
  .top-lineup .lineup-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup .lineup-box {
    padding: 28px 20px;
  }
}
.top-lineup .lineup-visual {
  flex: 0 0 42%;
  max-width: 340px;
  line-height: 0;
}
@media screen and (max-width: 43.75rem) {
  .top-lineup .lineup-visual {
    flex: none;
    width: 100%;
    max-width: 280px;
  }
}
.top-lineup .lineup-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.top-lineup .lineup-body {
  flex: 1;
  min-width: 0;
  padding-top: 30px;
}
@media screen and (max-width: 43.75rem) {
  .top-lineup .lineup-body {
    width: 100%;
    max-width: 400px;
  }
}
.top-lineup .lineup-brand {
  margin: 0;
  line-height: 0;
}
.top-lineup .lineup-brand__logo {
  display: block;
  width: 60px;
  height: auto;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup .lineup-brand__logo {
    width: 64px;
  }
}
.top-lineup .lineup-logo {
  margin: 22px 0 0;
  line-height: 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup .lineup-logo {
    margin-top: 14px;
  }
}
.top-lineup .lineup-logo__img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
}
@media screen and (max-width: 43.75rem) {
  .top-lineup .lineup-logo__img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup .lineup-logo__img {
    max-width: 260px;
  }
}
.top-lineup .lineup-name {
  margin: 12px 0 0;
  color: #333;
  font-size: 1em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup .lineup-name {
    font-size: 13px;
  }
}
.top-lineup .lineup-name {
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup .lineup-name {
    margin-top: 10px;
  }
}
.top-lineup .lineup-patent {
  margin: 8px 0 0;
  color: #666;
  font-size: 0.875em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup .lineup-patent {
    font-size: 11px;
  }
}
.top-lineup .lineup-patent {
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup .lineup-patent {
    margin-top: 6px;
    font-size: 0.75em;
  }
}
.top-lineup .lineup-brand__logo,
.top-lineup .lineup-logo__img {
  filter: brightness(0);
}
.top-lineup .lineup-bts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
@media screen and (max-width: 43.75rem) {
  .top-lineup .lineup-bts {
    justify-content: center;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup .lineup-bts {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    font-size: 18px;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup .lineup-bts .bt {
    width: 100%;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup.top-lineup-1 {
    margin: 0 20px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup.top-lineup-1 .lineup-visual {
    max-width: 200px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup.top-lineup-1 .lineup-logo__img {
    max-width: 200px;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup.top-lineup-1 .lineup-brand__logo {
    max-width: 40px;
    margin: 0 auto 5px;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup.top-lineup-1 .lineup-body {
    padding-top: 0;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup.top-lineup-1 .lineup-bts {
    flex-direction: row;
    width: 100%;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup.top-lineup-1 .lineup-bts .bt {
    width: 50%;
  }
}
.top-lineup.top-lineup-2 {
  background-color: #f0f7fa;
  padding: 100px 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup.top-lineup-2 {
    padding: 50px 0;
  }
}
.top-lineup.top-lineup-2 .inner {
  max-width: 1000px;
}
.top-lineup.top-lineup-2 .lineup-box {
  border: none;
  background-color: #f0f7fa;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-lineup.top-lineup-2 .lineup-brand__logo {
    max-width: 50px;
    margin-left: 10%;
  }
}

.top-review {
  background-color: #f0f7fa;
}
.top-review .review-layout {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 52.125rem) {
  .top-review .review-layout {
    flex-direction: column;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-layout {
    margin-bottom: 0px;
  }
}
.top-review .review-visual {
  flex: 0 0 30%;
  max-width: 30%;
  line-height: 0;
  overflow: hidden;
}
@media screen and (max-width: 52.125rem) {
  .top-review .review-visual {
    flex: none;
    max-width: none;
    width: 100%;
    padding-top: 100px;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-visual {
    overflow: visible;
    padding-top: 50px;
    padding-top: 0;
  }
}
.top-review .review-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 52.125rem) {
  .top-review .review-visual img {
    max-width: 400px;
    margin: 0 auto 50px;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-visual img {
    width: 100%;
    height: auto;
    min-height: auto;
    max-width: 100%;
    margin: 0 auto 15px;
    object-fit: contain;
  }
}
.top-review .review-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.top-review .review-content__inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4.5vw, 72px) 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-content__inner {
    padding: 32px 20px 36px;
    flex: none;
    min-height: 0;
  }
}
.top-review .review-label {
  margin-bottom: 80px;
  line-height: 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-label {
    margin-bottom: 20px;
  }
}
.top-review .review-label .svg-draw {
  display: block;
  width: min(240px, 40vw);
  height: auto;
  opacity: 0.5;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-label .svg-draw {
    width: min(120px, 40vw);
  }
}
.top-review .review-catch {
  margin-bottom: 50px;
  color: #76adc9;
  font-weight: 400;
  font-size: 1.875em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-catch {
    font-size: 1.5em;
  }
}
.top-review .review-catch {
  line-height: 1.65;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-catch {
    margin-top: 18px;
    letter-spacing: 0.06em;
    margin-bottom: 0px;
  }
}
.top-review .review-divider {
  width: 100%;
  height: 1px;
  margin: clamp(28px, 3.5vw, 40px) 0 0;
  padding: 0;
  border: 0;
  background-color: #d4dde3;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-divider {
    margin-top: 24px;
  }
}
.top-review .review-divider--bottom {
  display: none;
  margin-top: clamp(28px, 3.5vw, 40px);
  margin-bottom: 0;
}
@media screen and (max-width: 52.125rem) {
  .top-review .review-divider--bottom {
    display: block;
  }
}
.top-review .review-profile {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 2.5vw, 28px);
  margin-top: auto;
  padding: clamp(28px, 3.5vw, 40px) 0 clamp(20px, 5vw, 40px);
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-profile {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    text-align: center;
  }
}
.top-review .review-photo {
  flex-shrink: 0;
  width: 120px;
  line-height: 0;
}
@media screen and (max-width: 52.125rem) {
  .top-review .review-photo {
    width: 100px;
  }
}
.top-review .review-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.top-review .review-info {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-info {
    width: 100%;
  }
}
.top-review .review-name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 12px;
  margin: 0;
  color: #333;
  line-height: 1.4;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-name {
    justify-content: center;
  }
}
.top-review .review-name .name {
  font-weight: 500;
  font-size: 1.5em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-name .name {
    font-size: 1.25em;
  }
}
.top-review .review-name .name {
  letter-spacing: 0.12em;
}
.top-review .review-name .role {
  font-weight: 400;
  font-size: 0.875em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-name .role {
    font-size: 11px;
  }
}
.top-review .review-name .role {
  letter-spacing: 0.08em;
}
.top-review .review-bio {
  margin: 16px 0 0;
  color: #555;
  font-size: 0.875em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-bio {
    font-size: 11px;
  }
}
.top-review .review-bio {
  line-height: 1.85;
  letter-spacing: 0.04em;
  text-align: justify;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-bio {
    margin-top: 14px;
    text-align: left;
  }
}
.top-review .review-sns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-sns {
    justify-content: center;
    margin-top: 18px;
  }
}
.top-review .review-sns a {
  display: block;
  line-height: 0;
  transition: opacity 0.2s ease;
}
.top-review .review-sns a:hover {
  opacity: 0.65;
}
.top-review .review-sns a:focus-visible {
  outline: 2px solid #76adc9;
  outline-offset: 3px;
}
.top-review .review-sns img {
  display: block;
  width: 24px;
  height: auto;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-sns img {
    width: 22px;
  }
}
.top-review .review-voice {
  padding: clamp(56px, 7vw, 80px) 20px 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-voice {
    padding-top: 0px;
  }
}
.top-review .review-voice__inner,
.top-review .review-tips__inner,
.top-review .review-more__inner,
.top-review .review-recommend__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.top-review .review-voice__title,
.top-review .review-tips__title,
.top-review .review-recommend__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin: 0 0 clamp(40px, 5vw, 56px);
  color: #76adc9;
  font-weight: 700;
  font-size: 1.25em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-voice__title,
  .top-review .review-tips__title,
  .top-review .review-recommend__title {
    font-size: 1.125em;
  }
}
.top-review .review-voice__title,
.top-review .review-tips__title,
.top-review .review-recommend__title {
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: left;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-voice__title,
  .top-review .review-tips__title,
  .top-review .review-recommend__title {
    gap: 12px;
    margin-bottom: 32px;
    letter-spacing: 0.04em;
  }
}
.top-review .review-voice__line,
.top-review .review-tips__line,
.top-review .review-recommend__line {
  flex-shrink: 0;
  width: 48px;
  height: 1px;
  background-color: currentColor;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-voice__line,
  .top-review .review-tips__line,
  .top-review .review-recommend__line {
    width: 32px;
  }
}
.top-review .review-voice__body,
.top-review .review-tips__body,
.top-review .review-more__body,
.top-review .review-recommend__body {
  color: #444;
  font-weight: 400;
  font-size: 1em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-voice__body,
  .top-review .review-tips__body,
  .top-review .review-more__body,
  .top-review .review-recommend__body {
    font-size: 13px;
  }
}
.top-review .review-voice__body,
.top-review .review-tips__body,
.top-review .review-more__body,
.top-review .review-recommend__body {
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: left;
}
.top-review .review-voice__body p,
.top-review .review-tips__body p,
.top-review .review-more__body p,
.top-review .review-recommend__body p {
  margin: 0;
}
.top-review .review-voice__body p + p,
.top-review .review-tips__body p + p,
.top-review .review-more__body p + p,
.top-review .review-recommend__body p + p {
  margin-top: 2em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-voice__body p + p,
  .top-review .review-tips__body p + p,
  .top-review .review-more__body p + p,
  .top-review .review-recommend__body p + p {
    margin-top: 1.75em;
  }
}
.top-review .review-photos,
.top-review .review-tips,
.top-review .review-more {
  padding: clamp(40px, 5vw, 56px) 20px 0;
  background-color: #f0f7fa;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-photos,
  .top-review .review-tips,
  .top-review .review-more {
    padding: 32px 20px 0;
  }
}
.top-review .review-photos__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-photos__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
}
.top-review .review-photos .item {
  margin: 0;
  line-height: 0;
}
.top-review .review-photos .item img {
  display: block;
  width: 100%;
  height: auto;
}
.top-review .review-tips__visual,
.top-review .review-recommend__visual {
  margin: clamp(40px, 5vw, 56px) 0 0;
  line-height: 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-tips__visual,
  .top-review .review-recommend__visual {
    margin-top: 32px;
  }
}
.top-review .review-tips__visual img,
.top-review .review-recommend__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.top-review .review-more__visual {
  width: 100%;
  max-width: calc((min(900px, 100%) - clamp(16px, 2.5vw, 24px)) / 2);
  margin: clamp(40px, 5vw, 56px) auto 0;
  line-height: 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-more__visual {
    margin-top: 32px;
    max-width: 400px;
  }
}
.top-review .review-more__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.top-review .review-recommend {
  padding: clamp(40px, 5vw, 56px) 20px clamp(56px, 7vw, 80px);
  background-color: #f0f7fa;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-review .review-recommend {
    padding: 32px 20px 48px;
  }
}

.top-gallery {
  background-color: #fff;
  padding-top: 150px;
  padding-bottom: 150px;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-gallery {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.top-gallery .gallery-label {
  margin: 0 0 clamp(40px, 5vw, 56px);
  line-height: 0;
  text-align: center;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-gallery .gallery-label {
    margin-bottom: 32px;
  }
}
.top-gallery .gallery-label .svg-draw {
  display: inline-block;
  width: min(200px, 40vw);
  height: auto;
  opacity: 0.5;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-gallery .gallery-label .svg-draw {
    width: min(120px, 50vw);
  }
}

.gallery-slider {
  width: 100%;
}

.gallery-main {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (hover: hover) {
  .gallery-main:hover .gallery-arrow, .gallery-main:focus-within .gallery-arrow {
    opacity: 1;
  }
}
@media (hover: none) {
  .gallery-main .gallery-arrow {
    opacity: 0.85;
  }
}

.gallery-main__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 2000/1333;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .gallery-main__viewport {
    transition: aspect-ratio 0.35s ease;
    touch-action: pan-y;
  }
  .gallery-main__viewport.is-portrait-view {
    aspect-ratio: 1/1;
  }
}

.gallery-main__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-main__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.gallery-main__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.gallery-main__slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.gallery-main__slide.is-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-main__slide.is-portrait img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.25s ease;
  cursor: pointer;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .gallery-arrow {
    width: 32px;
    height: 32px;
    background-color: transparent;
    color: #ddd;
    opacity: 1;
  }
}
.gallery-arrow:focus-visible {
  opacity: 1;
  outline: 2px solid #76adc9;
  outline-offset: 2px;
}
.gallery-arrow--prev {
  left: 0;
}
.gallery-arrow--next {
  right: 0;
}

.gallery-arrow__icon {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .gallery-arrow__icon {
    width: 10px;
    height: 10px;
    border-top-width: 1.5px;
    filter: none;
  }
}

.gallery-arrow--prev .gallery-arrow__icon {
  margin-left: 4px;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .gallery-arrow--prev .gallery-arrow__icon {
    margin-left: 3px;
    border-left-width: 1.5px;
  }
}

.gallery-arrow--next .gallery-arrow__icon {
  margin-right: 4px;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .gallery-arrow--next .gallery-arrow__icon {
    margin-right: 3px;
    border-right-width: 1.5px;
  }
}

.gallery-thumbs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 10px;
  margin: clamp(24px, 3vw, 32px) 0 0;
  padding: 0 0 4px;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
@media (min-width: 861px) {
  .gallery-thumbs {
    justify-content: center;
    overflow-x: visible;
  }
}
.gallery-thumbs li {
  flex: 0 0 auto;
  background-color: #000;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .gallery-thumbs {
    display: none;
  }
}

.gallery-thumbs__btn {
  display: block;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background-color: #000;
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .gallery-thumbs__btn {
    width: 50px;
    height: 50px;
  }
}
.gallery-thumbs__btn:hover {
  opacity: 0.75;
}
.gallery-thumbs__btn:focus-visible {
  opacity: 1;
  outline: 2px solid #76adc9;
  outline-offset: 2px;
}
.gallery-thumbs__btn.is-active {
  opacity: 1;
}
.gallery-thumbs__btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-dots {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .gallery-dots {
    display: flex;
  }
}
.gallery-dots__btn {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: rgba(118, 173, 201, 0.3);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.gallery-dots__btn.is-active {
  background-color: #76adc9;
  transform: scale(1.15);
}
.gallery-dots__btn:focus-visible {
  outline: 2px solid #76adc9;
  outline-offset: 3px;
}

.top-mv {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  background-color: #0d1a2b;
}
.top-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(13, 26, 43, 0.15) 0%, rgba(13, 26, 43, 0) 45%, rgba(13, 26, 43, 0.25) 100%);
}
.top-mv::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 22%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13, 26, 43, 0) 0%, rgba(13, 26, 43, 0.35) 100%);
}
.top-mv .visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.top-mv .visual picture,
.top-mv .visual img {
  display: block;
  width: 100%;
  height: 100%;
}
.top-mv .visual img {
  object-fit: cover;
  object-position: center 40%;
}
@media screen and (max-width: 31.25rem) and (orientation: portrait) {
  .top-mv .visual img {
    object-position: center center;
  }
}
.top-mv .content {
  position: absolute;
  top: 50%;
  right: clamp(32px, 10vw, 160px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3.2vw, 32px);
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  pointer-events: none;
}
@media screen and (max-width: 64rem) {
  .top-mv .content {
    right: clamp(24px, 8vw, 100px);
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-mv .content {
    right: auto;
    left: 50%;
    width: calc(100% - 40px);
    max-width: 360px;
    gap: 24px;
    transform: translate(-50%, -50%);
  }
}
.top-mv .logo {
  margin: 0;
  line-height: 0;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.35));
}
.top-mv .logo img {
  display: block;
  width: min(486px, 52vw);
  height: auto;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-mv .logo img {
    width: min(300px, 72vw);
  }
}
.top-mv .lead {
  margin: 0;
  font-size: 0.875em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-mv .lead {
    font-size: 11px;
  }
}
.top-mv .lead {
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-mv .lead {
    letter-spacing: 0.1em;
  }
}
.top-mv .credit {
  position: absolute;
  right: clamp(32px, 4vw, 48px);
  bottom: clamp(20px, 3vh, 32px);
  z-index: 3;
  margin: 0;
  color: #fff;
  font-size: 0.875em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-mv .credit {
    font-size: 11px;
  }
}
.top-mv .credit {
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-mv .credit {
    right: 20px;
    bottom: 16px;
  }
}
.top-mv .mv-review-bn {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  bottom: clamp(20px, 3vh, 32px);
  z-index: 3;
  display: block;
  max-width: 400px;
  line-height: 0;
  transition: opacity 0.25s ease;
}
@media screen and (max-width: 52.125rem) {
  .top-mv .mv-review-bn {
    max-width: 40%;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-mv .mv-review-bn {
    left: 20px;
    bottom: 56px;
    max-width: min(400px, 100% - 40px);
  }
}
@media (hover: hover) {
  .top-mv .mv-review-bn:hover {
    opacity: 0.85;
  }
}
.top-mv .mv-review-bn img {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.8s ease 1s;
  opacity: 0;
  transform: translateX(-20px);
}
.top-mv .mv-review-bn img.on {
  opacity: 1;
  transform: translateX(0);
}

#feature,
#review,
#gallery,
#lineup {
  scroll-margin-top: 80px;
}

.top-concept {
  background: linear-gradient(180deg, #b8d1e1 0%, #c8dce8 28%, #dce8ef 55%, #eef4f8 78%, #ffffff 100%);
  padding-top: 150px;
  padding-bottom: 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-concept {
    padding-top: 75px;
  }
}
.top-concept .inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(48px, 6.5vw, 96px);
  max-width: 1200px;
}
@media screen and (max-width: 52.125rem) {
  .top-concept .inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-concept .inner {
    gap: 32px;
  }
}
.top-concept .media {
  flex: 0 0 42%;
  max-width: 520px;
  line-height: 0;
}
@media screen and (max-width: 52.125rem) {
  .top-concept .media {
    flex: none;
    max-width: none;
    width: min(100%, 400px);
    margin: 0 auto;
  }
}
.top-concept .media img {
  display: block;
  width: 100%;
  height: auto;
}
.top-concept .body {
  flex: 1;
  min-width: 0;
  padding-top: 100px;
}
@media screen and (max-width: 52.125rem) {
  .top-concept .body {
    padding-top: 60px;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-concept .body {
    padding-top: 50px;
  }
}
.top-concept .title {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid #76adc9;
  font-weight: 400;
  font-size: 2.5em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-concept .title {
    font-size: 1.875em;
  }
}
.top-concept .title {
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #76adc9;
}
@media screen and (max-width: 52.125rem) {
  .top-concept .title {
    border-color: rgba(118, 173, 201, 0.35);
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-concept .title {
    padding-bottom: 12px;
    letter-spacing: 0.1em;
  }
}
.top-concept .desc {
  margin: 48px 0 0;
  max-width: 520px;
  color: #555;
  font-size: 1em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-concept .desc {
    font-size: 13px;
  }
}
.top-concept .desc {
  line-height: 3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 64rem) {
  .top-concept .desc {
    margin-top: 40px;
  }
}
@media screen and (max-width: 52.125rem) {
  .top-concept .desc {
    max-width: none;
    margin-top: 32px;
  }
  .top-concept .desc .pc {
    display: none;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-concept .desc {
    margin-top: 28px;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 52.125rem) {
  .top-concept .desc .desc-keep {
    white-space: nowrap;
  }
}

.top-feature-01,
.top-feature-02,
.top-feature-03 {
  background-color: #fff;
  padding-bottom: 150px;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01,
  .top-feature-02,
  .top-feature-03 {
    padding-bottom: 75px;
  }
}
.top-feature-01 .inner,
.top-feature-02 .inner,
.top-feature-03 .inner {
  text-align: center;
}
.top-feature-01.top-feature-01,
.top-feature-02.top-feature-01,
.top-feature-03.top-feature-01 {
  padding-top: 150px;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01.top-feature-01,
  .top-feature-02.top-feature-01,
  .top-feature-03.top-feature-01 {
    padding-top: 75px;
  }
}
.top-feature-01 .inner.content,
.top-feature-02 .inner.content,
.top-feature-03 .inner.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
}
.top-feature-01 .head,
.top-feature-02 .head,
.top-feature-03 .head {
  width: 100%;
}
.top-feature-01 .label,
.top-feature-02 .label,
.top-feature-03 .label {
  margin: 0;
  line-height: 0;
}
.top-feature-01 .label img,
.top-feature-02 .label img,
.top-feature-03 .label img {
  display: inline-block;
  width: 58px;
  height: auto;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .label img,
  .top-feature-02 .label img,
  .top-feature-03 .label img {
    width: 48px;
  }
}
.top-feature-01 .num,
.top-feature-02 .num,
.top-feature-03 .num {
  margin: 20px 0 0;
  line-height: 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .num,
  .top-feature-02 .num,
  .top-feature-03 .num {
    margin-top: 16px;
  }
}
.top-feature-01 .num img,
.top-feature-02 .num img,
.top-feature-03 .num img {
  display: inline-block;
  width: clamp(72px, 12vw, 100px);
  height: auto;
}
.top-feature-01 .title-wrap,
.top-feature-02 .title-wrap,
.top-feature-03 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  width: 100%;
  max-width: 1400px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  padding: 0 20px;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .title-wrap,
  .top-feature-02 .title-wrap,
  .top-feature-03 .title-wrap {
    gap: 12px;
    margin-top: 24px;
  }
}
.top-feature-01 .line,
.top-feature-02 .line,
.top-feature-03 .line {
  flex: 1;
  height: 1px;
  background-color: #76adc9;
}
.top-feature-01 .title,
.top-feature-02 .title,
.top-feature-03 .title {
  flex-shrink: 0;
  margin: 0;
  color: #76adc9;
  font-weight: 400;
  font-size: 2.5em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .title,
  .top-feature-02 .title,
  .top-feature-03 .title {
    font-size: 1.875em;
  }
}
.top-feature-01 .title,
.top-feature-02 .title,
.top-feature-03 .title {
  line-height: 1.4;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
@media screen and (max-width: 52.125rem) {
  .top-feature-01 .title,
  .top-feature-02 .title,
  .top-feature-03 .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .title,
  .top-feature-02 .title,
  .top-feature-03 .title {
    white-space: normal;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
}
.top-feature-01 .media,
.top-feature-02 .media,
.top-feature-03 .media {
  width: 100%;
  max-width: 1000px;
  margin-top: clamp(56px, 7vw, 80px);
  line-height: 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .media,
  .top-feature-02 .media,
  .top-feature-03 .media {
    margin-top: 40px;
  }
}
.top-feature-01 .media img,
.top-feature-02 .media img,
.top-feature-03 .media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90dvh;
  margin: 0 auto;
}
.top-feature-01 .body,
.top-feature-02 .body,
.top-feature-03 .body {
  width: 100%;
  max-width: 800px;
  margin-top: clamp(40px, 5vw, 56px);
  text-align: left;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .body,
  .top-feature-02 .body,
  .top-feature-03 .body {
    margin-top: 32px;
  }
}
.top-feature-01 .desc,
.top-feature-02 .desc,
.top-feature-03 .desc {
  margin: 0;
  color: #555;
  font-size: 1em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .desc,
  .top-feature-02 .desc,
  .top-feature-03 .desc {
    font-size: 13px;
  }
}
.top-feature-01 .desc,
.top-feature-02 .desc,
.top-feature-03 .desc {
  line-height: 2;
  letter-spacing: 0.04em;
}
.top-feature-01 .desc + .desc,
.top-feature-02 .desc + .desc,
.top-feature-03 .desc + .desc {
  margin-top: 2em;
}
.top-feature-01 .note,
.top-feature-02 .note,
.top-feature-03 .note {
  margin: 24px 0 0;
  color: #888;
  font-size: 0.75em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .note,
  .top-feature-02 .note,
  .top-feature-03 .note {
    font-size: 10px;
  }
}
.top-feature-01 .note,
.top-feature-02 .note,
.top-feature-03 .note {
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .note,
  .top-feature-02 .note,
  .top-feature-03 .note {
    margin-top: 20px;
  }
}
.top-feature-01 .compare,
.top-feature-02 .compare,
.top-feature-03 .compare {
  position: relative;
  width: 120%;
  margin-top: clamp(48px, 6vw, 64px);
  padding: clamp(40px, 5vw, 56px) clamp(24px, 4vw, 48px) clamp(20px, 4vw, 30px);
  border: 1px solid #76adc9;
}
@media screen and (max-width: 52.125rem) {
  .top-feature-01 .compare,
  .top-feature-02 .compare,
  .top-feature-03 .compare {
    width: 100%;
  }
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .compare,
  .top-feature-02 .compare,
  .top-feature-03 .compare {
    margin-top: 40px;
    padding: 36px 20px 28px;
  }
}
.top-feature-01 .compare-title,
.top-feature-02 .compare-title,
.top-feature-03 .compare-title {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 16px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #76adc9;
  font-weight: 700;
  font-size: 1.25em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .compare-title,
  .top-feature-02 .compare-title,
  .top-feature-03 .compare-title {
    font-size: 1.125em;
  }
}
.top-feature-01 .compare-title,
.top-feature-02 .compare-title,
.top-feature-03 .compare-title {
  line-height: 1.4;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .compare-title,
  .top-feature-02 .compare-title,
  .top-feature-03 .compare-title {
    gap: 8px;
    padding: 0 12px;
    letter-spacing: 0.04em;
  }
}
.top-feature-01 .mark,
.top-feature-02 .mark,
.top-feature-03 .mark {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #76adc9;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .mark,
  .top-feature-02 .mark,
  .top-feature-03 .mark {
    width: 8px;
    height: 8px;
  }
}
.top-feature-01 .compare-body,
.top-feature-02 .compare-body,
.top-feature-03 .compare-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .compare-body,
  .top-feature-02 .compare-body,
  .top-feature-03 .compare-body {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.top-feature-01 .item,
.top-feature-02 .item,
.top-feature-03 .item {
  margin: 0;
  line-height: 0;
}
.top-feature-01 .item img,
.top-feature-02 .item img,
.top-feature-03 .item img {
  display: block;
  width: 100%;
  height: auto;
}
.top-feature-01 .item figcaption,
.top-feature-02 .item figcaption,
.top-feature-03 .item figcaption {
  margin: 14px 0 0;
  color: #555;
  text-align: center;
  font-size: 0.875em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .item figcaption,
  .top-feature-02 .item figcaption,
  .top-feature-03 .item figcaption {
    font-size: 11px;
  }
}
.top-feature-01 .item figcaption,
.top-feature-02 .item figcaption,
.top-feature-03 .item figcaption {
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .item figcaption,
  .top-feature-02 .item figcaption,
  .top-feature-03 .item figcaption {
    margin-top: 10px;
  }
}

.compare-slider {
  width: 100%;
  margin-top: clamp(40px, 5vw, 56px);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .compare-slider {
    margin-top: 32px;
  }
}
.compare-slider__frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  aspect-ratio: 2000/1333;
}
.compare-slider__base, .compare-slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.compare-slider__base {
  z-index: 0;
}
.compare-slider__overlay {
  z-index: 1;
  clip-path: inset(0 0 0 var(--compare-pos, 50%));
}
.compare-slider__base img, .compare-slider__overlay img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}
.compare-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 2px;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #fff;
  transform: translateX(-50%);
  cursor: ew-resize;
  touch-action: none;
}
.compare-slider__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .compare-slider__knob {
    width: 36px;
    height: 36px;
  }
}
.compare-slider__knob::before, .compare-slider__knob::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateY(-50%);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .compare-slider__knob::before, .compare-slider__knob::after {
    border-top-width: 4px;
    border-bottom-width: 4px;
  }
}
.compare-slider__knob::before {
  left: 11px;
  border-right: 7px solid #666;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .compare-slider__knob::before {
    left: 9px;
    border-right-width: 6px;
  }
}
.compare-slider__knob::after {
  right: 11px;
  border-left: 7px solid #666;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .compare-slider__knob::after {
    right: 9px;
    border-left-width: 6px;
  }
}
.compare-slider.is-dragging .compare-slider__frame,
.compare-slider.is-dragging .compare-slider__handle {
  cursor: ew-resize;
}
.compare-slider__labels {
  display: flex;
  justify-content: space-between;
  margin: 14px 0 0;
  color: #555;
  font-size: 0.875em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .compare-slider__labels {
    font-size: 11px;
  }
}
.compare-slider__labels {
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .compare-slider__labels {
    margin-top: 10px;
  }
}

.top-feature-03 .compare-mist {
  margin-top: clamp(56px, 7vw, 80px);
  padding-bottom: clamp(32px, 4vw, 44px);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .compare-mist {
    margin-top: 48px;
    padding-bottom: 28px;
  }
}
.top-feature-03 .compare-intro {
  width: 100%;
  max-width: 800px;
  margin: 0 auto clamp(32px, 4vw, 44px);
  text-align: left;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .compare-intro {
    margin-bottom: 28px;
  }
}
.top-feature-03 .compare-intro .desc {
  margin: 0;
  color: #555;
  font-size: 1em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .compare-intro .desc {
    font-size: 13px;
  }
}
.top-feature-03 .compare-intro .desc {
  line-height: 2;
  letter-spacing: 0.04em;
}
.top-feature-03 .compare-mist .compare-slider {
  margin-top: 0;
  max-width: 100%;
}
.top-feature-03 .compare-mist .compare-slider__labels .label-after {
  max-width: 52%;
  text-align: right;
  line-height: 1.5;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .compare-mist .compare-slider__labels .label-after {
    max-width: 55%;
  }
}
.top-feature-03 .tips-photo {
  width: 100%;
  margin-top: clamp(48px, 6vw, 72px);
  line-height: 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .tips-photo {
    margin-top: 40px;
  }
}
.top-feature-03 .tips-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2000/1333;
  object-fit: cover;
}
.top-feature-03 .tips {
  width: 100%;
  margin-top: clamp(40px, 5vw, 56px);
  padding: clamp(36px, 4.5vw, 48px) clamp(28px, 4vw, 56px) clamp(40px, 5vw, 52px);
  border-radius: 10px;
  background-color: #eef7fd;
  text-align: center;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .tips {
    margin-top: 32px;
    padding: 32px 20px 36px;
    border-radius: 8px;
  }
}
.top-feature-03 .tips-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(28px, 3.5vw, 36px);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .tips-head {
    gap: 10px;
    margin-bottom: 24px;
  }
}
.top-feature-03 .tips-icon {
  display: block;
  width: 34px;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .tips-icon {
    width: 28px;
  }
}
.top-feature-03 .tips-title {
  margin: 0;
  color: #76adc9;
  font-weight: 700;
  font-size: 1.5em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .tips-title {
    font-size: 1.25em;
  }
}
.top-feature-03 .tips-title {
  line-height: 1;
  letter-spacing: 0.12em;
}
.top-feature-03 .tips-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 80%;
  text-align: left;
}
@media screen and (max-width: 52.125rem) {
  .top-feature-03 .tips-list {
    max-width: none;
  }
}
.top-feature-03 .tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .tips-list li {
    gap: 12px;
  }
}
.top-feature-03 .tips-list li + li {
  margin-top: clamp(20px, 2.5vw, 28px);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .tips-list li + li {
    margin-top: 18px;
  }
}
.top-feature-03 .tips-list .num {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 0.15em;
  border-radius: 50%;
  background-color: #76adc9;
  color: #fff;
  font-weight: 400;
  font-size: 0.875em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .tips-list .num {
    font-size: 11px;
  }
}
.top-feature-03 .tips-list .num {
  line-height: 1;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .tips-list .num {
    width: 24px;
    height: 24px;
    margin-top: 0.1em;
  }
}
.top-feature-03 .tips-list .text {
  flex: 1;
  margin: 0;
  color: #76adc9;
  font-size: 1em;
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-03 .tips-list .text {
    font-size: 13px;
  }
}
.top-feature-03 .tips-list .text {
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.top-feature-01 .compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 48px) clamp(24px, 4vw, 40px);
  width: 100%;
  margin-top: clamp(40px, 5vw, 56px);
}
@media screen and (max-width: 37.5rem) and (orientation: portrait) {
  .top-feature-01 .compare-grid {
    gap: 28px 16px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 31.25rem) and (orientation: portrait) {
  .top-feature-01 .compare-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*# sourceMappingURL=common.css.map */
