@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;
}
@media screen and (max-width: 896px) {
  .hide-sp {
    display: none !important;
  }
}
@media screen and (min-width: 897px) {
  .hide-pc {
    display: none !important;
  }
}
/* -----------------------------
   base
----------------------------- */
:root {
  --orange: #ff5a00;
  --light-gray: #efefef;
  --card-gray: #e9e9e9;
  --text: #111;
  --white: #fff;
  --black: #000;
  --max-width-pc: 1200px;
  --max-width-tab: 960px;
}

.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;
}

.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;
}
.more-btn span{
	width: 80%;
	text-align: center;
}

.sp-only {
  display: none;
}

/* -----------------------------
   header
----------------------------- */
.header {
  background: #fff;
  color: #000;
}

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

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

.header__nav {
  margin-left: 42px;
}

.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;
}

.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("../img/top2026/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;
}

@media (hover: hover) and (pointer: fine) {
  .lang-switcher:hover .lang-switcher__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.sp-nav {
  display: none;
}

.header__inner {
  position: relative;
}

.header__navList {
  align-items: center;
}

.header__navItem {
  position: relative;
}

.header__navLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.nav-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}

.has-dropdown:hover .header__navLink {
  background: rgba(255, 255, 255, 0.18);
	color:#FC4D02;
}

.has-dropdown:hover .nav-arrow {
  transform: rotate(225deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  min-width: 200px;
  max-width: 320px;
  padding: 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  overflow: hidden;

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

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 16px 12px;
  color: #111;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}

.dropdown-menu li a:hover {
  background: #f1f1f4;
}

.header__lang {
  margin-left: auto;
}

.header__langLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
}

.header__langIcon {
  width: 20px;
  height: 20px;
  background: url("../img/top2026/icon_language.png") center center / contain no-repeat;
}
/* -----------------------------
   mv
----------------------------- */
.mv {
  color: var(--white);
  overflow: hidden;
  background-image: linear-gradient(90deg, #fe580e, #fd4d02);
}

.mv__inner {
  padding: 10px 0 10px;
}

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

.mv__text {
  width: 40%;
  padding-top: 28px;
}

.mv__title {
  font-size: 3.7em;
  font-weight: 700;
  line-height: 1.45;
white-space: nowrap;
	    letter-spacing: 0.05em;
}

.mv__download {
  padding-top: 50px;
	/*background: url("../img/top2026/mv-arrow.png") top left no-repeat;*/
}

.mv__downloadText {
margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 500;
	padding-left: 5px;
}
.mv__downloadText2 {
    font-size: 1rem;
    font-weight: 500;
	padding-left: 5px;
	margin-top: 5px;
}

.mv__downloadArea {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.mv__qr {
  width: 176px;
  flex-shrink: 0;
}

.mv__stores {
  display: grid;
  gap: 5px;
  width: 182px;
	padding-top: 6px;
}

.mv__visual {
  width: 60%;
  max-width: 620px;
}


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

.benefit__slider {
  position: relative;
}

.benefit__viewport {
  overflow: visible;
}

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

.benefit__item {
  position: relative;
  text-align: center;
}

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

.benefit__img {
  width: 238px;
  margin: 0 auto;
}

.benefit__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.35;
  letter-spacing: -0.05rem;
  margin-top: -80px;
}

.benefit__text {
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.5;
}

.benefit__dots {
  display: none;
}

.benefit__dot {
  border: 0;
  padding: 0;
  background: none;
}
.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;
}

/* -----------------------------
   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__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #fff 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;
}
/* =========================================
   service 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 {
    position: relative;
    overflow: hidden;
    transition:
      width 0.35s ease,
      background-color 0.35s ease,
      background-position 0.35s ease,
      background-size 0.35s ease;
  }

  /* 「詳細」文字 */
  .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;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
    white-space: nowrap;
  }

  .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;
    border-radius: 999px;
    background-color: #fff;
    background-image: url("../img/top2026/arrow1.png");
    background-repeat: no-repeat;
    background-position: right 26px center;
    background-size: 24px auto;
  }

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

