/*
Theme Name: framtid
Theme URI:
Version: 1.0
*/

/*######################################################################

		Base CSS

************************************************************************/

*,
*::before,
*::after {
  box-sizing: border-box;
  min-inline-size: 0;
}

:root {
  --font-size-12: .75rem;
  --font-size-13: .8125rem;
  --font-size-14: .875rem;
  --font-size-15: .9375rem;
  --font-size-16: 1rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-24: 1.5rem;
  --font-size-26: 1.625rem;
  --font-size-28: 1.75rem;
  --font-size-30: 1.875rem;
  --font-size-32: 2rem;
  --font-size-36: 2.25rem;
  --font-size-40: 2.5rem;
  --font-size-50: 3.125rem;
  --font-size-54: 3.375rem;
  --font-size-60: 3.75rem;
  --font-size-64: 4rem;
  --font-size-70: 4.375rem;
  --font-size-80: 5rem;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

body {
  color: #061D33;
  font-size: var(--font-size-16);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

:where(ul, ol) {
  list-style: none;
  list-style-type: '';
  padding: unset;
  margin: 0;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.4;
}

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

:where(:any-link, button, [type='button'], [type='reset'], [type='submit'], label[for], select, summary, [role='tab'], [role='button']) {
  cursor: pointer;
}

:where(button, [type='button'], [type='reset'], [type='submit']) {
  touch-action: manipulation;
}

legend, fieldset {
  all: unset;
}

input, button, textarea, select {
  font: inherit;
}

:target {
  scroll-margin-block: 120px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after, ::backdrop {
    background-attachment: scroll !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

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

a:hover {
  text-decoration: none;
  transition: .3s;
}

body.no-scroll {
  overflow: hidden;
}

.screen-reader-text {
  display: block !important;
  position: absolute;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
}

.l-inner {
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1240px;
}


/*######################################################################

		Header

************************************************************************/

.header {
  position: fixed;
  top: 20px;
  left: 50%;
  translate: -50% 0;
  width: calc(100% - 40px);
  max-width: 1400px;
  z-index: 100;
}

.header__fixed {
  position: fixed;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 50px;
  background-color: rgb(204 230 255 / .2);
  background-image: linear-gradient(135deg, rgb(255 255 255 / .42) 0%, rgb(255 255 255 / .08) 38%, rgb(204 230 255 / .16) 100%);
  border: 1px solid rgb(255 255 255 / .28);
  border-radius: 20px;
  box-shadow: inset 1px 1px 0 rgb(255 255 255 / .55), inset -1px -1px 0 rgb(255 255 255 / .12), 0 16px 40px rgb(6 29 51 / .08);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.header__logo {
  width: 300px;
}

.header__gnav {
  margin-left: auto;
}

.header__gnav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

@media not all and (min-width: 768px){
  .header__gnav-list {
    gap: 20px;
  }
}

.header__gnav-list a {
  position: relative;
  color: #FDFDFD;
  font-size: var(--font-size-16);
  font-weight: 700;
  transition: color .3s ease;
}

.header.is-scrolled .header__gnav-list a {
  color: #061D33;
}

.header__gnav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FDFDFD;
  transition: width .3s ease-out;
}

.header.is-scrolled .header__gnav-list a::after {
  background-color: #061D33;
}

@media (any-hover: hover) {
  .header__gnav-list a:hover::after {
    width: 100%;
  }
}

.header__gnav-list a:focus-visible::after {
  width: 100%;
}

.header__contact {
  width: 200px;
}

.header__sp-button {
  display: none;
  position: relative;
  z-index: 1000;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: none;
}

.header__sp-button .line {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 20px;
  height: 2px;
  background-color: #FDFDFD;
  transition: all .3s ease-in-out;
}

.header__sp-button .line::before,
.header__sp-button .line::after {
  content: '';
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 20px;
  height: 2px;
  background-color: #FDFDFD;
  transition: all .3s ease-in-out;
}

.header.is-scrolled .header__sp-button .line,
.header.is-scrolled .header__sp-button .line::before,
.header.is-scrolled .header__sp-button .line::after {
  background-color: #061D33;
}

.header__sp-button .line::before {
  top: -9px;
}

.header__sp-button .line::after {
  top: 9px;
}

.header__sp-button.is-open .line {
  background-color: transparent !important;
}

.header__sp-button.is-open .line::before {
  top: 0;
  transform: rotate(45deg);
}

.header__sp-button.is-open .line::after {
  top: 0;
  transform: rotate(-45deg);
}

.header__sp-button.is-open .line::before,
.header__sp-button.is-open .line::after {
  translate: -50% 0;
  transform-origin: center;
}

.header__sp-button .text {
  display: block !important;
  position: absolute;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
}

.header__sp-nav {
  display: none;
  visibility: hidden;
}

.header__sp-nav.is-open {
  visibility: visible;
}


/*######################################################################

		Contents

************************************************************************/

/*
  mv
/////////////////////////////////////////////////////////*/

.top-mv {
  position: relative;
  width: 100%;
  height: 56vw;
  max-height: 807px;
  min-height: 460px;
  background-color: #6ecdf4;
  border-radius: 0 0 50px 50px;
  isolation: isolate;
  overflow: hidden;
}

.top-mv::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url(./assets/images/top/top-mv-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: slideInT 1s ease-out both;
}

.top-mv__inner {
  position: relative;
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1440px;
  height: 100%;
}

.top-mv__catch {
  position: absolute;
  top: 25%;
  right: 40px;
  color: #FDFDFD;
  font-size: var(--font-size-64);
  font-weight: 700;
  line-height: 1.4;
}

.top-mv__catch-text {
  display: block;
}

.top-mv__catch .char {
  display: inline-block;
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  animation: topCatchScaleIn .4s cubic-bezier(.39, .575, .565, 1) forwards;
  animation-delay: calc(1s + .06s * var(--char-index));
}

/*
  hero
/////////////////////////////////////////////////////////*/

.top-hero {
  position: relative;
  margin-top: -17.4vw;
  z-index: 2;
}

.top-hero__image {
  width: 100%;
}

@keyframes slideInT {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes topCatchScaleIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*
  service
/////////////////////////////////////////////////////////*/

.top-service {
  margin-top: -190px;
  padding-block: 0 130px;
}

.top-service__inner {
  display: flex;
  gap: 50px;
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 720px;
}

.top-service__head {
  flex-shrink: 0;
}

.top-service__en {
  color: #061D33;
  font-size: var(--font-size-32);
  font-weight: 900;
  line-height: 1.2;
}

.top-service__title {
  color: #061D33;
  font-size: var(--font-size-20);
  font-weight: 700;
  letter-spacing: 2px;
}

.top-service__text {
  font-weight: 700;
}

.top-service__text p:not(:last-child) {
  margin-bottom: 1em;
}

.marker {
  background-image: linear-gradient(transparent 65%, #FFFFCC 65%);
}

/*
  business
/////////////////////////////////////////////////////////*/

.top-business__item {
  display: flex;
  position: relative;
  align-items: flex-end;
  height: clamp(300px, 20.833vw, 560px);
  overflow: hidden;
  isolation: isolate;
}

.top-business__item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .3s ease;
}

.top-business__item--cleaning::before {
  background-image: url(./assets/images/top/top-business-cleaning-bg.jpg);
}

.top-business__item--free-school::before {
  background-image: url(./assets/images/top/top-business-free-school-bg.jpg);
}

.top-business__item--equipment::before {
  background-image: url(./assets/images/top/top-business-equipment-bg.jpg);
}

.top-business__item--products::before {
  background-image: url(./assets/images/top/top-business-products-bg.jpg);
}

.top-business__item--drone::before {
  background-image: url(./assets/images/top/top-business-drone-bg.jpg);
  background-position: center top;
}

@media (min-width: 1600px) {
  .top-business__item {
    height: 34vw;
    max-height: 680px;
  }

  .top-business__row .top-business__item {
    height: 25vw;
    max-height: 500px;
  }
}

.top-business__row {
  display: flex;
}

.top-business__row .top-business__item {
  width: 33.3333%;
}

.top-business__body {
  width: min(380px, 86%);
}

.top-business__item--cleaning {
  justify-content: flex-end;
  padding: 0 8% 30px 0;
}

.top-business__item--free-school {
  justify-content: flex-start;
  padding: 0 0 30px 3%;
}

.top-business__row .top-business__item {
  justify-content: flex-start;
  padding: 0 0 30px 2%;
}

@media (any-hover: hover) {
  .top-business__item:hover::before {
    transform: scale(1.08);
  }
}

.top-business__item:focus-visible::before {
  transform: scale(1.08);
}

.top-business__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 16px;
  color: #061D33;
  font-size: var(--font-size-20);
  font-weight: 700;
  background-color: rgb(255 255 255 / .5);
  border-radius: 6px;
}

.top-business__item--equipment .top-business__label,
.top-business__item--products .top-business__label {
  color: #FDFDFD;
  background-color: rgb(0 0 0 / .5);
}

.top-business__desc {
  color: #061D33;
  font-size: var(--font-size-14);
  font-weight: 700;
  line-height: 1.6;
}

.top-business__item--cleaning .top-business__desc {
  color: #FDFDFD;
}

.top-business__item--equipment .top-business__desc,
.top-business__item--products .top-business__desc {
  color: #FDFDFD;
}

.top-business__more {
  margin-block: 70px 0;
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1240px;
}

.top-business__more-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 133px;
  color: #FDFDFD;
  background-image: url(./assets/images/top/top-business-more-bg.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: .3s ease;
}

.top-business__more-arrow {
  flex-shrink: 0;
  width: 60px;
}

.top-business__more-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-business__more-ja {
  font-size: var(--font-size-24);
  font-weight: 700;
  letter-spacing: -.02em;
}

.top-business__more-en {
  font-size: var(--font-size-16);
  letter-spacing: -.02em;
}

@media (any-hover: hover) {
  .top-business__more-link:hover {
    opacity: .85;
  }
}

.top-business__more-link:focus-visible {
  opacity: .85;
}

/*
  contact
/////////////////////////////////////////////////////////*/

.top-contact {
  padding-block: 90px;
}

.top-contact__inner {
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1000px;
}

.top-contact__lead {
  font-weight: 600;
  text-align: center;
}

.top-contact__heading {
  position: relative;
  margin-block: 60px 40px;
  margin-inline: auto;
  width: fit-content;
  padding-inline: 50px;
  color: #061D33;
  font-size: var(--font-size-32);
  font-weight: 700;
  letter-spacing: 5%;
  text-align: center;
}

.top-contact__heading::before,
.top-contact__heading::after {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 2px;
  height: 28px;
  background-color: #061D33;
}

.top-contact__heading::before {
  left: 0;
  rotate: -25deg;
}

.top-contact__heading::after {
  right: 0;
  rotate: 25deg;
}

.top-contact__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.top-contact__button {
  display: block;
  transition: .3s ease;
}

.top-contact__button img {
  width: 100%;
}

.top-contact__tel-sp {
  display: none;
}

@media (any-hover: hover) {
  a.top-contact__button:hover {
    opacity: .85;
  }
}

a.top-contact__button:focus-visible {
  opacity: .85;
}

/*
  news
/////////////////////////////////////////////////////////*/

.top-news {
  padding-block: 80px 160px;
  background-color: #CCE6FF;
}

.top-news__inner {
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1100px;
}

.top-news__head {
  margin-bottom: 50px;
  text-align: center;
}

.top-news__title {
  color: #061D33;
  font-size: var(--font-size-32);
  font-weight: 900;
}

.top-news__text {
  margin-top: 12px;
  font-weight: 500;
}

.top-news__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.top-news__feed {
  min-height: 1px;
}

.top-news__feed img {
  max-width: 100%;
}

.top-news__feed a:focus-visible {
  outline: 2px solid #061D33;
  outline-offset: 4px;
}

.top-news__card {
  width: 300px;
  background-color: #FDFDFD;
  border-radius: 10px;
  overflow: hidden;
}

.top-news__card-link {
  display: block;
  padding: 16px;
}

.top-news__thumbnail {
  aspect-ratio: 1 / 1;
  background-color: #fff;
  border-radius: 6px;
}

.top-news__card-text {
  margin-top: 16px;
  font-size: var(--font-size-12);
  font-weight: 500;
  line-height: 1.6;
}

@media (any-hover: hover) {
  .top-news__card-link:hover {
    opacity: .8;
  }
}

.top-news__card-link:focus-visible {
  opacity: .8;
}

.top-news .inavii-social-feed .inavii-view {
  --inavii-brand-color: #061D33;
  --inavii-border-radius: 10px;
}

.top-news .inavii-social-feed .inavii-view__slider-shell {
  overflow: visible;
}

.top-news .inavii-social-feed .inavii-view__slider-swiper {
  overflow: hidden;
}

.top-news .inavii-social-feed .inavii-view__slider-swiper .swiper-wrapper {
  align-items: stretch;
}

.top-news .inavii-social-feed .inavii-view__slider-slide {
  display: flex !important;
  height: auto !important;
  padding: 16px !important;
  background-color: #FDFDFD !important;
  border-radius: 10px !important;
}

.top-news .inavii-social-feed .inavii-view__slider-slide .inavii-view__item {
  width: 100%;
  min-height: 100%;
}

.top-news .inavii-social-feed .inavii-view__item {
  aspect-ratio: auto !important;
  display: flex !important;
  padding: 0 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.top-news .inavii-social-feed .inavii-view__item-link {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto;
  height: auto !important;
  color: #061D33 !important;
}

.top-news .inavii-social-feed .inavii-view__item-media,
.top-news .inavii-social-feed .inavii-view__item-carousel,
.top-news .inavii-social-feed .inavii-view__item-carousel-swiper,
.top-news .inavii-social-feed .inavii-view__item-carousel-slide {
  height: auto !important;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  overflow: hidden;
}

.top-news .inavii-social-feed .inavii-view__img,
.top-news .inavii-social-feed .inavii-view__item-video,
.top-news .inavii-social-feed .inavii-view__item-video-cover {
  width: 100% !important;
  height: 100cqw !important;
  max-height: 360px;
  object-fit: cover !important;
}

.top-news .inavii-social-feed .inavii-view__item-overlay {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 16px 4px 0 !important;
  background: transparent !important;
  color: #061D33 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.top-news .inavii-social-feed .inavii-view__item-caption {
  display: block !important;
  order: 2;
  color: #061D33 !important;
  font-size: var(--font-size-14) !important;
  font-weight: 600;
  line-height: 1.6 !important;
  text-align: left !important;
  overflow: visible !important;
}

.top-news .inavii-social-feed .inavii-view__item-play-meta {
  display: none !important;
}

.top-news .inavii-social-feed .inavii-view__item-meta {
  display: flex !important;
  order: 1;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: #061D33 !important;
  font-size: var(--font-size-13) !important;
  font-weight: 600;
  line-height: 1.4 !important;
}

.top-news .inavii-social-feed .inavii-view__item-date {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.top-news .inavii-social-feed .inavii-view__item-meta * {
  color: #061D33 !important;
  fill: currentColor !important;
}

.top-news .inavii-social-feed .inavii-view__item-stats,
.top-news .inavii-social-feed .inavii-view__item-stat {
  display: none !important;
}

.top-news .inavii-social-feed .inavii-view__item-meta svg,
.top-news .inavii-social-feed .inavii-view__item-meta i {
  flex: 0 0 auto;
}

.top-news .inavii-social-feed .framtid-inavii-caption {
  display: block;
  margin: 8px 4px 0;
  color: #061D33;
  font-size: var(--font-size-14);
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
  white-space: pre-line;
  overflow: visible;
}

.top-news .inavii-social-feed .inavii-view__swiper-arrow {
  width: 72px !important;
  height: 44px !important;
  background: transparent !important;
  color: #061D33 !important;
  border-radius: 0 !important;
  filter: none !important;
}

.top-news .inavii-social-feed .inavii-view__swiper-arrow--disabled {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.top-news .inavii-social-feed .inavii-view__swiper-arrow-icon {
  display: none !important;
}

.top-news .inavii-social-feed .inavii-view__swiper-arrow::before,
.top-news .inavii-social-feed .inavii-view__swiper-arrow::after {
  content: "";
  position: absolute;
  display: block;
}

.top-news .inavii-social-feed .inavii-view__swiper-arrow::before {
  top: 50%;
  left: 8px;
  width: 56px;
  height: 3px;
  background-color: currentColor;
  transform: translateY(-50%);
}

.top-news .inavii-social-feed .inavii-view__swiper-arrow::after {
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.top-news .inavii-social-feed .inavii-view__slider-arrow--prev {
  left: -36px !important;
}

.top-news .inavii-social-feed .inavii-view__slider-arrow--next {
  right: -36px !important;
}

.top-news .inavii-social-feed .inavii-view__slider-arrow--prev::after {
  left: 8px;
  transform: translateY(-50%) rotate(-135deg);
}

.top-news .inavii-social-feed .inavii-view__slider-arrow--next::after {
  right: 8px;
  transform: translateY(-50%) rotate(45deg);
}

@media not all and (min-width: 1240px) {
  .top-news .inavii-social-feed .inavii-view__slider-arrow--prev {
    left: -18px !important;
  }

  .top-news .inavii-social-feed .inavii-view__slider-arrow--next {
    right: -18px !important;
  }
}

@media not all and (min-width: 768px) {
  .top-news .inavii-social-feed .inavii-view__slider-slide {
    padding: 14px !important;
  }

  .top-news .inavii-social-feed .inavii-view__item-overlay {
    display: block !important;
    padding-top: 14px !important;
  }

  .top-news .inavii-social-feed .inavii-view__item-caption,
  .top-news .inavii-social-feed .framtid-inavii-caption {
    font-size: var(--font-size-13) !important;
  }

  .top-news .inavii-social-feed .inavii-view__swiper-arrow {
    width: 52px !important;
  }

  .top-news .inavii-social-feed .inavii-view__swiper-arrow::before {
    left: 6px;
    width: 40px;
  }

  .top-news .inavii-social-feed .inavii-view__swiper-arrow::after {
    width: 13px;
    height: 13px;
  }
}

.grecaptcha-badge {
  visibility: hidden !important;
}

/*
  company
/////////////////////////////////////////////////////////*/

.company-mv {
  height: 56vw;
  max-height: 806px;
  min-height: 460px;
  background-image: url(./assets/images/company/company-mv-mg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0 0 50px 50px;
}

.breadcrumb {
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1240px;
  font-size: var(--font-size-12);
  font-weight: 500;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb li:not(:last-child)::after {
  content: '＞';
  margin-left: 6px;
}

.company-breadcrumb {
  margin-top: 20px;
}

.company-section-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  width: 400px;
  height: 100px;
  color: #FDFDFD;
  background-color: #1872CC;
}

.company-section-heading__ja {
  font-size: var(--font-size-36);
  font-weight: 700;
  letter-spacing: -.02em;
}

.company-section-heading__en {
  margin-top: 2px;
  font-size: var(--font-size-15);
  font-weight: 700;
  letter-spacing: -.02em;
}

.company-message {
  margin-top: 36px;
  padding-inline: 40px;
}

.company-message__body {
  margin-inline: auto;
  margin-top: 38px;
  max-width: 828px;
  color: #061D33;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 1.5;
}

.company-message__body p:not(:last-child) {
  margin-bottom: 24px;
}

.company-message__signature {
  margin-inline: auto;
  margin-top: 34px;
  max-width: 828px;
  color: #061D33;
  font-size: var(--font-size-24);
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: right;
}

.company-profile {
  margin-top: 120px;
  padding-inline: 40px;
}

.company-data {
  margin-inline: auto;
  margin-top: 44px;
  max-width: 600px;
  color: #061D33;
  font-size: var(--font-size-20);
  font-weight: 700;
  letter-spacing: -.02em;
}

.company-data__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid #061D33;
}

.company-data__row:last-child {
  border-bottom: 1px solid #061D33;
}

.company-data dt,
.company-data dd {
  margin: 0;
}

.company-data dd {
  line-height: 1.5;
}

.company-data dd strong {
  font-weight: 700;
}

.company-access {
  margin-top: 180px;
  padding-inline: 40px;
}

.company-access__data {
  margin-inline: auto;
  margin-top: 44px;
  max-width: 780px;
  color: #061D33;
  font-size: var(--font-size-20);
  font-weight: 700;
  letter-spacing: -.02em;
}

.company-access__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
}

.company-access__row:not(:last-child) {
  margin-bottom: 14px;
}

.company-access dt,
.company-access dd {
  margin: 0;
}

.company-access dd {
  line-height: 1.5;
}

.company-access__map {
  margin-inline: auto;
  margin-top: 56px;
  max-width: 1200px;
  height: 500px;
  background-color: #D9D9D9;
}

.company-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/*
  privacy
/////////////////////////////////////////////////////////*/

.privacy-mv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 190px 40px 90px;
  background-color: #061D33;
  border-radius: 0 0 50px 50px;
  text-align: center;
}

.privacy-mv__ja {
  color: #FDFDFD;
  font-size: var(--font-size-40);
  font-weight: 700;
  letter-spacing: .06em;
}

.privacy-mv__en {
  margin-top: 10px;
  color: #FDFDFD;
  font-size: var(--font-size-16);
  font-weight: 700;
  letter-spacing: .12em;
}

.privacy-breadcrumb {
  margin-top: 20px;
}

.privacy {
  margin-inline: auto;
  margin-top: 56px;
  padding-inline: 40px;
  max-width: 900px;
  color: #061D33;
}

.privacy__lead {
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 1.8;
}

.privacy-section {
  margin-block: 90px 160px;
}

.privacy-section-heading {
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #061D33;
}

.privacy-section-heading__ja {
  color: #061D33;
  font-size: var(--font-size-32);
  font-weight: 700;
  letter-spacing: .04em;
}

.privacy-section-heading__en {
  margin-top: 4px;
  color: #555555;
  font-size: var(--font-size-14);
  font-weight: 700;
  letter-spacing: .06em;
}

.privacy-policy-list {
  counter-reset: privacy-policy;
  margin-top: 44px;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 1.8;
}

.privacy-policy-list li {
  position: relative;
  padding-left: 32px;
}

.privacy-policy-list li:not(:last-child) {
  margin-bottom: 20px;
}

.privacy-policy-list li::before {
  counter-increment: privacy-policy;
  content: counter(privacy-policy) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #061D33;
  font-weight: 700;
}

.privacy-enact {
  margin-top: 44px;
  font-size: var(--font-size-16);
  font-weight: 700;
  line-height: 1.8;
}

.privacy-enact p:not(:last-child) {
  margin-bottom: 12px;
}

.privacy-window {
  margin-top: 44px;
  padding: 28px 32px;
  background-color: #F5F5F5;
  border-radius: 10px;
}

.privacy-window__lead {
  font-size: var(--font-size-15);
  font-weight: 500;
  line-height: 1.7;
}

.privacy-window__title {
  margin-top: 12px;
  font-size: var(--font-size-18);
  font-weight: 700;
}

.privacy-window__data {
  margin-top: 12px;
  font-size: var(--font-size-15);
  font-weight: 500;
}

.privacy-window__row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  line-height: 1.7;
}

.privacy-window__row:not(:last-child) {
  margin-bottom: 4px;
}

.privacy-window__row dt {
  font-weight: 700;
}

.privacy-window__row dd {
  margin: 0;
}

.privacy-window__row a {
  color: #061D33;
  text-decoration: underline;
}

.privacy-item {
  margin-top: 48px;
}

.privacy-item__title {
  padding-left: 16px;
  border-left: 5px solid #061D33;
  color: #061D33;
  font-size: var(--font-size-20);
  font-weight: 700;
  line-height: 1.5;
}

.privacy-item__body {
  margin-top: 18px;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 1.8;
}

.privacy-item__body > p:not(:last-child) {
  margin-bottom: 16px;
}

.privacy-note {
  font-weight: 700;
}

.privacy-subtitle {
  margin-top: 28px;
  font-size: var(--font-size-18);
  font-weight: 700;
}

.privacy-table-caption {
  margin-top: 24px;
  font-size: var(--font-size-16);
  font-weight: 700;
}

.privacy-table {
  width: 100%;
  margin-top: 12px;
  font-size: var(--font-size-15);
  font-weight: 500;
  line-height: 1.7;
  border-collapse: collapse;
}

.privacy-table th,
.privacy-table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #D9D9D9;
}

.privacy-table thead th {
  color: #FDFDFD;
  font-weight: 700;
  background-color: #061D33;
  border-color: #061D33;
}

.privacy-table thead th:first-child {
  width: 38%;
}

.privacy-table tbody th {
  font-weight: 700;
  background-color: #F5F5F5;
}

.privacy-cell-list li {
  position: relative;
  padding-left: 16px;
}

.privacy-cell-list li:not(:last-child) {
  margin-bottom: 6px;
}

.privacy-cell-list li::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}

.privacy-measures {
  margin-top: 16px;
}

.privacy-measures__row:not(:last-child) {
  margin-bottom: 18px;
}

.privacy-measures__row dt {
  font-weight: 700;
}

.privacy-measures__row dd {
  margin: 4px 0 0;
}

/*
  business
/////////////////////////////////////////////////////////*/

.business-mv {
  height: 56vw;
  max-height: 803px;
  min-height: 460px;
  background-image: url(./assets/images/business/business-mv-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0 0 50px 50px;
}

.business-breadcrumb {
  margin-top: 20px;
}

.business-intro {
  margin-top: 72px;
  padding-inline: 40px;
}

.business-section-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  width: 400px;
  height: 100px;
  color: #FDFDFD;
  background-color: #1872CC;
}

.business-section-heading__ja {
  font-size: var(--font-size-36);
  font-weight: 700;
  letter-spacing: .1em;
}

.business-section-heading__en {
  margin-top: 2px;
  font-size: var(--font-size-14);
  font-weight: 700;
  letter-spacing: .05em;
}

.business-toc {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 40px;
  margin-inline: auto;
  margin-top: 54px;
  padding: 30px 90px;
  max-width: 900px;
  min-height: 250px;
  background-image: linear-gradient(90deg, #1872CC 0, #CCE6FF 50%, rgb(204 230 255 / 0) 100%);
  border-radius: 10px;
}

.business-toc__title {
  color: #FFFFCC;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: var(--font-size-60);
  line-height: .8;
  letter-spacing: .1em;
}

.business-toc__title span {
  letter-spacing: 0;
}

.business-toc__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.business-toc__list a {
  display: grid;
  grid-template-columns: 30px max-content 30px;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #061D33;
  font-size: var(--font-size-20);
  font-weight: 700;
  letter-spacing: .04em;
  transition: opacity .3s ease, letter-spacing .3s ease;
}

.business-toc__list img {
  width: 30px;
}

@media (any-hover: hover) {
  .business-toc__list a:hover {
    opacity: .75;
    letter-spacing: .14em;
  }
}

.business-toc__list a:focus-visible {
  opacity: .75;
  letter-spacing: .14em;
}

.business-service {
  padding-block: 90px 0;
}

.business-service__last {
  margin-bottom: 200px;
}

.business-service__mv {
  position: relative;
  margin-inline: auto;
  max-width: 1040px;
}

.business-service__title {
  display: inline-block;
  color: transparent;
  font-size: var(--font-size-40);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: .2em;
  background-image: linear-gradient(90deg, #8400FF 0%, #1872CC 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.business-service__title--long {
  letter-spacing: .1em;
}

.business-service__mv-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.business-service__mv-text {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42%, 381px);
}

.business-service__mv-text--wide {
  width: min(70%, 721px);
}

.business-service__mv-text--product {
  width: min(58%, 556px);
}

.business-service__body {
  margin-inline: auto;
  margin-top: 72px;
  padding-inline: 40px;
  max-width: 915px;
  color: #061D33;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .02em;
}

.business-service__body p:not(:last-child) {
  margin-bottom: 24px;
}

.business-clean__body {
  grid-column: 2;
  grid-row: 1;
  max-width: 758px;
}

.business-clean__images {
  display: grid;
  grid-template-columns: 150px 758px 150px;
  column-gap: 66px;
  align-items: start;
  margin-inline: auto;
  max-width: 1190px;
}

.business-clean__image {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  pointer-events: none;
  will-change: transform;
}

.business-clean__image--left {
  grid-column: 1;
  grid-row: 1;
  margin-top: 250px;
}

.business-clean__image--right-top {
  grid-column: 3;
  grid-row: 1;
  margin-top: 56px;
}

.business-clean__image--right-bottom {
  grid-column: 3;
  grid-row: 1;
  margin-top: 438px;
  margin-left: -88px;
}

@media (max-width: 1239px) {
  .business-clean__images {
    display: block;
    position: relative;
    min-height: auto;
    padding-inline: 190px;
  }

  .business-clean__body {
    padding-inline: 0;
    max-width: none;
  }

  .business-clean__image {
    position: absolute;
    margin-top: 0;
  }

  .business-clean__image--left {
    top: 250px;
    left: 20px;
  }

  .business-clean__image--right-top {
    top: 56px;
    right: 20px;
  }

  .business-clean__image--right-bottom {
    top: 438px;
    right: 40px;
  }
}

.business-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 550px));
  justify-content: center;
  gap: 20px;
  margin-inline: auto;
  margin-top: 60px;
  padding-inline: 40px;
}

.business-before-after__item {
  padding: 40px 42px 44px;
  background-color: #CCE6FF;
  border-radius: 50px;
}

.business-before-after__label {
  display: grid;
  grid-template-columns: 110px 88px 110px;
  justify-content: center;
  align-items: center;
  gap: 11px;
  margin-bottom: 34px;
}

.business-before-after__label span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 33px;
  color: #FDFDFD;
  font-size: var(--font-size-14);
  font-weight: 700;
  background-color: #1872CC;
}

