@charset "UTF-8";

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

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  color: #111;
  background: #fff;
  font-family:
    "Noto Sans JP",
    sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dt,
dd,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

button {
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* -----------------------------
   base / utility
----------------------------- */
:root {
  --orange: #ff5a00;
  --light-gray: #efefef;
  --card-gray: #e9e9e9;
  --text: #111;
  --white: #fff;
  --black: #000;
  --max-width-pc: 1200px;
  --max-width-tab: 960px;
  --header-height: 74px;
}

.inner {
  width: 1088px;
  margin-inline: auto;
}

.section {
  padding: 100px 0 0;
}

.section-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: center;
}

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

.section-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 72px;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 368px;
  min-height: 83px;
  padding: 18px 28px;
  border-radius: 9999px;
  background: #FC4D02;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.more-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF url(../img/top2026/arrow3.png) center center no-repeat;
  background-size: 18px auto;
  flex-shrink: 0;
}

.more-btn span {
  width: auto;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.download-btn,
.download-btn__body,
.download-btn__label,
.download-bar,
.download-bar__text,
.lang-switcher__button {
  white-space: nowrap;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 896px) {
  .hide-sp {
    display: none !important;
  }
}

@media screen and (min-width: 897px) {
  .hide-pc {
    display: none !important;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  .more-btn {
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  }

  .more-btn i {
    transition: transform 0.25s ease;
  }

  .more-btn:hover {
    background-color: #e04400;
    box-shadow: 0 6px 18px rgba(252, 77, 2, 0.28);
    transform: translateY(-2px);
  }

  .more-btn:hover i {
    transform: translateX(4px);
  }
}

/* tablet */
@media screen and (max-width: 1024px) {
  .inner {
    width: min(100% - 48px, var(--max-width-tab));
  }

  .section {
    padding-top: 96px;
  }

  .section-title {
    font-size: 4.8rem;
  }

  .more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 52px;
    padding: 12px 52px 12px 24px;
    font-size: 1.5rem;
  }

  .more-btn span {
    width: auto;
    flex: none;
    text-align: center;
  }

  .more-btn i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-size: 14px auto;
  }
}

/* narrow desktop: 各セクション inner の左右余白 */
@media screen and (min-width: 1024px) and (max-width: 1160px) {
  .service__inner.inner,
  .news__inner.inner,
  .about__inner.inner,
  .faq__inner.inner {
    width: min(calc(100% - 48px), 1088px);
    margin-inline: auto;
  }
}

/* mobile */
@media screen and (max-width: 767px) {
  .pc-tab-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .inner {
    width: calc(100% - 50px);
  }

  .section {
    padding-top: 72px;
  }

  .section-title,
  .section-title--left {
    font-size: 2.2rem;
    text-align: center;
  }

  .section-btn {
    margin-top: 40px;
    justify-content: center;
  }

  .more-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    min-height: 50px;
    padding: 12px 50px 12px 20px;
    gap: 0;
    font-size: 1.5rem;
    width: 80%;
  }

  .more-btn span {
    width: auto;
    flex: none;
    text-align: center;
  }

  .more-btn i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-size: 12px auto;
  }
}

/* -----------------------------
   header
----------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

main {
  padding-top: var(--header-height);
}

#didi {
  scroll-margin-top: calc(var(--header-height) + 8px);
}

.header__inner {
  display: flex;
  align-items: center;
  min-height: 74px;
  min-width: 0;
}

.header__logo {
  width: 106px;
  flex-shrink: 0;
}

.header__nav {
  margin-left: 42px;
  min-width: 0;
}

.header__navList {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__navList a,
.header__lang a {
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
}

.header__navItem {
  position: relative;
}

.header__navItem--hasDropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.header__navLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header__navArrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.header__navArrow svg {
  display: block;
  width: 10px;
  height: 6px;
}

.header__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 100;
  min-width: 200px;
  padding: 0;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  list-style: none;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.header__submenu li a {
  display: block;
  padding: 14px 20px;
  color: #222;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.header__submenu li a:hover {
  background: #f5f5f5;
}

.lang-switcher {
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
}

.lang-switcher__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 132px;
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.lang-switcher__icon {
  width: 24px;
  height: 24px;
  background: url("../images/icon_language.png") center center / contain no-repeat;
  flex-shrink: 0;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: -25%;
  z-index: 100;
  width: 180px;
  padding: 10px 0;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.lang-switcher__menu li a {
  display: block;
  padding: 14px 20px;
  color: #222;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}

.lang-switcher__menu li a:hover {
  background: #f5f5f5;
}

.sp-nav {
  display: none;
}

@media screen and (min-width: 768px) {
  .header {
    padding-inline: 24px;
    box-sizing: border-box;
  }

  .header__inner.inner {
    width: min(1088px, 100%);
    max-width: 1088px;
    margin-inline: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .header__navItem--hasDropdown:hover .header__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .header__navItem--hasDropdown:hover .header__navArrow {
    transform: rotate(180deg);
  }

  .lang-switcher:hover .lang-switcher__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* tablet */