/* -----------------------------
   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__text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}

.news__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F2F2F5 url("../img/top2026/arrow2.png") center center no-repeat;
	background-size: 18px auto;
}



/* -----------------------------
   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__image {
  width: 42%;
  max-width: 430px;
}

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

.faq__item {
  border-bottom: 1px solid transparent;
}

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

.faq__q {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.faq__label {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
}

.faq__icon {
  justify-self: end;
  background: #fffFFF url(../img/top2026/arrow4.png) center center no-repeat;
  background-size: 14px auto;
	width: 14px;
    height: 9px;
}

.faq__answer {
  display: none;
  padding: 0 0 24px 46px;
  font-size: 1.5rem;
  line-height: 1.8;
}
.faq__answer a {
  color: #FC4D02;
}
.faq__item.active .faq__answer {
  display: block;
}

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

.faq__icon {
  transition: transform 0.3s ease;
}

/* -----------------------------
   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__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) {
  .inner {
    width: min(100% - 48px, var(--max-width-tab));
  }

  .section {
    padding-top: 96px;
  }

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

  .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;
  }

  .mv__inner {
    padding: 6px 0 60px;
  }

  .mv__text {
    width: 41%;
  }

  .mv__visual {
    width: 54%;
  }

  .mv__title {
    font-size: 5.6rem;
  }

  .benefit__img {
    width: 94px;
  }

  .benefit__title {
    font-size: 2.2rem;
	  margin-top: -30px;
  }

  .benefit__text {
    font-size: 1.2rem;
  }

  .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__image {
    width: 82px;
    min-height: 58px;
  }

  .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;
  }

  .about__content {
    gap: 44px;
  }

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

  .faq__list {
    margin-top: 56px;
  }

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

  .faq__q {
    font-size: 1.8rem;
  }

  .faq__label {
    font-size: 1.4rem;
  }

  .more-btn {
    min-width: 220px;
    min-height: 52px;
    font-size: 1.5rem;
  }

  .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) {
  .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 {
    min-width: auto;
    min-height: 50px;
    padding: 12px 20px;
    gap: 8px;
    font-size: 1.5rem;
	width: 80%;
  }

  .more-btn i {
    width: 20px;
    height: 20px;
    font-size: 1.2rem;
	          background-size: 11px auto;
  }
.header {
    padding-top: 19vw;
}
  .header__download {
padding: 15px 16px;
        background: #fff;
        position: fixed;
        width: 100%;
        height: 19vw;
        z-index: 1000;
	  top:0;
  }

  .download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 43px;
    margin: 0 auto;
    border-radius: 9999px;
    background: #FC4D02;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
  }

  .download-btn__icon {
    width: 20px;
  background: url(../img/top2026/sp_download.png) center bottom no-repeat;
  background-size: 20px auto;
height: 36px;
  }

  .header__inner {
    min-height: 56px;
  }

  .header__logo {
    width: 62px;
  }

  .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-right: auto;
    background: #000;
    border-radius: 10px;
  }
  .header__menu span:nth-child(2) {
    width: 14px;
  }
.sp-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block;
  background: rgba(0, 0, 0, 0.78);
  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__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0a0a0d;
}

.sp-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  z-index: 2;
}

.sp-nav__close::before,
.sp-nav__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #fff;
  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__list {
  height: 100%;
}

.sp-nav__list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 102px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sp-nav__list li:nth-child(1) a {
  background: #4a4a51;
}

.sp-nav__list li:nth-child(2) a {
  background: #34343b;
}

.sp-nav__list li:nth-child(3) a {
  background: #1d1d24;
}

.sp-nav__list li:nth-child(4) a {
  background: #0f0f15;
}

.sp-nav__list li:nth-child(5) a {
  background: #000;
}

  .mv__inner {
    padding: 12px 0 38px;
  }

  .mv__content {
    flex-direction: column;
    gap: 20px;
  }

  .mv__text,
  .mv__visual {
    width: 100%;
  }

  .mv__text {
    padding-top: 0;
    text-align: center;
  }

  .mv__title {
    font-size: 3.4rem;
    line-height: 1.6;
  }

  .mv__visual {
    max-width: 315px;
    margin: 0 auto;
  }

.benefit {
  padding-top: 32px;
}

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

.benefit__slider {
  padding-left: 16px;
}

.benefit__viewport {
  overflow-x: auto;
	overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
}

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

.benefit__list {
  display: flex;
        gap: 0px;
        padding-right: 0px;
}

.benefit__item {
  flex: 0 0 280px;
  padding: 0 0 20px 0;
  scroll-snap-align: center;
}

.benefit__img {
  width: 100%;
  margin: 0 auto 10px;
}

.benefit__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
	margin-top: -30vw;
}

.benefit__text {
  font-size: 1.5rem;
  margin-top: 6px;
}

.benefit__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

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

/* 非アクティブ */
.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;
}
.benefit__item + .benefit__item::before {
	position: relative;
	}
.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;
  background-size: 20px auto;
  flex-shrink: 0;
}

.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;
}

  .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__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__image {
    max-width: 240px;
    margin: 0 auto;
  }

  .faq__list {
    margin-top: 32px;
  }

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

  .faq__q {
    font-size: 2rem;
  }

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

  .faq__icon {
    font-size: 1.2rem;
	  background-size: 10px auto;
    width: 10px;
    height: 6px;
	  padding-top: 30px;
  }

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

  .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;
  }
}

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

  .benefit__title {
    font-size: 1.3rem;
  }

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

/* -----------------------------
   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;
}