@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@700&family=Noto+Sans+JP:wght@500;700&display=swap");

/* アニメーション ========== */
/* IntersectionObserver ===== */
.AnimationBlurIn {
  opacity: 0;
  filter: blur(20px);
  transition: 0.8s opacity, 0.8s filter;
}

.AnimationBlurIn.IntersectionObserver--active {
  opacity: 1;
  filter: blur(0);
}

.AnimationScaleIn {
  opacity: 0;
  transform: scale(0.6);
  transition: 0.8s opacity, 0.8s transform;
  transform-origin: bottom center;
}

.AnimationScaleIn.IntersectionObserver--active {
  opacity: 1;
  transform: scale(1);
}

.AnimationSlideTopIn {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s opacity, 0.8s transform;
}

.AnimationSlideTopIn.IntersectionObserver--active {
  opacity: 1;
  transform: translateY(0);
}

/* 共通 ========== */
/* リセット */
* {
  box-sizing: border-box;
}

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

html {
  width: 100%;
  height: 100%;
  line-height: 1;
  background: #fff;
  color: #333;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 1.6;
  overflow-y: auto;
  -webkit-text-size-adjust: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  -webkit-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic", YuGothic, YuGothicMedium, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}

body.Body--fixed {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
}

article,
aside,
details,
figcaption,
include,
footer,
header,
hgroup,
main,
nav,
section,
summary,
figure {
  display: block;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
p,
blockquote,
ul,
ol,
li {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  -webkit-overflow-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-word-wrap: break-word;
  word-wrap: break-word;
  font-size: 1rem;
}

ul,
ol {
  list-style: none;
}

figcaption,
span {
  -webkit-overflow-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-word-wrap: break-word;
  word-wrap: break-word;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s color, 0.3s opacity, 0.3s background-color, 0.3s border-color;
}

a:link,
a:visited {
  color: #333;
  text-decoration: none;
}

@media (hover: hover) {

  a:hover,
  a:active {
    color: #333;
    text-decoration: none;
  }
}

button {
  cursor: pointer;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic", YuGothic, YuGothicMedium, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

abbr[title] {
  border-bottom: 1px dotted;
}

i,
em,
address {
  font-style: normal;
}

b,
strong,
em {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #fff;
  color: #000;
}

small {
  font-size: 100%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic", YuGothic, YuGothicMedium, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 0.625rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@media screen and (min-width: 576px),
print {
  body {
    font-size: 1rem;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  dl,
  dt,
  dd,
  p,
  blockquote,
  ul,
  ol,
  li {
    font-size: 1rem;
  }

  p {
    font-size: 1rem;
  }
}

/* サイト内共通 ========== */
/* clearfix */
.Clearfix {
  display: block;
}

.Clearfix:before,
.Clearfix:after {
  content: "";
  display: block;
}

.Clearfix:after {
  clear: both;
}

/* obj */
.Obj--sm:not(:root) {
  display: none;
}

.Obj--md:not(:root) {
  display: none;
}

.Obj--lg:not(:root) {
  display: none;
}

.Obj--xl:not(:root) {
  display: none;
}

.Obj--xs:not(:root) {
  display: block;
}

@media screen and (min-width: 321px),
print {
  .Obj--xs:not(:root) {
    display: none;
  }

  .Obj--sm:not(:root) {
    display: block;
  }
}

@media screen and (min-width: 576px),
print {
  .Obj--sm:not(:root) {
    display: none;
  }

  .Obj--md:not(:root) {
    display: block;
  }
}

@media screen and (min-width: 768px),
print {
  .Obj--md:not(:root) {
    display: none;
  }

  .Obj--lg:not(:root) {
    display: block;
  }
}

@media screen and (min-width: 992px),
print {
  .Obj--lg:not(:root) {
    display: none;
  }

  .Obj--xl:not(:root) {
    display: block;
  }
}

/* fonts */
.Lang--en:not(:root) {
  font-family: "Lexend", "游ゴシック Medium", "Yu Gothic", YuGothic, YuGothicMedium, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
}

.LayoutMain {
  padding-top: 103px;
}

.LayoutWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  min-height: 100vh;
  position: relative;
}

.LayoutInner {
  margin: 0 auto;
  padding: 0 4vw;
  width: 100%;
  max-width: 1860px;
}

@media screen and (min-width: 576px),
print {
  .LayoutInner {
    padding: 0 4.6vw;
  }
}

@media screen and (min-width: 768px),
print {
  .LayoutInner {
    padding: 0 40px;
  }
}

.LayoutSection {
  padding: 24px 0;
}

@media screen and (min-width: 576px),
print {
  .LayoutSection {
    padding: 32px 0;
  }
}

@media screen and (min-width: 768px),
print {
  .LayoutSection {
    padding: 40px 0;
  }
}

.LayoutFooter {
  position: relative;
  z-index: 8000;
  margin-top: auto;
  padding-top: 46px;
  background-image: url("../img/img-footer-background.svg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 576px),
print {
  .LayoutFooter {
    padding-top: 72px;
  }
}

.FooterContentsLogo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.FooterContentsLogo__link:not(:root) {
  display: block;
}

@media (hover: hover) {
  .FooterContentsLogo__link:not(:root):hover {
    opacity: 0.6;
  }
}

.FooterContentsLogoImage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.FooterContentsLogoImage__text {
  display: block;
  margin-top: 24px;
  font-size: 0.875rem;
  font-weight: 700;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsLogoImage__text {
    font-size: 1.125rem;
  }
}

.FooterContentsLogoImage__image {
  width: 78px;
  height: auto;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsLogoImage__image {
    width: 130px;
  }
}

.FooterContentsAddress {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 24px;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsAddress {
    margin-top: 48px;
  }
}

.FooterContentsAddress__paragraph {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsAddress__paragraph {
    font-size: 1.125rem;
  }
}

.FooterContentsAddress__text {
  display: block;
}

.FooterContentsAddressTel {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.FooterContentsAddressTel__link:not(:root) {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  color: #333;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsAddressTel__link:not(:root) {
    font-size: 1.125rem;
  }
}

@media (hover: hover) {
  .FooterContentsAddressTel__link:not(:root):hover {
    color: #8dc21f;
  }

  .FooterContentsAddressTel__link:not(:root):hover .FooterContentsAddressTel__icon:not(:root) {
    background-color: #8dc21f;
  }
}

.FooterContentsAddressTel__icon:not(:root) {
  width: 10px;
  height: 13px;
  flex-shrink: 0;
  margin-right: 4px;
  background-color: #333;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsAddressTel__icon:not(:root) {
    width: 13px;
    height: 17px;
  }
}

.FooterContentsAddressTel__text {
  display: block;
}

.FooterContentsHealthAndProductivity {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsHealthAndProductivity {
    margin-top: 48px;
  }
}

.FooterContentsHealthAndProductivity__image {
  width: 169px;
  height: auto;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsHealthAndProductivity__image {
    width: 285px;
  }
}

.FooterContentsContact {
  margin-top: 40px;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsContact {
    margin-top: 56px;
  }
}

.FooterContentsContact__title {
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsContact__title {
    font-size: 1rem;
  }
}

.FooterContentsContact__contents {
  margin-top: 24px;
  overflow: hidden;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsContact__contents {
    margin-top: 32px;
  }
}

.FooterContentsContact__items {
  display: flex;
  flex-wrap: wrap;
  margin: -24px 0 0 -24px;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsContact__items {
    justify-content: center;
    margin: -40px 0 0 -40px;
  }
}

.FooterContentsContact__item {
  width: 100%;
  padding: 24px 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsContact__item {
    width: auto;
    padding: 40px 0 0 40px;
  }
}

.FooterContentsContact__link.FooterContentsContact__link--tel:not(:root) {
  padding-left: 40px;
  padding-right: 40px;
}

@media (hover: hover) {
  .FooterContentsContact__link.FooterContentsContact__link--tel:not(:root):hover .FooterContentsContact__icon:not(:root) {
    background-color: #fff;
  }
}

@media screen and (min-width: 576px),
print {
  .FooterContentsContact__link.FooterContentsContact__link--tel:not(:root) {
    font-size: 1.875rem;
    border: none;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    color: #8dc21f;
  }
}

@media screen and (min-width: 576px) and (hover: hover),
print and (hover: hover) {
  .FooterContentsContact__link.FooterContentsContact__link--tel:not(:root):hover {
    background-color: transparent;
    color: #1eaa39;
  }

  .FooterContentsContact__link.FooterContentsContact__link--tel:not(:root):hover .FooterContentsContact__icon:not(:root) {
    background-color: #1eaa39;
  }
}

.FooterContentsContact__link.FooterContentsContact__link--support:not(:root) {
  font-size: 0.625rem;
}

@media (hover: hover) {
  .FooterContentsContact__link.FooterContentsContact__link--support:not(:root):hover .FooterContentsContact__icon:not(:root) {
    background-color: #8dc21f;
  }
}

@media screen and (min-width: 576px),
print {
  .FooterContentsContact__link.FooterContentsContact__link--support:not(:root) {
    font-size: 1.125rem;
  }
}

.FooterContentsContact__icon--tel:not(:root) {
  width: 16px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 4px;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsContact__icon--tel:not(:root) {
    width: 20px;
    height: 26px;
    margin-right: 8px;
  }
}

.FooterContentsContact__icon--operator:not(:root) {
  width: 14px;
  height: 19px;
  flex-shrink: 0;
  margin-right: 8px;
}

@media screen and (min-width: 576px),
print {
  .FooterContentsContact__icon--operator:not(:root) {
    width: 32px;
    height: 41px;
  }
}

.FooterNavigation {
  margin-top: 24px;
}

@media screen and (min-width: 576px),
print {
  .FooterNavigation {
    margin-top: 36px;
  }
}

.FooterNavigation__items {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 576px),
print {
  .FooterNavigation__items {
    justify-content: center;
  }
}

.FooterNavigation__item {
  width: 50%;
}

@media screen and (min-width: 576px),
print {
  .FooterNavigation__item {
    width: auto;
  }
}

.FooterNavigation__link:not(:root) {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  color: #1eaa39;
  padding: 12px;
  height: 100%;
}

@media (hover: hover) {
  .FooterNavigation__link:not(:root):hover {
    color: #8dc21f;
  }
}

@media screen and (min-width: 576px),
print {
  .FooterNavigation__link:not(:root) {
    font-size: 1.25rem;
    padding: 12px 32px;
  }
}

.Footer__copy {
  margin-top: 8px;
  padding: 100px 0 24px ;
}

@media screen and (min-width: 576px),
print {
  .Footer__copy {
    margin-top: 0;
    padding: 40px 0 170px;
  }
}

@media screen and (min-width: 1400px),
print {
  .Footer__copy {
    margin-top: 0;
    padding: 40px 0;
  }
}

.FooterCopy__paragraph {
  font-size: 0.625rem;
  color: #8dc21f;
  text-align: center;
}

@media screen and (min-width: 576px),
print {
  .FooterCopy__paragraph {
    font-size: 1.125rem;
  }
}

.FooterContents {
  position: relative;
}

.FooterShareList {
  display: none;
}

@media screen and (min-width: 576px),
print {
  .FooterShareList {
    display: block;
    position: absolute;
    top: 24px;
    left: 0;
  }
}

.FooterBackToTop {
  /* display: none; */
  position: fixed;
  z-index: 8100;
  bottom: 20px;
  right: 20px;
}

.FooterBackToTop__button:not(:root):after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background-color: #f5ee6c;
  transition: 0.3s background-color;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  margin-left: -49.5px;

}

@media screen and (min-width: 768px),
print {
  .FooterBackToTop {
    display: block;
    position: fixed;
    z-index: 8100;
    bottom: 40px;
    right: 40px;
  }
}

.FooterBackToTop__button:not(:root) {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #1eaa39;
  padding: 0 0 18px;
  min-width: 100px;
}


@media (hover: hover) {
  .FooterBackToTop__button:not(:root):hover {
    color: #f5ee6c;
  }

  .FooterBackToTop__button:not(:root):hover:after {
    background-color: #1eaa39;
  }
}

.FooterBackToTop__image {
  position: relative;
  z-index: 2;
  width: auto;
  height: 57.5px;
}

.FooterBackToTop__text {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

.LayoutHeader {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (min-width: 768px),
print {
  
.FooterBackToTop__text {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 12px;
}
  .FooterBackToTop__button:not(:root){
  
    min-width: 170px;
  }
.FooterBackToTop__button:not(:root):after {
  content: "";
  display: block;
  width: 170px;
  height: 170px;
  border-radius: 170px;
  background-color: #f5ee6c;
  transition: 0.3s background-color;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  margin-left: -85px;
}

.FooterBackToTop__image {
  position: relative;
  z-index: 2;
  width: auto;
  height: 115px;
}

  .LayoutHeader {
    background-color: #fff;
  }
}

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

@media screen and (min-width: 768px),
print {
  .HeaderLogo {
    flex-shrink: 0;
    margin-right: 24px;
  }
}

.HeaderLogoLink__anchor:not(:root) {
  display: block;
  padding: 20px 0;
}

@media (hover: hover) {
  .HeaderLogoLink__anchor:not(:root):hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 576px),
print {
  .HeaderLogoLink__anchor:not(:root) {
    padding: 32px 0;
  }
}

.HeaderLogoLink__image {
  width: 78px;
  height: auto;
}

@media screen and (min-width: 576px),
print {
  .HeaderLogoLink__image {
    width: 130px;
  }
}

@media screen and (min-width: 768px),
print {
  .HeaderMenu {
    margin-left: auto;
  }
}

.HeaderMenuButton {
  position: fixed;
  top: 20px;
  right: 4vw;
  z-index: 10300;
}

@media screen and (min-width: 576px),
print {
  .HeaderMenuButton {
    top: 32px;
    right: 4.6vw;
  }
}

.HeaderMenuButton__button:not(:root) {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  border: 1px solid #8dc21f;
  background-color: #8dc21f;
  padding: 0;
  width: 40px;
  height: 40px;
  transition: 0.3s background-color;
}

@media (hover: hover) {
  .HeaderMenuButton__button:not(:root):hover {
    background-color: #fff;
  }

  .HeaderMenuButton__button:not(:root):hover .HeaderMenuButton__icon {
    background-color: #8dc21f;
  }
}

.HeaderMenuButton__button.IsActive:not(:root) .HeaderMenuButton__icons > .HeaderMenuButton__icon:nth-of-type(1) {
  top: 6px;
  transform: rotate(-45deg);
}

.HeaderMenuButton__button.IsActive:not(:root) .HeaderMenuButton__icons > .HeaderMenuButton__icon:nth-of-type(2) {
  opacity: 0;
}

.HeaderMenuButton__button.IsActive:not(:root) .HeaderMenuButton__icons > .HeaderMenuButton__icon:nth-of-type(3) {
  bottom: 6px;
  transform: rotate(45deg);
}

.HeaderMenuButton__container {
  display: block;
}

.HeaderMenuButton__icons {
  display: block;
  position: relative;
  width: 18px;
  height: 14px;
  margin: 0 auto;
}

.HeaderMenuButton__icons > .HeaderMenuButton__icon:nth-of-type(1) {
  top: 0;
}

.HeaderMenuButton__icons > .HeaderMenuButton__icon:nth-of-type(2) {
  top: 50%;
  margin-top: -1px;
}

.HeaderMenuButton__icons > .HeaderMenuButton__icon:nth-of-type(3) {
  bottom: 0;
}

.HeaderMenuButton__icon {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  transition: 0.3s all;
  overflow: hidden;
  background-color: #fff;
  border-radius: 18px;
}

.HeaderGlobalMenu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 0 40px;
  z-index: 10200;
}

.HeaderGlobalMenu.IsActive {
  display: block;
}

@media screen and (min-width: 768px),
print {
  .HeaderGlobalMenu {
    display: flex;
    align-items: center;
    position: static;
    overflow: visible;
    padding: 0;
  }
}

.HeaderGlobalMenu__container {
  position: relative;
  padding: 0 0 78px;
  background-image: url("../img/img-header-menu-background.svg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px),
print {
  .HeaderGlobalMenu__container {
    background-image: none;
    padding: 0;
    display: flex;
    align-items: center;
  }
}

.HeaderGlobalMenuNavigation {
  padding: 64px 4vw 16px;
}

@media screen and (min-width: 576px),
print {
  .HeaderGlobalMenuNavigation {
    padding-left: 4.6vw;
    padding-right: 4.6vw;
  }
}

@media screen and (min-width: 768px),
print {
  .HeaderGlobalMenuNavigation {
    padding: 0;
  }
}

@media screen and (min-width: 768px),
print {
  .HeaderGlobalMenuNavigation__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

.HeaderGlobalMenuNavigation__link:not(:root) {
  display: block;
  text-align: center;
  padding: 16px 0;
  color: #fff;
  font-size: 1rem;
}

@media (hover: hover) {
  .HeaderGlobalMenuNavigation__link:not(:root):hover {
    color: #8dc21f;
  }
}

@media screen and (min-width: 768px),
print {
  .HeaderGlobalMenuNavigation__link:not(:root) {
    color: #1eaa39;
    padding: 8px 4px;
  }
}

@media screen and (min-width: 992px),
print {
  .HeaderGlobalMenuNavigation__link:not(:root) {
    padding: 8px 16px;
  }
}

@media screen and (min-width: 1200px),
print {
  .HeaderGlobalMenuNavigation__link:not(:root) {
    padding: 8px 24px;
  }
}

@media screen and (min-width: 1400px),
print {
  .HeaderGlobalMenuNavigation__link:not(:root) {
    padding: 8px 32px;
  }
}

.HeaderMenu__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10100;
  background-color: transparent;
}

.HeaderMenu__overlay.IsActive {
  display: block;
}

.HeaderSupport {
  flex-shrink: 0;
  margin-left: 32px;
}

@media (hover: hover) {
  .HeaderSupport__button:not(:root):hover .HeaderSupport__icon {
    background-color: #8dc21f;
  }
}

.HeaderSupport__icon {
  flex-shrink: 0;
  margin-right: 8px;
}

.BaseButton:not(:root) {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #8dc21f;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  background-color: #8dc21f;
  padding: 6px 18px;
  width: auto;
  min-width: 182px;
  border-radius: 182px;
  position: relative;
  transition: 0.3s color, 0.3s background-color, 0.3s border-color;
}

@media (hover: hover) {
  .BaseButton:not(:root):hover {
    color: #8dc21f;
    background-color: #fff;
  }
}

.BaseButton--outlined:not(:root) {
  background-color: transparent;
  color: #8dc21f;
}

@media (hover: hover) {
  .BaseButton--outlined:not(:root):hover {
    color: #fff;
    background-color: #8dc21f;
  }
}

.BaseButton--outlined.BaseButton--primary:not(:root) {
  color: #1eaa39;
  border-color: #1eaa39;
}

@media (hover: hover) {
  .BaseButton--outlined.BaseButton--primary:not(:root):hover {
    color: #fff;
    background-color: #1eaa39;
  }
}

.BaseButton--outlined.BaseButton--light:not(:root) {
  color: #fff;
  border-color: #fff;
}

@media (hover: hover) {
  .BaseButton--outlined.BaseButton--light:not(:root):hover {
    color: #fff;
    background-color: #8dc21f;
    border-color: #8dc21f;
  }
}

.BaseButton__text {
  display: block;
}

.BaseButton--small:not(:root) {
  font-size: 0.75rem;
}

@media screen and (min-width: 576px),
print {
  .BaseButton--small:not(:root) {
    font-size: 1.375rem;
    padding: 26px 18px;
  }
}

.BaseButton--large:not(:root) {
  font-size: 1.375rem;
  padding: 26px 18px;
}

.IconArrowRight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.IconArrowRight:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-left: 2px solid #1eaa39;
  border-bottom: 2px solid #1eaa39;
  transform: rotate(225deg);
  transition: 0.3s border-color, 0.3s transform;
}

.IconInstagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("../img/icon-instagram.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/icon-instagram.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #fff;
  transition: 0.3s background-color;
}

.IconOperator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 41px;
  -webkit-mask-image: url("../img/icon-operator.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/icon-operator.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #fff;
  transition: 0.3s background-color;
}

.Icondownload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 30px;
  -webkit-mask-image: url("../img/icon-download.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/download.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #fff;
  transition: 0.3s background-color;
  margin-left:8px;
}

.IconTel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 26px;
  -webkit-mask-image: url("../img/icon-tel.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/icon-tel.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #8dc21f;
  transition: 0.3s background-color;
}

.IconTwitter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 15px;
  -webkit-mask-image: url("../img/icon-twitter.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../img/icon-twitter.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #fff;
  transition: 0.3s background-color;
}

.NewsList__items > .NewsList__item:first-of-type {
  margin-top: 0;
}

.NewsList__item {
  margin-top: 8px;
}

@media screen and (min-width: 576px),
print {
  .NewsList__item {
    margin-top: 16px;
  }
}

.NewsList__link:not(:root) {
  display: block;
  position: relative;
  background-color: #fffcd2;
  padding: 24px 48px 24px 32px;
  font-size: 0.75rem;
  border-radius: 1000px;
}

@media (hover: hover) {
  .NewsList__link:not(:root):hover {
    background-color: #1eaa39;
    color: #fff;
  }

  .NewsList__link:not(:root):hover .NewsListInfo__date {
    color: #fff;
  }

  .NewsList__link:not(:root):hover .NewsListIcon:before {
    border-color: #fff;
  }
}

@media screen and (min-width: 576px),
print {
  .NewsList__link:not(:root) {
    font-size: 1.125rem;
    padding: 32px 80px 32px 40px;
  }
}

@media screen and (min-width: 768px),
print {
  .NewsList__link:not(:root) {
    display: flex;
    align-items: center;
  }
}

.NewsListInfo {
  display: block;
}

.NewsListInfo__date {
  display: block;
  color: #1eaa39;
  transition: 0.3s color;
}

@media screen and (min-width: 576px),
print {
  .NewsListInfo__date {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px),
print {
  .NewsListInfo__date {
    flex-shrink: 0;
    margin-right: 32px;
  }
}

.NewsListTitle {
  display: block;
  margin-top: 6px;
}

@media screen and (min-width: 768px),
print {
  .NewsListTitle {
    margin-top: 0;
  }
}

.NewsListTitle__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (min-width: 768px),
print {
  .NewsListTitle__text {
    -webkit-line-clamp: 1;
  }
}

.NewsListIcon {
  position: absolute;
  top: 50%;
  margin-top: -9px;
  right: 16px;
}

.ShareList {
  overflow: hidden;
}

.ShareList__items {
  display: flex;
  flex-wrap: wrap;
  margin: -8px 0 0 -8px;
}

@media screen and (min-width: 576px),
print {
  .ShareList__items {
    margin: -24px 0 0 -24px;
  }
}

.ShareList__item {
  padding: 8px 0 0 8px;
}

@media screen and (min-width: 576px),
print {
  .ShareList__item {
    padding: 24px 0 0 24px;
  }
}

.ShareList__link:not(:root) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  font-size: 0.625rem;
  padding: 0;
  color: #fff;
  width: 30px;
  height: 30px;
  background-color: #8dc21f;
  border-radius: 60px;
}

@media (hover: hover) {
  .ShareList__link:not(:root):hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 576px),
print {
  .ShareList__link:not(:root) {
    width: 60px;
    height: 60px;
  }
}

@media screen and (min-width: 576px),
print {
  .ShareList__link--instagram .ShareList__icon {
    width: 36px;
    height: 36px;
  }
}

@media screen and (min-width: 576px),
print {
  .ShareList__link--twitter .ShareList__icon {
    width: 38px;
    height: 31px;
  }
}

.SectionTitle__text {
  font-size: 2.25rem;
  color: #8dc21f;
  font-weight: 700;
}

@media screen and (min-width: 576px),
print {
  .SectionTitle__text {
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 768px),
print {
  .SectionTitle__text {
    font-size: 5rem;
  }
}

@media screen and (min-width: 992px),
print {
  .SectionTitle__text {
    font-size: 7.25rem;
  }
}

@media screen and (min-width: 1200px),
print {
  .SectionTitle__text {
    font-size: 8.75rem;
  }
}

.SectionTitle--textCenter {
  text-align: center;
}

.ContentsTitle__text {
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (min-width: 576px),
print {
  .ContentsTitle__text {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px),
print {
  .ContentsTitle__text {
    font-size: 2rem;
  }
}

@media screen and (min-width: 992px),
print {
  .ContentsTitle__text {
    font-size: 2.8125rem;
  }
}

.ContentsTitle--light {
  color: #fff;
}

.TopMainVisual {
  padding: 40px 0;
  background-image: url("../img/img-main-visual-background.svg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 576px),
print {
  .TopMainVisual {
    padding: 120px 0 40px;
  }
}

.TopMainVisual__container {
  position: relative;
}

.TopMainVisualTitle__text {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s opacity, 0.3s transform;
  opacity: 0;
  transform: translateY(40px);
}

.TopMainVisualTitle__text.IntersectionObserver--active {
  opacity: 1;
  transform: translateY(0);
}

.TopMainVisualTitle__image {
  width: 80%;
  max-width: 272px;
  height: auto;
}

@media screen and (min-width: 576px),
print {
  .TopMainVisualTitle__image {
    max-width: 641px;
  }
}

.TopMainVisualImage {
  max-width: 766px;
  margin: 80px auto 0;
}

.TopMainVisualImage__items {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.119;
}

.TopMainVisualImage__item {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
}

.TopMainVisualImage__image {
  position: absolute;
  overflow: hidden;
}

.TopMainVisualImage__item--1 {
  top: 0;
  height: 25%;
}

.TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--1 {
  opacity: 1;
  transform: translate(-50%, 0);
}

.TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--2 {
  opacity: 1;
  transform: scale(1);
}

.TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--3 {
  opacity: 1;
  transform: scale(1);
}

.TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--4 {
  opacity: 1;
  transform: translate(0, 0);
}

.TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--5 {
  opacity: 1;
  transform: translate(0, 0);
}

.TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--6 {
  opacity: 1;
  transform: translate(0, 0);
}

.TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--7 {
  opacity: 1;
  transform: translate(-50%, 0);
}

.TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--8 {
  opacity: 1;
  transform: scale(1);
}

.TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--9 {
  opacity: 1;
  transform: scale(1);
}

.TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--10 {
  opacity: 1;
  transform: scale(1);
}

.TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--65 {
  opacity: 1;
  transform: translateY(0);
  animation: animation-top-main-visual-image-65-xs 8s infinite;
}

@media screen and (min-width: 576px),
print {
  .TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--65 {
    animation: animation-top-main-visual-image-65-sm 8s infinite;
  }
}

@media screen and (min-width: 768px),
print {
  .TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--65 {
    animation: animation-top-main-visual-image-65-md 10s infinite;
  }
}

@media screen and (min-width: 992px),
print {
  .TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--65 {
    animation: animation-top-main-visual-image-65-lg 12s infinite;
  }
}

@media screen and (min-width: 1200px),
print {
  .TopMainVisualImage__item--1.IntersectionObserver--active .TopMainVisualImage__image--65 {
    animation: animation-top-main-visual-image-65-xl 12s infinite;
  }
}

.TopMainVisualImage__image--1 {
  width: 43%;
  left: 50%;
  transform: translate(-50%, 40px);
  top: 23%;
  z-index: 13;
  opacity: 0;
  transition: 0.3s opacity, 0.3s transform;
}

.TopMainVisualImage__image--4 {
  top: 23.4%;
  width: 21.4%;
  left: 28.5%;
  z-index: 1;
  transform: translate(40px, 40px);
  opacity: 0;
  transition: 0.3s opacity 0.1s, 0.3s transform 0.1s;
}

.TopMainVisualImage__image--5 {
  top: 23.4%;
  width: 21.4%;
  left: 50%;
  z-index: 2;
  transform: translate(40px, 40px);
  opacity: 0;
  transition: 0.3s opacity 0.2s, 0.3s transform 0.2s;
}

.TopMainVisualImage__image--7 {
  top: 76%;
  width: 43%;
  left: 50%;
  transform: translate(-50%, 40px);
  z-index: 8;
  opacity: 0;
  transition: 0.3s opacity 0.3s, 0.3s transform 0.3s;
}

.TopMainVisualImage__image--6 {
  top: 74%;
  width: 9%;
  left: 43%;
  z-index: 10;
  transform: translate(40px, 40px);
  opacity: 0;
  transition: 0.3s opacity 0.4s, 0.3s transform 0.4s;
}

.TopMainVisualImage__image--2 {
  top: 22%;
  width: 28%;
  left: 38%;
  z-index: 15;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.5s, 0.3s transform 0.5s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--3 {
  top: -12%;
  width: 15%;
  left: 27%;
  z-index: 14;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.6s, 0.3s transform 0.6s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--3 .TopMainVisualImage__imageSlide {
  width: 2000%;
  max-width: none;
}

.TopMainVisualImage__image--8 {
  top: 91%;
  width: 13%;
  left: 30%;
  z-index: 9;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.7s, 0.3s transform 0.7s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--8 .TopMainVisualImage__imageSlide {
  width: 2000%;
  max-width: none;
}

.TopMainVisualImage__image--9 {
  top: 105%;
  width: 12%;
  left: 46%;
  z-index: 12;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.8s, 0.3s transform 0.8s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--9 .TopMainVisualImage__imageSlide {
  width: 2000%;
  max-width: none;
}

.TopMainVisualImage__image--10 {
  top: 77%;
  width: 14%;
  left: 55%;
  z-index: 11;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.9s, 0.3s transform 0.9s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--65 {
  top: -40%;
  width: 14%;
  left: 0;
  z-index: 67;
  transform: translateY(-40px);
  opacity: 0;
  transition: 0.3s opacity 1s, 0.3s transform 1s;
  transform-origin: bottom center;
}

@media screen and (min-width: 576px),
print {
  .TopMainVisualImage__image--65 {
    top: -10%;
    left: 0;
  }
}

@media screen and (min-width: 768px),
print {
  .TopMainVisualImage__image--65 {
    top: -10%;
    left: -2%;
  }
}

@media screen and (min-width: 992px),
print {
  .TopMainVisualImage__image--65 {
    top: -10%;
    left: -10%;
  }
}

@media screen and (min-width: 1200px),
print {
  .TopMainVisualImage__image--65 {
    top: -10%;
    left: -20%;
  }
}

@keyframes animation-top-main-visual-image-65-xs {
  0% {
    top: -40%;
  }

  50% {
    top: 40%;
  }

  100% {
    top: -40%;
  }
}

@keyframes animation-top-main-visual-image-65-sm {
  0% {
    top: -10%;
  }

  50% {
    top: 40%;
  }

  100% {
    top: -10%;
  }
}

@keyframes animation-top-main-visual-image-65-md {
  0% {
    top: -10%;
  }

  50% {
    top: 50%;
  }

  100% {
    top: -10%;
  }
}

@keyframes animation-top-main-visual-image-65-lg {
  0% {
    top: -10%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: -10%;
  }
}

@keyframes animation-top-main-visual-image-65-xl {
  0% {
    top: -10%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: -10%;
  }
}

.TopMainVisualImage__item--2 {
  top: 25%;
  height: 25%;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--11 {
  opacity: 1;
  transform: translate(0, 0);
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--12 {
  opacity: 1;
  transform: translate(-50%, 0);
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--13 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--14 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--15 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--16 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--17 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--18 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--19 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--20 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--21 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--22 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--23 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--24 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--42 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--48 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--49 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--50 {
  transform: scale(1);
  opacity: 1;
  animation: animation-top-main-visual-image-50 6s 3s infinite;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--51 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--2.IntersectionObserver--active .TopMainVisualImage__image--64 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__image--42 {
  top: 80%;
  width: 43%;
  left: 7%;
  z-index: 54;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s opacity, 0.3s transform;
}

.TopMainVisualImage__image--12 {
  top: 37%;
  width: 43%;
  left: 50%;
  transform: translate(-50%, 40px);
  z-index: 3;
  opacity: 0;
  transition: 0.3s opacity 0.1s, 0.3s transform 0.1s;
}

.TopMainVisualImage__image--11 {
  top: 9%;
  width: 20%;
  left: 43%;
  z-index: 5;
  transform: translate(40px, 40px);
  opacity: 0;
  transition: 0.3s opacity 0.2s, 0.3s transform 0.2s;
}

.TopMainVisualImage__image--16 {
  top: 81%;
  width: 43%;
  left: 49.7%;
  z-index: 32;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s opacity 0.3s, 0.3s transform 0.3s;
}

.TopMainVisualImage__image--18 {
  top: 114%;
  width: 43%;
  left: 50%;
  z-index: 40;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s opacity 0.4s, 0.3s transform 0.4s;
}

.TopMainVisualImage__image--17 {
  top: 40%;
  width: 34%;
  left: 65.1%;
  z-index: 33;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s opacity 0.5s, 0.3s transform 0.5s;
}

.TopMainVisualImage__image--48 {
  top: -9%;
  width: 21%;
  left: 3%;
  z-index: 55;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.6s, 0.3s transform 0.6s;
  transform-origin: top center;
}

.TopMainVisualImage__image--48 .TopMainVisualImage__imageSlide {
  width: 4000%;
  max-width: none;
}

.TopMainVisualImage__image--50 {
  top: 17%;
  width: 42%;
  left: -5%;
  z-index: 57;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.7s, 0.3s transform 0.7s;
  transform-origin: bottom center;
}

@keyframes animation-top-main-visual-image-50 {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.1;
  }

  100% {
    opacity: 1;
  }
}

.TopMainVisualImage__image--49 {
  top: 66%;
  width: 15%;
  left: 12%;
  z-index: 56;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.8s, 0.3s transform 0.8s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--51 {
  top: 66%;
  width: 9%;
  left: 27.5%;
  z-index: 58;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.9s, 0.3s transform 0.9s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--64 {
  top: 93%;
  width: 29%;
  left: 18%;
  z-index: 59;
  transform: translateY(-40px);
  opacity: 0;
  transition: 0.3s opacity 1s, 0.3s transform 1s ease-out;
}

.TopMainVisualImage__image--13 {
  top: 25%;
  width: 14%;
  left: 30%;
  z-index: 4;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.1s, 0.3s transform 1.1s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--14 {
  top: 73%;
  width: 12%;
  left: 43%;
  z-index: 7;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.2s, 0.3s transform 1.2s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--15 {
  top: 44%;
  width: 13%;
  left: 55%;
  z-index: 6;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.4s, 0.3s transform 1.4s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--15 .TopMainVisualImage__imageSlide {
  width: 5000%;
  max-width: none;
}

.TopMainVisualImage__image--19 {
  top: 98%;
  width: 16%;
  left: 50%;
  z-index: 37;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.5s, 0.3s transform 1.5s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--20 {
  top: 46%;
  width: 19%;
  left: 66%;
  z-index: 35;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.6s, 0.3s transform 1.6s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--21 {
  top: 30%;
  width: 17%;
  left: 76%;
  z-index: 34;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.7s, 0.3s transform 1.7s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--21 .TopMainVisualImage__imageSlide {
  width: 2000%;
  max-width: none;
}

.TopMainVisualImage__image--22 {
  top: 107%;
  width: 20%;
  left: 64%;
  z-index: 38;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.8s, 0.3s transform 1.8s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--23 {
  top: 89%;
  width: 16%;
  left: 58%;
  z-index: 36;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.9s, 0.3s transform 1.9s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--24 {
  top: 99%;
  width: 3.5%;
  left: 85%;
  z-index: 39;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 2s, 0.3s transform 2s;
  transform-origin: bottom center;
}

.TopMainVisualImage__item--3 {
  top: 50%;
  height: 25%;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--25 {
  transform: translate(0, 0);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--26 {
  transform: translate(0, 0);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--27 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--29 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--30 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--32 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--33 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--34 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--35 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--36 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--43 {
  transform: translate(0, 0);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--44 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--46 {
  transform: translate(0, 0);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--47 {
  transform: translate(0, 0);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--55 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--56 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--57 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--58 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--3.IntersectionObserver--active .TopMainVisualImage__image--59 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__image--43 {
  top: -8%;
  width: 21%;
  left: 8%;
  z-index: 43;
  transform: translate(40px, 40px);
  opacity: 0;
  transition: 0.3s opacity, 0.3s transform;
}

.TopMainVisualImage__image--46 {
  top: 26%;
  width: 23%;
  left: 27.5%;
  z-index: 48;
  transform: translate(40px, 40px);
  opacity: 0;
  transition: 0.3s opacity 0.1s, 0.3s transform 0.1s;
}

.TopMainVisualImage__image--47 {
  top: 31%;
  width: 27.6%;
  left: 1%;
  z-index: 49;
  transform: translate(40px, 40px);
  opacity: 0;
  transition: 0.3s opacity 0.2s, 0.3s transform 0.2s;
}

.TopMainVisualImage__image--55 {
  top: 24%;
  width: 23%;
  left: 29%;
  z-index: 66;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s opacity 0.3s, 0.3s transform 0.3s;
}

.TopMainVisualImage__image--55 .TopMainVisualImage__imageSlide {
  width: 5000%;
  max-width: none;
}

.TopMainVisualImage__image--56 {
  top: 97%;
  width: 15%;
  left: 29%;
  z-index: 65;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s opacity 0.4s, 0.3s transform 0.4s;
}

.TopMainVisualImage__image--44 {
  top: 45%;
  width: 42%;
  left: 8%;
  z-index: 47;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s opacity 0.5s, 0.3s transform 0.5s;
}

.TopMainVisualImage__image--25 {
  top: -19%;
  width: 21%;
  left: 50%;
  z-index: 16;
  transform: translate(40px, 40px);
  opacity: 0;
  transition: 0.3s opacity 0.6s, 0.3s transform 0.6s;
}

.TopMainVisualImage__image--26 {
  top: -17.3%;
  width: 27%;
  left: 72.1%;
  z-index: 17;
  transform: translate(40px, 40px);
  opacity: 0;
  transition: 0.3s opacity 0.7s, 0.3s transform 0.7s;
}

.TopMainVisualImage__image--27 {
  top: 34%;
  width: 43%;
  left: 50%;
  z-index: 25;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s opacity 0.8s, 0.3s transform 0.8s;
}

.TopMainVisualImage__image--57 {
  top: 40%;
  width: 8%;
  left: 10%;
  z-index: 51;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.9s, 0.3s transform 0.9s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--57 .TopMainVisualImage__imageSlide {
  width: 5000%;
  max-width: none;
}

.TopMainVisualImage__image--58 {
  top: 54%;
  width: 4%;
  left: 16%;
  z-index: 52;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1s, 0.3s transform 1s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--59 {
  top: 64%;
  width: 8%;
  left: 19%;
  z-index: 53;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.1s, 0.3s transform 1.1s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--59 .TopMainVisualImage__imageSlide {
  width: 2500%;
  max-width: none;
}

.TopMainVisualImage__image--29 {
  top: 30%;
  width: 6%;
  left: 52%;
  z-index: 30;
  transform: translateY(-40px);
  opacity: 0;
  transition: 0.3s opacity 1.2s, 0.3s transform 1.2s;
}

.TopMainVisualImage__image--30 {
  top: 31%;
  width: 10%;
  left: 75%;
  z-index: 31;
  transform: translateY(-40px);
  opacity: 0;
  transition: 0.3s opacity 1.3s, 0.3s transform 1.3s;
}

.TopMainVisualImage__image--32 {
  top: 60%;
  width: 9%;
  left: 53%;
  z-index: 28;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.4s, 0.3s transform 1.4s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--33 {
  top: 66%;
  width: 5%;
  left: 62%;
  z-index: 29;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.5s, 0.3s transform 1.5s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--34 {
  top: 41%;
  width: 13%;
  left: 60%;
  z-index: 26;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.6s, 0.3s transform 1.6s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--35 {
  top: 64%;
  width: 16%;
  left: 71%;
  z-index: 27;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.7s, 0.3s transform 1.7s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--36 {
  top: 39%;
  width: 7%;
  left: 85.5%;
  z-index: 41;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.8s, 0.3s transform 1.8s;
  transform-origin: bottom center;
}

.TopMainVisualImage__item--4 {
  top: 75%;
  height: 25%;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--28 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--31 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--37 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--38 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--39 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--40 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--41 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--45 {
  transform: translateY(0);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--52-1 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--52-2 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--52-3 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--53 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--54 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--60 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--61 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--62 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__item--4.IntersectionObserver--active .TopMainVisualImage__image--63 {
  transform: scale(1);
  opacity: 1;
}

.TopMainVisualImage__image--45 {
  top: 0%;
  width: 43%;
  left: 8%;
  z-index: 44;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s opacity, 0.3s transform;
}

.TopMainVisualImage__image--28 {
  top: -50%;
  width: 43%;
  left: 50%;
  z-index: 18;
  transform: translateY(40px);
  opacity: 0;
  transition: 0.3s opacity 0.1s, 0.3s transform 0.1s;
}

.TopMainVisualImage__image--31 {
  top: -23%;
  width: 20%;
  left: 52%;
  z-index: 22;
  transform: translateY(-40px);
  opacity: 0;
  transition: 0.3s opacity 0.2s, 0.3s transform 0.2s;
}

.TopMainVisualImage__image--52-1 {
  top: -10%;
  width: 5%;
  left: 48%;
  z-index: 60;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.3s, 0.3s transform 0.3s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--52-2 {
  top: 16%;
  width: 5%;
  left: 37.5%;
  z-index: 61;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.4s, 0.3s transform 0.4s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--52-3 {
  top: 30%;
  width: 5%;
  left: 32%;
  z-index: 62;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.5s, 0.3s transform 0.5s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--63 {
  top: 4%;
  width: 8%;
  left: 1%;
  z-index: 42;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.6s, 0.3s transform 0.6s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--60 {
  top: -32%;
  width: 15%;
  left: 10%;
  z-index: 45;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.7s, 0.3s transform 0.7s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--61 {
  top: 21%;
  width: 4%;
  left: 19%;
  z-index: 46;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.8s, 0.3s transform 0.8s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--62 {
  top: 32%;
  width: 10%;
  left: 15%;
  z-index: 50;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 0.9s, 0.3s transform 0.9s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--41 {
  top: 20%;
  width: 5%;
  left: 51%;
  z-index: 21;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1s, 0.3s transform 1s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--40 {
  top: 9%;
  width: 13%;
  left: 58%;
  z-index: 20;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.1s, 0.3s transform 1.1s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--39 {
  top: 54%;
  width: 12%;
  left: 65%;
  z-index: 24;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.2s, 0.3s transform 1.2s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--39 .TopMainVisualImage__imageSlide {
  width: 9300%;
  max-width: none;
}

.TopMainVisualImage__image--38 {
  top: 21%;
  width: 12%;
  left: 70%;
  z-index: 23;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.3s, 0.3s transform 1.3s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--37 {
  top: -8%;
  width: 6.5%;
  left: 85.5%;
  z-index: 19;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.4s, 0.3s transform 1.4s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--53 {
  top: -17%;
  width: 10%;
  left: 39%;
  z-index: 63;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.5s, 0.3s transform 1.5s;
  transform-origin: bottom center;
}

.TopMainVisualImage__image--54 {
  top: 72%;
  width: 5%;
  left: 50%;
  z-index: 64;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.3s opacity 1.6s, 0.3s transform 1.6s;
  transform-origin: bottom center;
}

.TopMainVisualShareList {
  margin-top: 80px;
  transition: 0.3s opacity, transform 0.3s;
  opacity: 0;
  transform: translateY(40px);
}

.TopMainVisualShareList.IntersectionObserver--active {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 768px),
print {
  .TopMainVisualShareList {
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.3s opacity 0.2s, 0.2s transform 0.3s;
  }
}

@media screen and (min-width: 768px),
print {
  .TopMainVisualShareList .ShareList__items {
    flex-direction: column;
  }
}

.TopService {
  background-color: #fefdef;
  padding-top: 64px;
  padding-bottom: 0;
  overflow: hidden;
}

@media screen and (min-width: 576px),
print {
  .TopService {
    padding-top: 120px;
  }
}

@media screen and (min-width: 768px),
print {
  .TopServiceList {
    background-image: url("../img/img-top-service-list-background.svg");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 40px;
  }
}

.TopServiceList__items {
  max-width: 1780px;
  margin: 0 auto;
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(odd) .TopServiceList__container {
    justify-content: flex-end;
  }
}

.TopServiceList__items > .TopServiceList__item:nth-of-type(odd) .TopServiceListContents {
  margin-left: auto;
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(odd) .TopServiceListContents {
    margin-left: 0;
    padding-left: 6.5%;
  }
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(even) .TopServiceList__container {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(even) .TopServiceListContents {
    padding-right: 6.5%;
  }
}

.TopServiceList__items > .TopServiceList__item:nth-of-type(1) .TopServiceListContents {
  margin-top: 20%;
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(1) .TopServiceListContents {
    margin-top: 5%;
  }
}

@media screen and (min-width: 1400px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(1) .TopServiceListContents {
    margin-top: 20%;
  }
}

.TopServiceList__items > .TopServiceList__item:nth-of-type(1) .TopServiceListImage {
  z-index: 1;
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(1) .TopServiceListImage {
    max-width: 927px;
  }
}

.TopServiceList__items > .TopServiceList__item:nth-of-type(2) {
  margin-top: -48%;
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) {
    margin-top: -29%;
  }
}

@media screen and (min-width: 992px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) {
    margin-top: -29.5%;
  }
}

@media screen and (min-width: 1200px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) {
    margin-top: -30%;
  }
}

@media screen and (min-width: 1400px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) {
    margin-top: -30%;
  }
}

@media screen and (min-width: 1630px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) {
    margin-top: -29.5%;
  }
}

@media screen and (min-width: 1680px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) {
    margin-top: -29%;
  }
}

@media screen and (min-width: 1700px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) {
    margin-top: -28.5%;
  }
}

@media screen and (min-width: 1740px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) {
    margin-top: -28%;
  }
}

@media screen and (min-width: 1780px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) {
    margin-top: -27.5%;
  }
}

.TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListContents {
  margin-top: 57%;
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListContents {
    margin-top: 29%;
    padding-right: 3%;
  }
}

@media screen and (min-width: 1400px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListContents {
    width: 40%;
  }
}

.TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListImage {
  z-index: 2;
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListImage {
    max-width: 1006px;
    width: 65%;
  }
}

@media screen and (min-width: 1400px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListImage {
    margin-left: -9%;
  }
}

@media screen and (min-width: 1500px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListImage {
    margin-left: -8%;
  }
}

@media screen and (min-width: 1560px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListImage {
    margin-left: -7%;
  }
}

@media screen and (min-width: 1600px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListImage {
    margin-left: -6%;
  }
}

@media screen and (min-width: 1630px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListImage {
    margin-left: -5%;
  }
}

@media screen and (min-width: 1640px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListImage {
    margin-left: -4%;
  }
}

@media screen and (min-width: 1650px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListImage {
    margin-left: -3%;
  }
}

@media screen and (min-width: 1660px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListImage {
    margin-left: -2%;
  }
}

@media screen and (min-width: 1700px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListImage {
    margin-left: 2%;
  }
}

@media screen and (min-width: 1780px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(2) .TopServiceListImage {
    margin-left: 3%;
  }
}

.TopServiceList__items > .TopServiceList__item:nth-of-type(3) {
  margin-top: -58%;
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(3) {
    margin-top: -31%;
  }
}

@media screen and (min-width: 992px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(3) {
    margin-top: -32.5%;
  }
}

@media screen and (min-width: 1200px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(3) {
    margin-top: -31%;
  }
}

@media screen and (min-width: 1400px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(3) {
    margin-top: -31%;
  }
}

.TopServiceList__items > .TopServiceList__item:nth-of-type(3) .TopServiceListContents {
  margin-top: 68%;
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(3) .TopServiceListContents {
    margin-top: 24%;
  }
}

@media screen and (min-width: 992px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(3) .TopServiceListContents {
    margin-top: 28%;
  }
}

.TopServiceList__items > .TopServiceList__item:nth-of-type(3) .TopServiceListImage {
  z-index: 3;
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(3) .TopServiceListImage {
    max-width: 1115px;
    width: 65%;
  }
}

@media screen and (min-width: 1780px),
print {
  .TopServiceList__items > .TopServiceList__item:nth-of-type(3) .TopServiceListImage {
    margin-left: 5%;
  }
}

.TopServiceList__item {
  position: relative;
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__item {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.TopServiceList__container {
  display: grid;
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__container {
    display: flex;
  }
}

.TopServiceListImage {
  position: relative;
  grid-area: 1/1;
  height: auto;
  width: calc(100% + 8vw);
  max-width: none;
  margin-left: -4vw;
}

@media screen and (min-width: 576px),
print {
  .TopServiceListImage {
    width: calc(100% + 9.2vw);
    margin-left: -4.6vw;
  }
}

@media screen and (min-width: 768px),
print {
  .TopServiceListImage {
    margin-left: 0;
    width: 60%;
  }
}

.TopServiceListImage__image {
  width: 100%;
  height: auto;
}

.TopServiceListContents {
  position: relative;
  z-index: 4;
  grid-area: 1/1;
  max-width: 150px;
}

@media screen and (min-width: 576px),
print {
  .TopServiceListContents {
    display: flex;
    max-width: 36%;
  }
}

@media screen and (min-width: 1400px),
print {
  .TopServiceListContents {
    max-width: calc(6.5% + 510px);
  }
}

.TopServiceList__text {
  margin-top: 24px;
  font-size: 0.75rem;
}

@media screen and (min-width: 576px),
print {
  .TopServiceList__text {
    margin-top: 40px;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px),
print {
  .TopServiceList__text {
    margin-top: 72px;
  }
}

.TopServiceList__text--light {
  color: #fff;
}

.TopServiceListLink {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

@media screen and (min-width: 576px),
print {
  .TopServiceListLink {
    margin-top: 40px;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 768px),
print {
  .TopServiceListLink {
    margin-top: 56px;
  }
}

.TopServiceListLink .TopServiceListLink__link:not(:root) {
  min-width: 117px;
}

@media screen and (min-width: 576px),
print {
  .TopServiceListLink .TopServiceListLink__link:not(:root) {
    min-width: auto;
    width: 100%;
    max-width: 350px;
    font-size: 1.375rem;
    padding: 26px 18px;
  }
}

.TopServiceMessage {
  background-image: url("../img/img-top-service-message-background-small.svg");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 40px 0;
  background-color: #fff;
}

@media screen and (min-width: 576px),
print {
  .TopServiceMessage {
    background-image: url("../img/img-top-service-message-background.svg");
  }
}

.TopServiceMessage__container {
  background-image: url("../img/img-top-service-message-background-person-small.svg");
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  margin: -22px auto 0;
  padding: 120px 0;
}

@media screen and (min-width: 576px),
print {
  .TopServiceMessage__container {
    background-image: none;
    max-width: 1628px;
    padding: 160px 0 80px;
  }
}

@media screen and (min-width: 768px),
print {
  .TopServiceMessage__container {
    padding: 240px 0 80px;
  }
}

@media screen and (min-width: 576px),
print {
  .TopServiceMessage__contents {
    background-image: url("../img/img-top-service-message-background-person.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.TopServiceMessageTitle__title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.TopServiceMessageTitle__image {
  width: 275px;
  height: auto;
}

@media screen and (min-width: 576px),
print {
  .TopServiceMessageTitle__image {
    width: 500px;
  }
}

.TopServiceMessage__text {
  margin-top: 32px;
  font-size: 0.75rem;
  text-align: center;
}

@media screen and (min-width: 576px),
print {
  .TopServiceMessage__text {
    margin-top: 120px;
    font-size: 1.125rem;
  }
}

.TopServiceMessageButton {
  display: none;
}

@media screen and (min-width: 576px),
print {
  .TopServiceMessageButton {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 72px;
  }

  .TopServiceMessageButton .BaseButton:not(:root) {
    min-width: 350px;
  }
}

.TopRecruitContents {
  margin-top: 32px;
}

@media screen and (min-width: 576px),
print {
  .TopRecruitContents {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px),
print {
  .TopRecruitContents__container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 768px),
print {
  .TopRecruitContents__contents {
    padding-right: 40px;
  }
}

@media screen and (min-width: 992px),
print {
  .TopRecruitContents__contents {
    padding-right: 80px;
  }
}

@media screen and (min-width: 1200px),
print {
  .TopRecruitContents__contents {
    padding-right: 120px;
  }
}

@media screen and (min-width: 1400px),
print {
  .TopRecruitContents__contents {
    padding-right: 140px;
  }
}

.TopRecruitContents__contents .ContentsTitle__text {
  text-align: center;
}

@media screen and (min-width: 768px),
print {
  .TopRecruitContents__contents .ContentsTitle__text {
    text-align: left;
  }
}

.TopRecruitContents__text {
  text-align: center;
  margin-top: 32px;
  font-size: 0.75rem;
}

@media screen and (min-width: 576px),
print {
  .TopRecruitContents__text {
    margin-top: 56px;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px),
print {
  .TopRecruitContents__text {
    text-align: left;
  }
}

.TopRecruitContentsLink {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 576px),
print {
  .TopRecruitContentsLink {
    margin-top: 56px;
  }

  .TopRecruitContentsLink .BaseButton:not(:root) {
    width: 100%;
    max-width: 350px;
  }
}

.TopRecruitContentsImage {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 576px),
print {
  .TopRecruitContentsImage {
    margin-top: 64px;
  }
}

@media screen and (min-width: 768px),
print {
  .TopRecruitContentsImage {
    margin-top: 0;
    width: 50%;
    max-width: 890px;
    flex-shrink: 0;
  }
}

.TopRecruitContentsImage__image {
  width: 269px;
  height: auto;
}

@media screen and (min-width: 576px),
print {
  .TopRecruitContentsImage__image {
    width: 100%;
  }
}

.TopNewsContents__container {
  display: flex;
  justify-content: center;
}

.TopNewsContentsImage {
  flex-shrink: 0;
  margin-right: 16px;
}

@media screen and (min-width: 576px),
print {
  .TopNewsContentsImage {
    margin-right: 32px;
  }
}

@media screen and (min-width: 768px),
print {
  .TopNewsContentsImage {
    margin-right: 80px;
  }
}

@media screen and (min-width: 992px),
print {
  .TopNewsContentsImage {
    margin-right: 120px;
  }
}

@media screen and (min-width: 1200px),
print {
  .TopNewsContentsImage {
    margin-right: 180px;
  }
}

@media screen and (min-width: 1400px),
print {
  .TopNewsContentsImage {
    margin-right: 220px;
  }
}

.TopNewsContentsImage__image {
  width: 46px;
  height: auto;
}

@media screen and (min-width: 576px),
print {
  .TopNewsContentsImage__image {
    width: 80px;
  }
}

@media screen and (min-width: 768px),
print {
  .TopNewsContentsImage__image {
    width: 138px;
  }
}

.TopNewsContents__contents {
  max-width: 983px;
}