@media screen and (max-width: 1024px) {
  :root {
    --header-height: 62px;
  }

  .header__inner {
    min-height: 62px;
  }

  .header__logo {
    width: 78px;
  }

  .header__nav {
    margin-left: 28px;
  }

  .header__navList {
    gap: 20px;
  }

  .header__navList a,
  .header__lang a {
    font-size: 1.1rem;
  }
}

/* mobile */
@media screen and (max-width: 767px) {
  :root {
    --header-height: 104px;
  }

  .header__inner {
    min-height: 56px;
  }

  .header__logo {
    width: 62px;
  }

  .header__download {
    position: relative;
    height: 48px;
    padding: 0;
    background: #FC4D02;
    overflow: hidden;
  }

  .header__download.is-closed {
    display: none;
  }

  .header.is-download-bar-closed {
    --header-height: 56px;
  }

  .download-bar__close {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .download-bar__close::before,
  .download-bar__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
  }

  .download-bar__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .download-bar__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .download-bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 44px;
    background: #FC4D02;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    transition: opacity 0.25s ease;
  }

  .download-bar:active {
    opacity: 0.88;
  }

  .download-bar__icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
  }

  .download-bar__icon svg {
    display: block;
    width: 12px;
    height: 12px;
  }

  .download-bar__logo {
    display: block;
    width: auto;
    height: 40px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
  }

  .download-bar__text {
    white-space: nowrap;
  }

  .header__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 24px;
    height: 24px;
    margin-left: auto;
  }

  .header__menu span {
    display: block;
    width: 18px;
    height: 2px;
    margin-left: auto;
    background: var(--text);
    border-radius: 10px;
  }

  .sp-nav {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: block;
    background: rgba(0, 0, 0, 0.45);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

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

  .sp-nav__panel {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sp-nav__head {
    display: flex;
    justify-content: flex-end;
    padding: 16px 20px 0;
  }

  .sp-nav__close {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .sp-nav__close::before,
  .sp-nav__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transform-origin: center;
  }

  .sp-nav__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .sp-nav__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .sp-nav__nav {
    padding: 8px 0 40px;
  }

  .sp-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .sp-nav__item {
    border-bottom: 1px solid #eee;
  }

  .sp-nav__link,
  .sp-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 25px;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    background: none;
    border: none;
  }

  .sp-nav__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 6px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .sp-nav__arrow svg {
    display: block;
    width: 10px;
    height: 6px;
  }

  .sp-nav__item--hasDropdown.is-open .sp-nav__arrow {
    transform: rotate(180deg);
  }

  .sp-nav__submenu {
    display: none;
    margin: 0;
    padding: 0 0 8px;
    list-style: none;
    background: #f5f5f5;
  }

  .sp-nav__item--hasDropdown.is-open .sp-nav__submenu {
    display: block;
  }

  .sp-nav__submenu a {
    display: block;
    padding: 14px 25px 14px 36px;
    color: #222;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
  }

  .sp-nav__submenu a:active {
    background: #ebebeb;
  }
}

/* -----------------------------
   mv
----------------------------- */
.mv {
  position: relative;
  height: 560px;
  color: var(--white);
  overflow: hidden;
  background: url("../img/top2026/mv-bg01.png") center center repeat;
  background-size: cover;
}

.mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.mv__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.mv__visual picture {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.mv__visual img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.mv__note {
  position: absolute;
  left: 36px;
  bottom: 8px;
  z-index: 2;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.35;
}

.mv__note span {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

/* mobile */
@media screen and (max-width: 767px) {
  .mv {
    background: url("../img/top2026/mv-bg01_sp.png") center center repeat;
    background-size: cover;
  }  
  .mv__visual picture,
  .mv__visual img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
  }

  .mv__note {
    left: 16px;
    font-size: 0.7rem;
    line-height: 1.3;
  }
}

/* -----------------------------
   download
----------------------------- */
.download {
  position: relative;
  z-index: 5;
  padding: 12px 0 24px;
  background: var(--white);
  overflow: visible;
}

.download__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.download__title {
  display: none;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: var(--text);
}

.download__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  overflow: visible;
}

.download__qrFigure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin: 0;
  overflow: visible;
}

.download__qr {
  width: 80px;
  flex-shrink: 0;
}

.download__qr img {
  display: block;
  width: 80px;
  height: auto;
}

.download__qrText {
  display: block;
  width: 100%;
  min-width: 100px;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #666;
}

.download__stores {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 8px;
}

.download__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.download__store {
  display: block;
  width: 140px;
  flex-shrink: 0;
}

.download__legal {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  color: #666;
}

.download__legal span {
  display: block;
}

/* -----------------------------
   benefit
----------------------------- */
.benefit {
  overflow: hidden;
}

.benefit.section {
  padding-top: 40px;
}

.benefit__slider {
  position: relative;
}

.benefit__viewport {
  overflow: visible;
}

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

.benefit__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.benefit__item + .benefit__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: clamp(64px, 10vw, 96px);
  background: #ccc;
}

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

.benefit__content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: clamp(-4.8rem, -10vw, -3.2rem);
  padding: 0 4px;
}

.benefit__title {
  font-size: clamp(2rem, 2.4vw, 3rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.05rem;
}

.benefit__text {
  margin-top: 10px;
  font-size: clamp(1.2rem, 1.3vw, 1.5rem);
  line-height: 1.5;
}

.benefit__text small {
  display: block;
  margin-top: 6px;
  font-size: 0.85em;
  line-height: 1.45;
}

.benefit__dots {
  display: none;
}

.benefit__dot {
  border: 0;
  padding: 0;
  background: none;
}

.benefit__link {
  color: inherit;
  text-decoration: none;
}

.benefit__nowrap {
  white-space: nowrap;
}

.benefit__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FC4D02 url("../img/top2026/arrow5.png") center center no-repeat;
  background-size: 14px auto;
  margin-left: 5px;
  vertical-align: middle;
  transform: translateY(-3px);
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .benefit__arrow {
    transition: transform 0.25s ease, background-color 0.25s ease;
  }

  .benefit__link:hover .benefit__arrow {
    transform: translate(4px, -3px);
    background-color: #e04400;
  }
}

/* tablet */
@media screen and (max-width: 1024px) {
  .benefit.section {
    padding-top: 64px;
  }

  .benefit__img {
    width: min(100%, 180px);
  }

  .benefit__content {
    margin-top: clamp(-3.6rem, -8vw, -2.4rem);
  }

  .benefit__title {
    font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  }

  .benefit__text {
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  }
}

/* mobile */
@media screen and (max-width: 767px) {
  .benefit {
    padding-top: 20px;
  }

  .benefit__inner {
    width: 100%;
    margin: 0;
  }

  .benefit__slider {
    padding-left: 0;
  }

  .benefit__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 25px;
    scrollbar-width: none;
  }

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

  .benefit__list {
    display: flex;
    gap: 16px;
    width: max-content;
    padding-inline: 25px;
  }

  .benefit__item {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: center;
    padding-bottom: 8px;
  }

  .benefit__item + .benefit__item::before {
    display: none;
  }

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

  .benefit__title {
    font-size: clamp(1.7rem, 5vw, 2rem);
    line-height: 1.45;
  }

  .benefit__text {
    font-size: clamp(1.3rem, 3.8vw, 1.5rem);
    margin-top: 8px;
  }

  .benefit__text small {
    font-size: 0.82em;
  }

  .benefit__arrow {
    width: 26px;
    height: 26px;
    background-size: 12px auto;
  }

  .benefit__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
  }

  .benefit__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d9d9d9;
    transition: all 0.3s ease;
  }

  .benefit__dot.is-active {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    background: #111;
  }
}