.business-before-after__label img {
  width: 88px;
}

.business-before-after__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.business-before-after__images img,
.business-before-after__after {
  width: 100%;
  border-radius: 20px;
}

.business-before-after__after {
  position: relative;
  display: block;
  overflow: hidden;
}

.business-before-after__after::after {
  content: '';
  position: absolute;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(100deg, rgb(255 255 255 / 0) 25%, rgb(255 255 255 / .65) 50%, rgb(255 255 255 / 0) 75%);
  transform: skewX(-15deg);
  animation: shine 3s linear infinite;
  pointer-events: none;
}

.business-before-after__after img {
  height: 100%;
  object-fit: cover;
}


.business-license {
  margin-inline: auto;
  margin-top: 38px;
  padding-inline: 40px;
  max-width: 850px;
  color: #061D33;
}

.business-license__title {
  margin-bottom: 18px;
  font-size: var(--font-size-16);
  font-weight: 700;
  letter-spacing: .02em;
}

.business-license__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  font-size: var(--font-size-14);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .02em;
}

.business-license__grid strong {
  font-weight: 700;
}

.business-free-school__content {
  display: grid;
  grid-template-columns: 150px 749px 150px;
  column-gap: 50px;
  align-items: start;
  margin-inline: auto;
  max-width: 1149px;
}