/* very small mobile */
@media screen and (max-width: 374px) {
  .benefit__item {
    flex-basis: min(84vw, 280px);
  }

  .benefit__title {
    font-size: 1.5rem;
  }

  .benefit__text {
    font-size: 1.2rem;
  }
}

/* -----------------------------
   service
----------------------------- */
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 211px;
  padding: 0;
  border-radius: 8px;
  background: #F3F3F3;
}

.service-card__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 20px 40px 10px 40px;
}

.service-card__text {
  margin-top: 12px;
  font-size: 1.6rem;
  line-height: 1.7;
  padding: 0 40px;
}

.service-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-left: 40px;
  padding-bottom: 20px;
}

.service-card__footer--end {
  justify-content: flex-end;
}

.service-card__arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: #fff;
  flex-shrink: 0;
}

.service-card__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 66px;
  height: 66px;
  background: url("../img/top2026/arrow1.png") center center no-repeat;
  background-size: 20px auto;
}

.service-card__image {
  width: 108px;
  min-height: 76px;
  margin-left: 12px;
}

.service-card__image--blank {
  background: #d9d9d9;
}

.service__slider {
  position: relative;
}

.service__viewport {
  overflow: visible;
}

.service__dots {
  display: none;
}

.service__dot {
  border: 0;
  padding: 0;
  background: none;
}