.business-free-school__body {
  grid-column: 2;
  grid-row: 1;
  max-width: 749px;
}

.business-free-school__image {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  pointer-events: none;
  will-change: transform;
}

.business-free-school__image--left {
  grid-column: 1;
  grid-row: 1;
  margin-top: 149px;
}

.business-free-school__image--right {
  grid-column: 3;
  grid-row: 1;
  margin-top: 349px;
}

@media (max-width: 1199px) {
  .business-free-school__content {
    display: block;
    position: relative;
    min-height: auto;
    padding-inline: 190px;
  }

  .business-free-school__body {
    padding-inline: 0;
    max-width: none;
  }

  .business-free-school__image {
    position: absolute;
    margin-top: 0;
  }

  .business-free-school__image--left {
    top: 149px;
    left: 20px;
  }

  .business-free-school__image--right {
    top: 349px;
    right: 20px;
  }
}

.business-free-school__points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 200px));
  justify-content: center;
  gap: clamp(20px, 3.6vw, 52px);
  margin-top: 50px;
  padding-inline: 40px;
}

.business-free-school__points div {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  color: #061D33;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: var(--font-size-16);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  background-image: url(./assets/images/business/business-free-school-circle-bg.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}

.business-free-school__lead {
  margin-inline: auto;
  margin-top: 42px;
  padding-inline: 40px;
  max-width: 740px;
  color: #061D33;
  font-size: var(--font-size-16);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
  text-align: center;
}

.business-free-school__lead a,
.business-free-school__button {
  display: block;
  margin-inline: auto;
  margin-top: 36px;
  max-width: 729px;
  transition: .3s ease;
}

.business-free-school__button {
  animation: poyopoyo 2s ease-out infinite;
}

@media (any-hover: hover) {
  .business-free-school__lead a:hover,
  .business-free-school__button:hover {
    opacity: .85;
  }
}

.business-free-school__lead a:focus-visible,
.business-free-school__button:focus-visible {
  opacity: .85;
}

@keyframes shine {
  20% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(.95);
  }
}

.business-license--equipment .business-license__grid {
  grid-template-columns: 1fr 1fr;
  max-width: 640px;
}

.business-contact {
  padding-block: 140px 120px;
}

.top-news + .business-contact {
  padding-top: 210px;
}

.business-contact__inner {
  position: relative;
  margin-inline: auto;
  padding: 0 40px 86px;
  max-width: 1200px;
  background-color: #CCE6FF;
  background-image: url(./assets/images/business/form-bg.webp);
  background-size: 200px 200px;
  background-repeat: repeat;
  border-radius: 50px;
}

.business-contact__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  translate: 0 -50px;
  width: min(100%, 400px);
  min-height: 100px;
  color: #FDFDFD;
  background-color: #8400FF;
  text-align: center;
}

.business-contact__title {
  font-size: var(--font-size-24);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .1em;
}

.business-contact__en {
  margin-top: 2px;
  font-size: var(--font-size-14);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .1em;
}

.business-contact__form {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  margin-top: 8px;
  max-width: 800px;
}

.business-contact__form p {
  margin: 0;
}

.business-contact__row {
  display: grid;
  grid-template-columns: 163px minmax(0, 500px);
  align-items: center;
  gap: 50px;
  margin-inline: auto;
  max-width: 713px;
}

.business-contact__row > p {
  display: contents;
}