/* hover（PC only） */
@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .service-card {
    position: relative;
    overflow: hidden;
    transition:
      background-color 0.35s ease,
      color 0.35s ease,
      transform 0.35s ease;
  }

  /* オレンジの背景 */
  .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #FC4C02;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
  }

  /* 右側の大きい柄 */
  .service-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 58%;
    height: 100%;
    background: url("../img/top2026/hover.png") center right no-repeat;
    background-size: auto 100%;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    transform: translateX(20px);
    z-index: 0;
  }

  .service-card__body,
  .service-card__footer {
    position: relative;
    z-index: 1;
  }

  .service-card__title,
  .service-card__text {
    transition: color 0.35s ease;
  }

  .service-card__arrow {
    overflow: hidden;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .service-card__arrow::before {
    content: "詳細";
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: #111;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.15s ease;
  }

  .service-card:hover {
    transform: translateY(-2px);
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-card:hover::after {
    opacity: 1;
    transform: translateX(0);
  }

  .service-card:hover .service-card__title,
  .service-card:hover .service-card__text {
    color: #fff;
  }

  .service-card:hover .service-card__arrow {
    width: 176px;
  }

  .service-card:hover .service-card__arrow::before {
    opacity: 1;
    transition: opacity 0.25s ease 0.12s;
  }
}

/* tablet */
@media screen and (max-width: 1024px) {
  .service__grid {
    margin-top: 54px;
  }

  .service-card {
    min-height: 166px;
    padding: 14px 14px 0;
  }

  .service-card__title {
    font-size: 1.5rem;
  }

  .service-card__text {
    font-size: 1.1rem;
  }

  .service-card__arrow {
    width: 28px;
    height: 28px;
    font-size: 1.4rem;
  }

  .service-card__arrow::after {
    width: 28px;
    height: 28px;
    background-size: 14px auto;
  }

  .service-card__image {
    width: 82px;
    min-height: 58px;
  }
}

/* narrow desktop */
@media screen and (min-width: 1024px) and (max-width: 1160px) {
  .service-card {
    padding: 0;
    min-height: 200px;
  }

  .service-card__title {
    padding: 18px 18px 8px;
    font-size: 2rem;
  }

  .service-card__text {
    padding: 0 18px;
    margin-top: 8px;
    font-size: 1.75rem;
    line-height: 1.55;
  }

  .service-card__footer {
    padding-left: 18px;
    padding-bottom: 18px;
  }

  .service-card__arrow {
    width: 60px;
    height: 60px;
  }

  .service-card__arrow::after {
    width: 60px;
    height: 60px;
    background-size: 14px auto;
  }

  .service-card__image {
    width: 88px;
    min-height: 64px;
    margin-left: 8px;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 1024px) and (max-width: 1160px) {
  .service-card:hover .service-card__arrow {
    width: 168px;
  }

  .service-card__arrow::before {
    left: 22px;
    font-size: 1.7rem;
  }
}

/* 768-1023px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .service-card {
    padding: 0;
    min-height: 180px;
  }

  .service-card__title {
    padding: 16px 16px 6px;
    font-size: clamp(1.8rem, 2.4vw, 1.95rem);
  }

  .service-card__text {
    padding: 0 16px;
    margin-top: 6px;
    font-size: clamp(1.45rem, 1.9vw, 1.65rem);
    line-height: 1.5;
  }

  .service-card__footer {
    padding-left: 16px;
    padding-bottom: 14px;
  }

  .service-card__arrow {
    width: 52px;
    height: 52px;
  }

  .service-card__arrow::after {
    width: 52px;
    height: 52px;
    background-size: 13px auto;
  }

  .service-card__image {
    width: 76px;
    min-height: 56px;
    margin-left: 6px;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 768px) and (max-width: 1023px) {
  .service-card:hover .service-card__arrow {
    width: 148px;
  }

  .service-card__arrow::before {
    left: 20px;
    font-size: 1.5rem;
  }
}

/* mobile */
@media screen and (max-width: 767px) {
  .service__inner {
    width: 100%;
    margin: 0;
  }

  .service .section-title {
    padding: 0 25px;
  }

  .service__slider {
    padding-left: 25px;
    margin-top: 28px;
  }

  .service__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .service__grid {
    display: flex;
    gap: 14px;
    width: max-content;
    padding-right: 25px;
    margin-top: 0;
  }

  .service-card {
    flex: 0 0 292px;
    width: 292px;
    min-height: 270px;
    padding: 0;
    border-radius: 18px;
    scroll-snap-align: start;
    background: #f3f3f3;
  }

  .service-card__title {
    padding: 30px 28px 0;
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .service-card__text {
    padding: 30px 28px 0;
    margin-top: 0;
    font-size: 2rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
  }

  .service-card__footer {
    padding: 0 0 24px 28px;
    align-items: flex-end;
  }

  .service-card__arrow {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
    flex-shrink: 0;
  }

  .service-card__arrow::after {
    width: 64px;
    height: 64px;
  }

  .service-card__image {
    width: 148px;
    min-height: 96px;
    margin-left: 16px;
  }

  .service__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
  }

  .service__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d9d9d9;
    transition: all 0.3s ease;
  }

  .service__dot.is-active {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    background: #111;
  }
}

/* very small mobile */
@media screen and (max-width: 374px) {
  .service-card__text {
    font-size: 0.9rem;
  }
}

/* -----------------------------
   news
----------------------------- */
.news__list {
  margin-top: 50px;
}

.news__item + .news__item {
  margin-top: 38px;
}

.news__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.news__body {
  flex: 1;
}

.news__date {
  display: block;
  margin-bottom: 16px;
  color: #777;
  font-size: 1.4rem;
  line-height: 1.4;
}

.news__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F2F2F5;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.news__arrow::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("../img/top2026/arrow2.png") center center no-repeat;
  background-size: contain;
  transition: filter 0.25s ease;
}

.news__text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
  transition: color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .news__link:hover .news__text {
    color: #FC4D02;
  }

  .news__link:hover .news__arrow {
    transform: translateX(4px);
    background-color: #FC4D02;
  }

  .news__link:hover .news__arrow::after {
    filter: brightness(0) invert(1);
  }
}

/* tablet */
@media screen and (max-width: 1024px) {
  .news__list {
    margin-top: 64px;
  }

  .news__item + .news__item {
    margin-top: 30px;
  }

  .news__date {
    margin-bottom: 12px;
    font-size: 1.1rem;
  }

  .news__text {
    font-size: 1.5rem;
  }

  .news__arrow {
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
  }
}