.business-contact__row > p > br {
  display: none;
}

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

.business-contact__row--message {
  align-items: start;
}

.business-contact__row--radio {
  align-items: start;
}

.business-contact__label {
  color: #061D33;
  font-size: var(--font-size-16);
  font-weight: 700;
  line-height: 1.4;
}

.business-contact__control {
  width: 100%;
  min-height: 40px;
  padding: 0 16px;
  color: #061D33;
  background-color: #FDFDFD;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
}

.business-contact__form input[type="text"],
.business-contact__form input[type="tel"],
.business-contact__form input[type="email"],
.business-contact__form textarea {
  display: block;
  width: 100%;
  max-width: none;
  color: #061D33;
  background-color: #FDFDFD;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
}

.business-contact__form input[type="text"],
.business-contact__form input[type="tel"],
.business-contact__form input[type="email"] {
  min-height: 40px;
  padding: 0 16px;
}

.business-contact__form textarea {
  min-height: 400px;
  padding: 12px 16px;
  resize: vertical;
}

.business-contact__form .wpcf7-form-control.business-contact__control {
  width: 100%;
  max-width: none;
}

.business-contact__control::placeholder {
  color: #D9D9D9;
}

.business-contact__form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}

.business-contact__form .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: var(--font-size-13);
  font-weight: 500;
}

.business-contact__form .wpcf7-response-output {
  margin: 40px auto 0;
  max-width: 800px;
  font-size: var(--font-size-14);
}

.business-contact__form .wpcf7-spinner {
  display: block;
  margin: 24px auto 0;
}

.business-contact__notice {
  position: relative;
  z-index: 1;
  margin: 0 auto 32px;
  padding: 16px 20px;
  max-width: 800px;
  color: #061D33;
  font-size: var(--font-size-14);
  font-weight: 700;
  line-height: 1.6;
  background-color: #FFFFCC;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
}

.business-contact__confirm {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  margin-top: 8px;
  max-width: 800px;
}

.business-contact__confirm-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
  padding-block: 20px;
  border-bottom: 1px solid #D9D9D9;
}

.business-contact__confirm-label {
  color: #061D33;
  font-size: var(--font-size-16);
  font-weight: 700;
  line-height: 1.4;
}

.business-contact__confirm-value {
  color: #061D33;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 1.8;
}

.business-contact__confirm-buttons p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 84px;
}

.business-contact__back {
  display: block;
  width: min(100%, 240px);
  min-height: 72px;
  color: #061D33;
  font-size: var(--font-size-20);
  font-weight: 800;
  background-color: #FDFDFD;
  border: 1px solid #D9D9D9;
  border-radius: 50px;
  transition: .3s ease;
}

.business-contact__thanks {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  margin-top: 8px;
  max-width: 800px;
  color: #061D33;
  font-size: var(--font-size-18);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.business-contact__thanks p:not(:last-child) {
  margin-bottom: 12px;
}

.business-contact__thanks-button {
  display: grid;
  place-items: center;
  margin: 56px auto 0;
  width: min(100%, 320px);
  min-height: 72px;
  color: #FDFDFD;
  font-size: var(--font-size-20);
  font-weight: 800;
  background-color: #8400FF;
  border-radius: 50px;
  box-shadow: 0 5px 5px rgb(0 0 0 / .25), inset 0 6px 20px #FFFFCC;
  transition: .3s ease;
}

.business-contact__textarea {
  min-height: 400px;
  padding-block: 12px;
  resize: vertical;
}

.business-contact__radios {
  display: grid;
  align-items: start;
  gap: 9px;
}

.business-contact__radios .wpcf7-form-control-wrap,
.business-contact__radios .wpcf7-radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 36px;
}

.business-contact__radios .wpcf7-list-item {
  margin: 0;
}

.business-contact__radios .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.business-contact__radios label,
.business-contact__agree {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #061D33;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 1.4;
}

.business-contact__radios input,
.business-contact__agree input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  accent-color: #1872CC;
}

.business-contact__privacy {
  margin-block: 70px;
}

.business-contact__privacy-box {
  margin-inline: auto;
  height: 200px;
  padding: 24px;
  max-width: 800px;
  color: #061D33;
  font-size: var(--font-size-16);
  font-weight: 500;
  line-height: 1.6;
  background-color: #FDFDFD;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  overflow: auto;
}

.business-contact__privacy-box p:not(:last-child) {
  margin-bottom: 16px;
}