/* mobile */
@media screen and (max-width: 767px) {
  .news__list {
    margin-top: 34px;
  }

  .news__item + .news__item {
    margin-top: 24px;
  }

  .news__link {
    gap: 12px;
  }

  .news__date {
    margin-bottom: 8px;
    font-size: 1.5rem;
  }

  .news__text {
    font-size: 1.5rem;
    line-height: 1.75;
  }

  .news__arrow {
    width: 22px;
    height: 22px;
    font-size: 1rem;
    display: none;
  }
}

/* -----------------------------
   about
----------------------------- */
.about__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.about__text {
  width: 52%;
}

.about__text p {
  margin-top: 34px;
  font-size: 1.6rem;
  line-height: 2;
}

.about__note {
  color: #666;
  font-size: 1.2rem !important;
  line-height: 1.8 !important;
}

.about__btn {
  margin-top: 34px;
}

.about__image {
  width: 42%;
  max-width: 430px;
  margin-top: 32px;
}

/* tablet */
@media screen and (max-width: 1024px) {
  .about__content {
    gap: 44px;
  }

  .about__text p {
    margin-top: 26px;
    font-size: 1.3rem;
  }
}

/* mobile */
@media screen and (max-width: 767px) {
  .about__content {
    flex-direction: column;
    gap: 32px;
  }

  .about__text,
  .about__image {
    width: 100%;
  }

  .about__text p {
    margin-top: 20px;
    font-size: 1.5rem;
    line-height: 2;
  }

  .about__note {
    font-size: 1rem !important;
  }

  .about__btn {
    display: flex;
    justify-content: center;
    margin-top: 28px;
  }

  .about__image {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* -----------------------------
   faq
----------------------------- */
.faq__list {
  margin-top: 72px;
}

.faq__item {
  border-bottom: none;
}

.faq__question button {
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  align-items: start;
  gap: 18px;
  width: 100%;
  padding: 28px 0;
  text-align: left;
}

.faq__q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 0;
  padding-bottom: 3px;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
}

.faq__label {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  transition: color 0.25s ease;
}

.faq__icon {
  justify-self: end;
  background: url(../img/top2026/arrow4.png) center center no-repeat;
  background-size: 14px auto;
  width: 14px;
  height: 9px;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.faq__answer {
  display: none;
  padding: 0 0 24px 54px;
  font-size: 1.5rem;
  line-height: 1.8;
}

.faq__answer a {
  color: #FC4D02;
  font-weight: 700;
  text-decoration: none;
}

.faq__answer p + p,
.faq__answer p + ul,
.faq__answer ul + p,
.faq__answer ul + ul {
  margin-top: 12px;
}

.faq__answerHeading {
  font-weight: 700;
}

.faq__answerHeading:not(:first-child) {
  margin-top: 20px;
}

.faq__answerList {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
}

.faq__answerList li + li {
  margin-top: 8px;
}

.faq__answerList--note {
  padding-left: 0;
}

.faq__answerNote {
  margin-top: 16px;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #666;
}

.faq__link {
  color: #FC4D02;
  font-weight: 700;
  text-decoration: none;
}

.faq__item.active .faq__answer {
  display: block;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .faq__question button:hover .faq__label {
    color: #777;
  }

  .faq__link:hover {
    opacity: 0.75;
  }
}

/* tablet */
@media screen and (max-width: 1024px) {
  .faq__list {
    margin-top: 56px;
  }

  .faq__question button {
    grid-template-columns: 32px 1fr 18px;
    gap: 12px;
    padding: 22px 0;
  }

  .faq__q {
    width: 32px;
    height: 32px;
    font-size: 1.8rem;
    margin-top: 0;
    padding-bottom: 2px;
  }

  .faq__label {
    font-size: 1.4rem;
  }
}

/* mobile */
@media screen and (max-width: 767px) {
  .faq__list {
    margin-top: 32px;
  }

  .faq__question button {
    grid-template-columns: 30px 1fr 14px;
    gap: 10px;
    padding: 16px 0;
  }

  .faq__q {
    width: 30px;
    height: 30px;
    font-size: 1.6rem;
    margin-top: 0;
    padding-bottom: 2px;
  }

  .faq__label {
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .faq__icon {
    background-size: 10px auto;
    width: 10px;
    height: 6px;
    margin-top: 8px;
  }

  .faq__answer {
    padding: 0 0 16px 26px;
    font-size: 1.3rem;
  }

  .faq__answerNote {
    font-size: 1.1rem;
  }
}

/* -----------------------------
   footer
----------------------------- */
.footer {
  margin-top: 120px;
  padding: 80px 0 60px;
  background: #000;
  color: #fff;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer__head {
  width: 260px;
  flex-shrink: 0;
}

.footer__logo {
  display: block;
  width: 117px;
}

.footer__logo img {
  filter: brightness(0) invert(1);
}

.footer__copy {
  margin-top: 18px;
  color: #d9d9d9;
  font-size: 1.2rem;
  line-height: 1.8;
}

.footer__sns {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.footer__sns li a {
  display: block;
  width: 20px;
}

.footer__navWrap {
  display: flex;
  gap: 80px;
  flex: 1;
  justify-content: flex-end;
}

.footer__navCol h2 {
  margin-bottom: 22px;
  font-size: 1.6rem;
  font-weight: 700;
}

.footer__navCol li + li {
  margin-top: 10px;
}

.footer__navCol a {
  color: #e7e7e7;
  font-size: 1.3rem;
  line-height: 1.6;
}

/* tablet */
@media screen and (max-width: 1024px) {
  .footer {
    margin-top: 96px;
    padding: 64px 0 50px;
  }

  .footer__inner {
    gap: 40px;
  }

  .footer__navWrap {
    gap: 46px;
  }

  .footer__navCol h2 {
    font-size: 1.4rem;
  }

  .footer__navCol a {
    font-size: 1.1rem;
  }
}

/* mobile */
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 72px;
    padding: 42px 0 36px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 34px;
  }

  .footer__head {
    width: 100%;
  }

  .footer__logo {
    width: 92px;
  }

  .footer__copy {
    margin-top: 14px;
    font-size: 1rem;
  }

  .footer__sns {
    margin-top: 20px;
  }

  .footer__sns li a {
    width: 18px;
  }

  .footer__navWrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px 30px;
  }

  .footer__navCol {
    width: calc((100% - 30px) / 2);
  }

  .footer__navCol h2 {
    margin-bottom: 14px;
    font-size: 1.3rem;
  }

  .footer__navCol a {
    font-size: 1.1rem;
  }
}

/* -----------------------------
   sp-nav-classic （旧メニュー置き換え）
----------------------------- */
.sp-nav-classic__menu {
  color: #fff;
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1041;
}

.sp-nav-classic__items {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (min-width: 576px) {
  .sp-nav-classic__items {
    flex-flow: row nowrap;
  }
}

@media (max-width: 767.98px) {
  .sp-nav-classic__items {
    flex-flow: column nowrap;
  }
}

.sp-nav-classic__item {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  line-height: 2.5rem;
  margin: 0;
  padding: 30px 15px;
  position: relative;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .sp-nav-classic__item {
    flex: 1 1 20%;
  }
}

@media (max-width: 767.98px) {
  .sp-nav-classic__item {
    flex: 0 0 auto;
  }
}

.sp-nav-classic__item--01 { background-color: #404042; }
.sp-nav-classic__item--02 { background-color: #323234; }
.sp-nav-classic__item--03 { background-color: #222224; }
.sp-nav-classic__item--04 { background-color: #171719; }
.sp-nav-classic__item--05 { background-color: #000000; }

.sp-nav-classic__item a {
  color: #fff;
  text-decoration: none;
}

.sp-nav-classic__dt {
  font-size: 21px;
  height: 21px;
  line-height: 21px;
  font-family: "NotoSansCJKjp", sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  position: relative;
  overflow-y: hidden;
  margin: 0;
  padding: 0;
}

@media (max-width: 575.98px) {
  .sp-nav-classic__dt {
    font-size: 1.6rem;
  }
}

@media (min-width: 576px) {
  .sp-nav-classic__dt {
    -webkit-animation-delay: 0;
    -webkit-animation-duration: 0.3s;
    -webkit-animation-name: sp-nav-classic-bottomIn;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-delay: 0;
    -moz-animation-duration: 0.3s;
    -moz-animation-name: sp-nav-classic-bottomIn;
    -moz-animation-fill-mode: forwards;
    animation-delay: 0;
    animation-duration: 0.3s;
    animation-name: sp-nav-classic-bottomIn;
    animation-fill-mode: forwards;
  }
}

@-webkit-keyframes sp-nav-classic-bottomIn {
  0%   { opacity: 0; top: 21px; }
  100% { opacity: 1; top: 0;    }
}
@keyframes sp-nav-classic-bottomIn {
  0%   { opacity: 0; top: 21px; }
  100% { opacity: 1; top: 0;    }
}

@media (min-width: 576px) {
  .sp-nav-classic__item:hover .sp-nav-classic__dt--has-sub {
    -webkit-animation-delay: 0;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-name: sp-nav-classic-bottomOutTopIn;
    -webkit-animation-fill-mode: forwards;
    animation-delay: 0;
    animation-duration: 0.6s;
    animation-name: sp-nav-classic-bottomOutTopIn;
    animation-fill-mode: forwards;
  }
}

@-webkit-keyframes sp-nav-classic-bottomOutTopIn {
  0%   { opacity: 1; top: 0;     }
  30%  { opacity: 0; top: 21px;  }
  50%  { opacity: 0; top: -21px; }
  100% { opacity: 1; top: 0;     }
}
@keyframes sp-nav-classic-bottomOutTopIn {
  0%   { opacity: 1; top: 0;     }
  30%  { opacity: 0; top: 21px;  }
  50%  { opacity: 0; top: -21px; }
  100% { opacity: 1; top: 0;     }
}

.sp-nav-classic__dd {
  font-size: 16px;
  margin: 40px 0 0 0;
  padding: 0;
  display: none;
  opacity: 0;
}

.sp-nav-classic__dd a {
  display: block;
  margin-bottom: 20px;
}

.sp-nav-classic__dd a:last-child {
  margin-bottom: 0;
}

.sp-nav-classic__item:hover .sp-nav-classic__dd {
  opacity: 1;
  display: block;
  -webkit-animation-delay: 0;
  -webkit-animation-duration: 0.6s;
  -webkit-animation-name: sp-nav-classic-fadeIn;
  -webkit-animation-fill-mode: forwards;
  animation-delay: 0;
  animation-duration: 0.6s;
  animation-name: sp-nav-classic-fadeIn;
  animation-fill-mode: forwards;
}

@-webkit-keyframes sp-nav-classic-fadeIn {
  0%   { opacity: 0; display: none;  }
  50%  { opacity: 0; display: none;  }
  51%  { opacity: 0; display: block; }
  100% { opacity: 1; display: block; }
}
@keyframes sp-nav-classic-fadeIn {
  0%   { opacity: 0; display: none;  }
  50%  { opacity: 0; display: none;  }
  51%  { opacity: 0; display: block; }
  100% { opacity: 1; display: block; }
}

/* 閉じるボタン */
.sp-nav-classic__close {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 20px;
  background-image: url(/img/close.svg);
  background-repeat: no-repeat;
  z-index: 1043;
  background-size: cover;
  right: 3%;
  top: 20px;
}

@-webkit-keyframes sp-nav-classic-rotate {
  0%   { transform: rotate(0deg);  }
  100% { transform: rotate(90deg); }
}
@keyframes sp-nav-classic-rotate {
  0%   { transform: rotate(0deg);  }
  100% { transform: rotate(90deg); }
}

.sp-nav-classic__close:hover {
  -webkit-animation-delay: 0;
  -webkit-animation-duration: 0.6s;
  -webkit-animation-name: sp-nav-classic-rotate;
  -webkit-animation-fill-mode: forwards;
  animation-delay: 0;
  animation-duration: 0.6s;
  animation-name: sp-nav-classic-rotate;
  animation-fill-mode: forwards;
}

/* 背景円 */
.sp-nav-classic__bg {
  content: "";
  position: fixed;
  top: 0px;
  right: 0px;
  display: none;
  background: #141313;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(0.02);
  -moz-transform: scale(0.02);
  transform: scale(0.02);
  z-index: 1040;
}

.sp-nav-classic.open .sp-nav-classic__bg {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}