.business-contact__recaptcha {
  margin-top: 20px;
  color: #555555;
  font-size: var(--font-size-12);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.business-contact__recaptcha a {
  color: #061D33;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.business-contact__agree,
.business-contact__form .wpcf7-acceptance,
.business-contact__form .wpcf7-acceptance .wpcf7-list-item,
.business-contact__form .wpcf7-acceptance label {
  display: flex;
  justify-content: center;
  align-items: center;
}

.business-contact__agree,
.business-contact__form .wpcf7-acceptance {
  justify-content: center;
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
}

.business-contact__form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.business-contact__form .wpcf7-acceptance label {
  gap: 14px;
  line-height: 1.4;
}

.business-contact__form .wpcf7-acceptance input[type="checkbox"] {
  flex: 0 0 auto;
  margin: 0;
  translate: 0;
}

.business-contact__form .wpcf7-acceptance .wpcf7-list-item-label {
  display: block;
  line-height: 1.4;
}

.business-contact__submit {
  display: block;
  margin-inline: auto;
  width: min(100%, 400px);
  min-height: 93px;
  color: #FDFDFD;
  font-size: var(--font-size-24);
  font-weight: 800;
  letter-spacing: .02em;
  background-color: #8400FF;
  border: 0;
  border-radius: 50px;
  box-shadow: 0 5px 5px rgb(0 0 0 / .25), inset 0 6px 20px #FFFFCC;
  transition: .3s ease;
}

@media (any-hover: hover) {
  .business-contact__submit:hover {
    opacity: .85;
  }

  .business-contact__back:hover,
  .business-contact__thanks-button:hover {
    opacity: .85;
    text-decoration: none;
  }
}

.business-contact__submit:focus-visible {
  opacity: .85;
}

.business-contact__back:focus-visible,
.business-contact__thanks-button:focus-visible {
  opacity: .85;
  text-decoration: none;
}

@media (max-width: 900px) {
  .business-free-school__points {
    grid-template-columns: repeat(2, minmax(140px, 180px));
    gap: 20px;
  }
}

/*######################################################################

		Footer

************************************************************************/

.footer {
  position: relative;
  margin-top: -40px;
  padding-block: 42px;
  background-color: #1c74cd;
  background-image: linear-gradient(90deg, #1c74cd 20%, #2980d8 53%, #CCE6FF 100%);
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url(./assets/images/common/footer-noise.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-inline: auto;
  padding-inline: 40px;
  max-width: 1050px;
  color: #FDFDFD;
}

.footer__company-name {
  margin-bottom: 16px;
  font-size: var(--font-size-20);
  font-weight: 700;
  letter-spacing: -.02em;
}

.footer__company-address {
  margin-bottom: 16px;
  font-size: var(--font-size-16);
  font-weight: 700;
  line-height: 1.5;
}

.footer__company-tel {
  font-size: var(--font-size-16);
  font-weight: 700;
  line-height: 1.5;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__nav-list a {
  position: relative;
  font-size: var(--font-size-16);
  font-weight: 700;
  letter-spacing: -.02em;
}

.footer__nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #FDFDFD;
  transition: width .3s ease-out;
}

@media (any-hover: hover) {
  .footer__nav-list a:hover::after {
    width: 100%;
  }
}

.footer__nav-list a:focus-visible::after {
  width: 100%;
}

.footer__instagram {
  margin-top: 14px;
}

.footer__instagram-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

.footer__instagram-link img {
  width: 90px;
}

.footer__instagram-text {
  font-size: var(--font-size-16);
  font-weight: 700;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin-top: 17px;
}

.footer__logo {
  width: 368px;
}

.footer__tagline {
  font-size: var(--font-size-16);
  color: #CCE6FF;
}

@media (any-hover: hover) {
  .footer__instagram-link:hover {
    opacity: .8;
  }
}

.footer__instagram-link:focus-visible {
  opacity: .8;
}

.totop {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.totop.is-visible {
  opacity: 1;
  visibility: visible;
}

.totop img {
  width: 19px;
}

@media (any-hover: hover) {
  .totop a:hover {
    opacity: .7;
  }
}

.totop a:focus-visible {
  opacity: .7;
}


/*######################################################################

		Responsive

************************************************************************/

@media not all and (min-width: 1100px){
  .header__inner {
    padding: 16px 20px;
    gap: 16px;
  }

  .top-service {
    margin-top: -130px;
  }
}

@media not all and (min-width: 980px){
  .header {
    left: 20px;
    right: 20px;
    translate: none;
    width: auto;
  }

  .header__logo {
    width: 220px;
  }

  .header__gnav,
  .header__contact {
    display: none;
  }

  .header__sp-button {
    display: block;
    margin-left: auto;
  }

  .header__sp-nav {
    display: block;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    translate: 10px 0;
    padding: 20px;
    width: min(100%, 320px);
    height: auto;
    background-image: linear-gradient(160deg, #1E6FB6 0, #36B5D8 100%);
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease-in-out, translate .3s ease-in-out, visibility .3s ease-in-out;
    z-index: 999;
  }

  .header__sp-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    translate: 0;
  }

  .header__sp-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .header__sp-nav-list a {
    display: block;
    padding-block: 14px;
    color: #FDFDFD;
    font-weight: 700;
    border-bottom: 1px solid rgb(255 255 255 / .3);
  }

  .top-service {
    margin-top: 0;
  }
}

@media not all and (min-width: 768px){
  .header__logo {
    width: 150px;
  }

  .top-mv {
    height: 70vw;
    min-height: 380px;
    border-radius: 0 0 25px 25px;
  }

  .top-mv__inner {
    padding-inline: 20px;
  }

  .top-mv__catch {
    top: auto;
    bottom: 22%;
    right: 20px;
    font-size: var(--font-size-30);
  }

  .top-service {
    padding-block: 0 60px;
  }

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

  .top-business__item {
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 0;
    padding-block: 110px 120px;
    padding-inline: 20px;
    background-size: cover;
    background-position: center;
  }

  .top-business__row {
    flex-direction: column;
  }

  .top-business__row .top-business__item {
    width: 100%;
    padding-block: 80px;
    padding-inline: 40px;
  }

  .top-business__item--cleaning .top-business__body,
  .top-business__item--free-school .top-business__body,
  .top-business__row .top-business__body {
    margin-inline: auto;
    width: min(520px, 100%);
    text-align: center;
  }

  .top-business__more-arrow {
    width: 44px;
  }

  .top-business__more-link {
    position: relative;
    gap: 12px;
    justify-content: center;
    height: 62px;
    padding-inline: 26px;
    background-color: #1E90FF;
    background-image: none;
    box-shadow: 8px 8px 10px rgb(0 0 0 / .18);
    clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
  }

  .top-business__more-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    background-color: #FFFFCC;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }

  .top-business__more-ja {
    font-size: var(--font-size-18);
    line-height: 1.3;
  }

  .top-business__more-en {
    font-size: var(--font-size-14);
    line-height: 1.2;
  }

  .top-contact__heading {
    padding-inline: 20px;
    font-size: var(--font-size-24);
  }

  .top-contact__buttons {
    gap: 20px;
  }

  .top-contact__tel-pc {
    display: none;
  }

  .top-contact__tel-sp {
    display: block;
  }

  .top-news__list {
    gap: 20px;
  }

  .company-mv {
    height: 70vw;
    min-height: 320px;
    border-radius: 0 0 25px 25px;
  }

  .company-section-heading {
    width: min(100%, 320px);
    height: 84px;
  }

  .company-section-heading__ja {
    font-size: var(--font-size-28);
  }

  .company-section-heading__en {
    font-size: var(--font-size-14);
  }

  .company-message {
    margin-top: 30px;
  }

  .company-message__body {
    margin-top: 32px;
    font-size: var(--font-size-15);
  }

  .company-message__body p:not(:last-child) {
    margin-bottom: 20px;
  }

  .company-message__signature {
    margin-top: 28px;
    font-size: var(--font-size-20);
  }

  .company-profile {
    margin-top: 70px;
  }

  .company-data {
    margin-top: 34px;
    font-size: var(--font-size-16);
  }

  .company-data__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 18px;
  }

  .company-access {
    margin-top: 90px;
  }

  .company-access__data {
    margin-top: 34px;
    font-size: var(--font-size-16);
  }

  .company-access__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company-access__map {
    margin-top: 36px;
    height: 360px;
  }

  .privacy-mv {
    padding: 140px 20px 60px;
    border-radius: 0 0 25px 25px;
  }

  .privacy-mv__ja {
    font-size: var(--font-size-28);
  }

  .privacy-mv__en {
    font-size: var(--font-size-14);
  }

  .privacy {
    margin-top: 40px;
  }

  .privacy-section {
    margin-block: 64px 80px;
  }

  .privacy-section-heading {
    padding-bottom: 16px;
  }

  .privacy-section-heading__ja {
    font-size: var(--font-size-24);
  }

  .privacy__lead,
  .privacy-policy-list,
  .privacy-item__body {
    font-size: var(--font-size-15);
  }

  .privacy-item__title {
    font-size: var(--font-size-18);
  }

  .privacy-window {
    padding: 22px 20px;
  }

  .privacy-window__row {
    grid-template-columns: 48px 1fr;
    gap: 8px;
  }

  .privacy-table {
    font-size: var(--font-size-14);
  }

  .privacy-table th,
  .privacy-table td {
    display: block;
    width: 100%;
  }

  .privacy-table thead {
    display: none;
  }

  .privacy-table tbody th {
    position: relative;
    padding-left: 18px;
  }

  .privacy-table tbody td {
    border-top: 0;
  }

  .business-mv {
    height: 70vw;
    min-height: 320px;
    border-radius: 0 0 25px 25px;
  }

  .business-intro {
    margin-top: 42px;
  }

  .business-section-heading {
    width: min(100%, 320px);
    height: 84px;
  }

  .business-section-heading__ja {
    font-size: var(--font-size-28);
  }

  .business-toc {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 34px;
    padding: 30px 24px;
    min-height: 0;
  }

  .business-toc__title {
    font-size: var(--font-size-50);
  }

  .business-toc__list a {
    grid-template-columns: 30px 1fr 30px;
    width: 100%;
    font-size: var(--font-size-16);
  }

  .business-service {
    padding-block: 60px 0;
  }

  .business-service__last {
    margin-bottom: 80px;
  }

  .business-service__title {
    padding-inline: 20px;
    max-width: 100%;
    font-size: var(--font-size-28);
    letter-spacing: .08em;
  }

  .business-service__title--long {
    font-size: var(--font-size-26);
    letter-spacing: 0;
  }

  .business-service__mv-image {
    height: 180px;
  }

  .business-service__mv-text,
  .business-service__mv-text--wide,
  .business-service__mv-text--product {
    width: 72%;
  }

  .business-service__body {
    margin-top: 34px;
    font-size: var(--font-size-15);
  }

  .business-service__body p:not(:last-child) {
    margin-bottom: 20px;
  }

  .business-clean__images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: none;
    min-height: auto;
    padding-inline: 20px;
  }

  .business-clean__body {
    order: 1;
    flex: 0 0 100%;
    margin-bottom: 24px;
  }

  .business-clean__image {
    order: 2;
    position: static;
    display: block;
    flex: 0 1 calc((100% - 28px) / 3);
    width: calc((100% - 28px) / 3);
    max-width: 120px;
    height: 150px;
    margin-left: 0;
    margin-top: 0;
    transform: none !important;
  }

  .business-free-school__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
    max-width: none;
    min-height: auto;
    padding-inline: 20px;
  }

  .business-free-school__body {
    order: 2;
    flex: 0 0 100%;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .business-free-school__image {
    order: 1;
    position: static;
    display: block;
    flex: 0 1 calc((100% - 14px) / 2);
    width: calc((100% - 14px) / 2);
    max-width: 160px;
    height: 180px;
    margin-left: 0;
    margin-top: 0;
    transform: none !important;
  }

  .business-before-after {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .business-before-after__item {
    padding: 26px 20px 30px;
    border-radius: 25px;
  }

  .business-before-after__label {
    grid-template-columns: 88px 60px 88px;
    gap: 8px;
    margin-bottom: 24px;
  }

  .business-before-after__label img {
    width: 60px;
  }

  .business-before-after__images {
    gap: 14px;
  }

  .business-license {
    margin-top: 34px;
  }

  .business-license__grid,
  .business-license--equipment .business-license__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .business-free-school__points {
    grid-template-columns: repeat(2, minmax(140px, 180px));
    gap: 20px;
    margin-top: 36px;
  }

  .business-free-school__points div {
    font-size: var(--font-size-14);
  }

  .business-free-school__lead {
    margin-top: 34px;
    font-size: var(--font-size-15);
  }

  .business-free-school__lead a,
  .business-free-school__button {
    margin-top: 28px;
  }

  .business-contact {
    padding-block: 90px 70px;
  }

  .top-news + .business-contact {
    padding-top: 120px;
  }

  .business-contact__inner {
    padding: 0 20px 50px;
    background-size: 200px 200px;
    border-radius: 25px;
  }

  .business-contact__head {
    translate: 0 -40px;
    width: min(100%, 320px);
    min-height: 82px;
  }

  .business-contact__title {
    font-size: var(--font-size-20);
  }

  .business-contact__form {
    margin-top: 2px;
  }

  .business-contact__row {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: none;
  }

  .business-contact__row > p,
  .business-contact__row > .wpcf7-form-control-wrap {
    width: 100%;
  }

  .business-contact__row:not(:first-child) {
    margin-top: 18px;
  }

  .business-contact__textarea {
    min-height: 220px;
  }

  .business-contact__form textarea {
    min-height: 220px;
  }

  .business-contact__radios {
    gap: 9px;
  }

  .business-contact__radios .wpcf7-form-control-wrap,
  .business-contact__radios .wpcf7-radio {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .business-contact__privacy {
    margin-block: 36px;
  }

  .business-contact__privacy-box {
    height: 180px;
    padding: 18px;
    font-size: var(--font-size-14);
  }

  .business-contact__agree {
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-14);
    text-align: center;
  }

  .business-contact__submit {
    margin-top: 40px;
    min-height: 64px;
    font-size: var(--font-size-18);
  }

  .business-contact__confirm-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 16px;
  }

  .business-contact__confirm-buttons {
    flex-direction: column-reverse;
    margin-top: 48px;
  }

  .business-contact__back,
  .business-contact__submit {
    width: min(100%, 320px);
  }

  .footer {
    margin-top: 60px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__nav-list {
    align-items: center;
  }

  .footer__instagram {
    margin-top: 0;
  }

  .footer__brand {
    align-items: center;
    margin-top: 0;
  }

  .footer__logo {
    width: 280px;
  }
}

@media not all and (min-width: 350px){
  .top-business__more {
    padding-inline: 18px;
  }

  .top-business__more-link {
    gap: 8px;
    height: 64px;
    padding-inline: 18px;
  }

  .top-business__more-arrow {
    width: 38px;
  }

  .top-business__more-ja {
    font-size: var(--font-size-16);
  }

  .top-business__more-en {
    font-size: var(--font-size-13);
  }
}
