@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
html {
  font-size: 16px;
}

body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #3D414D;
  background: #F5F5F5;
}

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

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
}
#footer {
  position: relative;
  padding: 2.5rem 0;
  z-index: 99;
}

#footer .body {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#footer .title {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.018em;
}

#footer .copyright {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}

#footer .menus {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2rem;
}

#footer .menu {
  line-height: 1;
}

#footer .menu a {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}

#footer .submenus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.25rem;
  color: #999;
  margin-top: 1rem;
}

#footer .submenu {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}

#footer .menu a,
#footer .submenu a {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

#footer .menu a:hover {
  opacity: 0.6;
}
.l-header-pc {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 100;
}

.l-header-pc .inner {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding: 0 1.25rem;
}

.l-header-pc .body {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.l-header-pc .logo a {
  gap: 1.5rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.l-header-pc .logo a:hover {
  opacity: 0.7;
}

.l-header-pc .logo__image {
  position: relative;
  max-width: 9.125rem;
}

.l-header-pc .logo__image img {
  display: block;
  width: 100%;
  aspect-ratio: 146/40;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.l-header-pc .logo__accent {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.l-header-pc .logo__line {
  width: 1px;
  height: 2.5rem;
  background: #999;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.l-header-pc .logo__title {
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.l-header-pc .nav {
  gap: 1rem;
}

.l-header-pc .menus {
  gap: 1rem;
}

.l-header-pc .menu a {
  position: relative;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #fff;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.l-header-pc .menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0.0625rem;
  left: 0;
  bottom: 0;
  background: #CD990C;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.l-header-pc .menu a:hover::after {
  width: 100%;
}

.l-header-pc .btn {
  position: relative;
  top: -0.0625rem;
}

.l-header-pc .btn a {
  display: inline-block;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.333;
  letter-spacing: 0em;
  color: #fff;
  border-radius: 0.75rem;
  border: 1px solid #fff;
  padding: 0.1875rem 0.4375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.l-header-pc .btn a:hover,
.l-header-pc.is-change .btn a:hover {
  background-color: #CD990C;
  border-color: #CD990C;
  color: #fff;
}

.l-header-pc.is-change {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}

.l-header-pc.is-change .logo__white {
  opacity: 0;
}

.l-header-pc.is-change .logo__accent {
  opacity: 1;
}

.l-header-pc.is-change .logo__line {
  background: #141414;
}

.l-header-pc.is-change .logo__title {
  color: #141414;
}

.l-header-pc.is-change .menu a {
  color: #141414;
}

.l-header-pc.is-change .btn a {
  color: #141414;
  border-color: #141414;
}
.l-inner,
.l-inner-m,
.l-inner-l {
  width: 100%;
  margin-inline: auto;
  padding: 0 2.5rem;
}

.l-inner {
  max-width: 70rem;
}

.l-inner-m {
  max-width: 80rem;
}

.l-inner-l {
  max-width: 95rem;
}

.l-section--bg {
  background: #ededed;
}

.c-btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #CD990C;
}

.c-btn__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  top: 0.0625rem;
  width: 1.75rem;
  height: 1rem;
  background: #CD990C;
  border-radius: 0.5rem;
  overflow: hidden;
}

.c-btn__icon::before {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.0625rem;
  top: 50%;
  left: 0.5625rem;
  background: #3D414D;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-btn__icon::after {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 0.375rem;
  top: 50%;
  left: 0.9375rem;
  border-top: 0.0625rem solid #3D414D;
  border-right: 0.0625rem solid #3D414D;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-btn a:hover .c-btn__icon::before,
.c-btn a:hover .c-btn__icon::after {
  -webkit-animation: c-btn-arrow-slide 0.5s cubic-bezier(0.22, 0.6, 0.36, 1);
  animation: c-btn-arrow-slide 0.5s cubic-bezier(0.22, 0.6, 0.36, 1);
}

@-webkit-keyframes c-btn-arrow-slide {
  0% {
    translate: 0 0;
  }
  40% {
    translate: 1.75rem 0;
    -webkit-animation-timing-function: step-end;
    animation-timing-function: step-end;
  }
  41% {
    translate: -1.75rem 0;
  }
  100% {
    translate: 0 0;
  }
}

@keyframes c-btn-arrow-slide {
  0% {
    translate: 0 0;
  }
  40% {
    translate: 1.75rem 0;
    -webkit-animation-timing-function: step-end;
    animation-timing-function: step-end;
  }
  41% {
    translate: -1.75rem 0;
  }
  100% {
    translate: 0 0;
  }
}
.c-layout .c-layout__inner {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5rem;
  max-width: 90rem;
  padding: 0 5rem;
  margin-inline: auto;
}

.c-layout .c-layout__head {
  position: sticky;
  top: calc(var(--header-height, 80px) + 2.5rem);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18.75rem;
  flex: 0 0 18.75rem;
  border-top: 1px solid #CD990C;
}

.c-layout .c-layout__en {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.714;
  letter-spacing: 0em;
  color: #CD990C;
  padding-left: 0.9375rem;
}

.c-layout .c-layout__en::before {
  content: "";
  position: absolute;
  width: 0.4375rem;
  height: 0.4375rem;
  top: 0.5rem;
  left: 0;
  background: #CD990C;
  border-radius: 50%;
}

.c-layout .c-layout__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.778;
  letter-spacing: 0em;
  color: #141414;
  margin-top: 0.125rem;
}

.c-layout .c-layout__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.c-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2rem;
}

.c-media + .c-media {
  margin-top: 5rem;
}

.c-media__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18.75rem;
  flex: 0 0 18.75rem;
}

.c-media__image img {
  aspect-ratio: 300/200;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-media__contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-media__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.3125rem;
}

.c-media__en {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.167;
  letter-spacing: 0em;
  color: #CD990C;
}

.c-media__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.333;
  letter-spacing: 0em;
  color: #CD990C;
}

.c-media__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
  color: #141414;
  margin-top: 0.625rem;
}
.c-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
}

.c-title__en {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.714;
  letter-spacing: 0em;
  color: #141414;
  padding-left: 0.9375rem;
}

.c-title__en::before {
  content: "";
  position: absolute;
  width: 0.4375rem;
  height: 0.4375rem;
  top: 0.5rem;
  left: 0;
  background: #141414;
  border-radius: 50%;
}

.c-title__main {
  font-family: "Inter", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #CD990C;
}

.c-title--white .c-title__en {
  color: #fff;
}

.c-title--white .c-title__en::before {
  background: #fff;
}
.common-fv {
  padding: calc(var(--header-height, 80px) + 2.5rem) 0 2.5rem;
}

.common-fv .breadcrumb .box {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.091;
  letter-spacing: 0em;
  color: #999;
}

.common-fv .breadcrumb .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.common-fv .breadcrumb .item:not(:last-of-type)::after {
  content: "";
  position: relative;
  top: 0.0625rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.common-fv .breadcrumb .item a {
  color: #999;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.common-fv .breadcrumb .item a:hover {
  color: #fff;
}

.common-fv .body {
  margin-top: 1.25rem;
}

.common-fv .title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.033em;
  color: #CD990C;
}

.common-fv .title--small {
  font-size: 4.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.037em;
  color: #CD990C;
}

.common-fv .title--en {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.01em;
}

.common-fv .sub {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.222;
  letter-spacing: -0.017em;
  color: #CD990C;
  margin-top: 1.125rem;
}

.common-fv .sub .small {
  font-family: "Inter", sans-serif;
}

.common-fv .head {
  margin-top: 1.25rem;
}

.common-fv .catch {
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.778;
  letter-spacing: 0em;
  padding-left: 0.9375rem;
}

.common-fv .catch::before {
  content: "";
  position: absolute;
  width: 0.4375rem;
  height: 0.4375rem;
  top: 0.8125rem;
  left: 0;
  background: #fff;
  border-radius: 50%;
}

.common-fv .texts {
  margin-top: 0.5rem;
}

.common-fv .text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #999;
}

.common-fv .lead {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.714;
  letter-spacing: 0em;
  margin-top: 0.5rem;
}
.common-to-top {
  background: #454857;
  padding: 2.875rem 0;
  text-align: center;
}

.common-to-top .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 7.5rem;
}

.common-to-top .c-btn__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
#abice-about {
  padding: 7.5rem 0;
}

#abice-about .text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}

#abice-about .logo {
  max-width: 21.6875rem;
  margin-top: 10rem;
  margin-left: 5.375rem;
}

#abice-service {
  padding: 7.5rem 0;
}

#abice-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1440/372;
  -o-object-fit: cover;
  object-fit: cover;
}

#abice-feature {
  padding: 7.5rem 0;
}
#firstmain-about {
  padding: 7.5rem 0;
}

#firstmain-about .text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}

#firstmain-about .logo {
  max-width: 21.6875rem;
  margin-top: 10rem;
  margin-left: 5.375rem;
}

#firstmain-service {
  padding: 7.5rem 0;
}

#firstmain-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1440/372;
  -o-object-fit: cover;
  object-fit: cover;
}

#firstmain-feature {
  padding: 7.5rem 0;
}
#group-ourgroup {
  padding: 11.25rem 0;
}

#group-ourgroup .box {
  max-width: 65.625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fafbfc), to(#f2f3f5));
  background: -webkit-linear-gradient(top, #fafbfc 0%, #f2f3f5 100%);
  background: linear-gradient(180deg, #fafbfc 0%, #f2f3f5 100%);
  border-radius: 5rem;
  -webkit-box-shadow: 0 -2px 6px rgba(255, 255, 255, 0.2), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 0 1px rgba(255, 255, 255, 0.4), inset 0 -2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 -2px 6px rgba(255, 255, 255, 0.2), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 0 1px rgba(255, 255, 255, 0.4), inset 0 -2px 6px rgba(0, 0, 0, 0.2);
  padding: 4.625rem 5rem 5rem;
  margin-inline: auto;
}

#group-ourgroup .head {
  text-align: center;
}

#group-ourgroup .en {
  position: relative;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.714;
  letter-spacing: 0em;
  color: #CD990C;
  padding-left: 0.9375rem;
}

#group-ourgroup .en::before {
  content: "";
  position: absolute;
  width: 0.4375rem;
  height: 0.4375rem;
  top: 0.5rem;
  left: 0;
  background: #CD990C;
  border-radius: 50%;
}

#group-ourgroup .title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.778;
  letter-spacing: 0em;
  color: #141414;
  margin-top: 0.1875rem;
}

#group-ourgroup .logo {
  max-width: 16.625rem;
  margin-inline: auto;
  margin-top: 1.5rem;
}

#group-ourgroup .items {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 3.75rem;
}

#group-ourgroup .item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.875rem;
  flex: 0 0 16.875rem;
}

#group-ourgroup .item a {
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#group-ourgroup .item a:hover {
  opacity: 0.7;
}

#group-ourgroup .item__image {
  border-radius: 0.75rem;
  border: 1px solid #d6d6d6;
  overflow: hidden;
}

#group-ourgroup .item__image img {
  display: block;
  width: 100%;
  aspect-ratio: 268/133;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#group-ourgroup .item a:hover .item__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#group-ourgroup .item__contents {
  margin-top: 0.625rem;
}

#group-ourgroup .item__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #CD990C;
  text-align: center;
}

#group-ourgroup .item__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
  color: #141414;
  margin-top: 0.625rem;
}

#group-business {
  padding: 7.5rem 0;
}
#hit-about {
  padding: 7.5rem 0;
}

#hit-about .text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}

#hit-about .logo {
  max-width: 28.9375rem;
  margin-top: 10rem;
  margin-left: 1.75rem;
}

#hit-service {
  padding: 7.5rem 0;
}

#hit-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1440/444;
  -o-object-fit: cover;
  object-fit: cover;
}

#hit-feature {
  padding: 7.5rem 0;
}
#message-contents {
  position: relative;
  padding: 7.5rem 0 4.6875rem;
  overflow: hidden;
}

#message-contents .deco {
  position: absolute;
  width: 90rem;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  mix-blend-mode: multiply;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#message-contents .deco__circle {
  position: absolute;
  width: 37.5rem;
  aspect-ratio: 1/1;
  top: 50%;
  border-radius: 50%;
  border: 1px solid #F5F5F5;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#message-contents .deco__circle--01 {
  left: -15rem;
}

#message-contents .deco__circle--02 {
  left: 12.5rem;
}

#message-contents .deco__circle--03 {
  left: 40rem;
}

#message-contents .deco__circle--04 {
  left: 67.5rem;
}

#message-contents .deco__circle--05 {
  left: -42.5rem;
}

#message-contents .deco__circle--06 {
  left: 95rem;
}

#message-contents .body {
  position: relative;
  max-width: 55rem;
  margin-inline: auto;
  color: #141414;
  z-index: 1;
}

#message-contents .text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}

#message-contents .small {
  font-family: "Inter", sans-serif;
}

#message-contents .box {
  margin-top: 0.75rem;
  text-align: right;
}

#message-contents .company {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0em;
}

#message-contents .name {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0em;
  margin-top: 0.1875rem;
}
#takasago-about {
  padding: 7.5rem 0;
}

#takasago-about .text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}

#takasago-about .logo {
  max-width: 21.6875rem;
  margin-top: 10rem;
  margin-left: 5.375rem;
}

#takasago-service {
  padding: 7.5rem 0;
}

#takasago-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1440/372;
  -o-object-fit: cover;
  object-fit: cover;
}

#takasago-feature {
  padding: 7.5rem 0;
}
#wateragency-about {
  padding: 7.5rem 0;
}

#wateragency-about .text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0em;
}

#wateragency-about .logo {
  max-width: 21.6875rem;
  margin-top: 10rem;
  margin-left: 5.3125rem;
}

#wateragency-service {
  padding: 7.5rem 0;
}

#wateragency-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1440/372;
  -o-object-fit: cover;
  object-fit: cover;
}

#wateragency-feature {
  padding: 7.5rem 0;
}
#top-fv {
  position: relative;
  padding: 7.5rem 0 2.5rem;
}

#top-fv .message {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#top-fv .catch {
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.778;
  letter-spacing: 0em;
  padding-left: 0.9375rem;
}

#top-fv .catch::before {
  content: "";
  position: absolute;
  width: 0.4375rem;
  height: 0.4375rem;
  top: 0.75rem;
  left: 0;
  background: #fff;
  border-radius: 50%;
}

#top-fv .lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  margin-top: 0.5rem;
}

#top-fv .btn {
  margin-top: 0.8125rem;
}

#top-fv .hero {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 10.4375rem;
}

#top-fv .hero__title {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.017em;
  color: #CD990C;
}

#top-fv .hero__title-outline {
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 0.125rem #CD990C;
  opacity: 0;
}

#top-fv .hero__title-outline::before {
  content: attr(data-text);
  white-space: pre-line;
}

#top-fv .hero.is-inview .hero__title-outline {
  -webkit-animation: hero-outline 1.2s ease forwards;
  animation: hero-outline 1.2s ease forwards;
}

#top-fv .hero.is-inview .hero__title-fill {
  -webkit-animation: hero-fill 1.2s ease forwards;
  animation: hero-fill 1.2s ease forwards;
}

@-webkit-keyframes hero-outline {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  55% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-outline {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  55% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes hero-fill {
  0%, 55% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hero-fill {
  0%, 55% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#top-fv .years {
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #CD990C;
  border-top: 1px solid transparent;
  padding-top: 0.75rem;
}

#top-fv .years::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #CD990C;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
}

#top-fv .years__year {
  opacity: 0;
  -webkit-transform: translateY(0.5rem);
  transform: translateY(0.5rem);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

#top-fv .hero.is-inview .years__year {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

#top-fv .hero.is-inview .years__year:nth-child(1) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

#top-fv .hero.is-inview .years__year:nth-child(2) {
  -webkit-transition-delay: 1.15s;
  transition-delay: 1.15s;
}

#top-fv .hero.is-inview .years::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

#top-fv .contents {
  --delay: 2.1s;
}

#top-fv .scroll {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
  max-height: 22.5rem;
  position: absolute;
  top: 30.25rem;
  right: 2.5rem;
}

#top-fv .scroll__text {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
}

#top-fv .scroll__line {
  position: relative;
  width: 1px;
  height: 22.5rem;
  background: #999;
}

#top-fv .scroll__line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #CD990C;
  -webkit-animation: scroll-line 2s infinite;
  animation: scroll-line 2s infinite;
}

@-webkit-keyframes scroll-line {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

@keyframes scroll-line {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}
#top-history {
  padding: 11.125rem 0 0;
  overflow: hidden;
}

#top-history .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25rem;
}

#top-history .head {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#top-history .title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.455;
  letter-spacing: 0em;
}

#top-history .lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  margin-top: 0.5rem;
}

#top-history .arrows {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 0.0625rem;
}

#top-history .arrow {
  position: relative;
  width: 2.25rem;
  height: 1.5rem;
  background: transparent;
  border-radius: 1.125rem;
  border: 1px solid #E0E0E0;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#top-history .arrow:hover {
  background-color: #CD990C;
  border-color: #CD990C;
}

#top-history .arrow::before {
  content: "";
  position: absolute;
  width: 0.4375rem;
  height: 0.4375rem;
  top: 50%;
  left: 50%;
  border-top: 1px solid #E0E0E0;
  border-right: 1px solid #E0E0E0;
}

#top-history .arrow--next::before {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
  transform: translate(-70%, -50%) rotate(45deg);
}

#top-history .arrow--prev::before {
  -webkit-transform: translate(-30%, -50%) rotate(225deg);
  transform: translate(-30%, -50%) rotate(225deg);
}

#top-history .timeline {
  padding: 2.5rem 0;
  overflow-x: auto;
  -webkit-text-size-adjust: 100%;
}

#top-history .timeline__inner {
  display: grid;
  grid-auto-flow: column;
  row-gap: 1.25rem;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-left: max(5rem, (100vw - 1360px) / 2);
  padding-right: 5rem;
  margin-top: 1.25rem;
}

#top-history .era {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}

#top-history .era__head {
  position: relative;
  width: 0;
  min-width: 100%;
  padding-left: 0.75rem;
}

#top-history .era__head::before {
  content: "";
  position: absolute;
  width: 0.125rem;
  height: calc(100% + 1.25rem);
  top: 0;
  left: 0;
  background: #999;
}

#top-history .era__title {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.111;
  letter-spacing: 0em;
}

#top-history .era__sub {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  color: #999;
  margin-top: 0.5rem;
}

#top-history .era__cards {
  position: relative;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 2.5rem;
}

#top-history .era__cards::before {
  content: "";
  position: absolute;
  height: 0.125rem;
  top: 0;
  right: -1.25rem;
  left: -1.25rem;
  background: #999;
}

#top-history .era:first-child .era__cards::before {
  left: calc(-1 * max(5rem, (100vw - 1280px) / 2));
}

#top-history .era:last-child .era__cards::before {
  right: -5rem;
}

#top-history .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 17.5rem;
}

#top-history .card::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.25rem;
  background: #CD990C;
}

#top-history .card__year {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

#top-history .card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 280/187;
  -o-object-fit: cover;
  object-fit: cover;
}

#top-history .card__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
html.is-loading {
  overflow: hidden;
}

html.is-revisit #top-loading {
  display: none;
}

#top-loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 400;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#top-loading.is-hide {
  opacity: 0;
  visibility: hidden;
}

#top-loading .body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#top-loading .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 5rem;
}

#top-loading .logo__image {
  max-width: 8.875rem;
}

#top-loading .logo__image img {
  aspect-ratio: 146/40;
}

#top-loading .bar {
  position: relative;
  width: 12.5rem;
  height: 1px;
  background: #d6d6d6;
  margin-top: 1.25rem;
}

#top-loading .bar::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #333333;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-animation: top-loading-bar 1.6s ease-in-out forwards;
  animation: top-loading-bar 1.6s ease-in-out forwards;
}

@-webkit-keyframes top-loading-bar {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes top-loading-bar {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
#top-movie {
  padding: 7.375rem 0 11.25rem;
}

#top-movie .body {
  gap: 2.5rem;
  padding-left: max(2.5rem, (100vw - 1360px) / 2);
}

#top-movie .contents {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 29rem;
  flex: 0 0 29rem;
}

#top-movie .lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  margin-top: 2.75rem;
}

#top-movie .youtube {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  aspect-ratio: 650/366;
  overflow: hidden;
}

#top-movie .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#top-service {
  position: relative;
  min-height: 100vh;
  padding: 14.375rem 0 14.8125rem;
  overflow: hidden;
}

#top-service .deco {
  position: absolute;
  width: 90rem;
  top: -0.3125rem;
  bottom: 0;
  left: 50%;
  z-index: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#top-service .deco__circle {
  position: absolute;
  width: 37.5rem;
  aspect-ratio: 1/1;
  top: 50%;
  border-radius: 50%;
  border: 1px solid #333333;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#top-service .deco__circle--01 {
  left: -14.8125rem;
}

#top-service .deco__circle--02 {
  left: 12.6875rem;
}

#top-service .deco__circle--03 {
  left: 40.1875rem;
}

#top-service .deco__circle--05 {
  left: -42.3125rem;
}

#top-service .deco__circle--04 {
  left: 67.6875rem;
}

#top-service .deco__circle--06 {
  left: 95.1875rem;
}

#top-service .inner,
#top-service .body {
  height: 100%;
}

#top-service .body {
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}

#top-service .contents {
  width: 100%;
  max-width: 24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
}

#top-service .catch {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.455;
  letter-spacing: 0em;
}

#top-service .text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  margin-top: 0.5rem;
}

#top-service .btn {
  margin-top: 0.4375rem;
}

#top-service .circle {
  position: absolute;
  width: 0;
  height: 0;
  top: calc(50% - 0.125rem);
  left: 50%;
  z-index: 2;
}

#top-service .ring {
  position: absolute;
  width: 22.5rem;
  aspect-ratio: 1/1;
  top: 1.875rem;
  left: 0;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#top-service .ring::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, #002462 0deg, #194682 15deg, #346ca4 30deg, #5090c5 45deg, #69b2e2 60deg, #72bae6 75deg, #538ab9 90deg, #375e8e 105deg, #223c6e 120deg, #0c184d 135deg, #001457 150deg, #013c95 165deg, #0169e1 180deg, #3099f0 195deg, #65cdfc 210deg, #79c9fe 225deg, #6d98fd 240deg, #6368fc 255deg, #5637f6 270deg, #4808ed 285deg, #3705ca 300deg, #290bae 315deg, #1a118f 330deg, #0d1a7b 345deg, #002462 360deg);
  border-radius: 50%;
  -webkit-mask: -webkit-radial-gradient(farthest-side, transparent calc(100% - 0.5rem), #000 calc(100% - 0.5rem));
  mask: radial-gradient(farthest-side, transparent calc(100% - 0.5rem), #000 calc(100% - 0.5rem));
}

#top-service .logo {
  position: absolute;
  width: 11.125rem;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#top-service .logo:hover {
  z-index: 3;
}

#top-service .logo--01 {
  top: -9.375rem;
  left: 0;
}

#top-service .logo--02 {
  top: -1.25rem;
  left: 10.625rem;
}

#top-service .logo--03 {
  top: 10.0625rem;
  left: 6.875rem;
}

#top-service .logo--04 {
  top: 10.0625rem;
  left: -6.875rem;
}

#top-service .logo--05 {
  top: -1.25rem;
  left: -10.625rem;
}

#top-service .logo__image {
  display: block;
  width: 100%;
}

#top-service .logo img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
}

#top-service .logo__tip {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  bottom: calc(100% + 0.25rem);
  left: 50%;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.571;
  letter-spacing: 0em;
  color: #fff;
  background: #3D414D;
  border: 1px solid #fff;
  padding: 0.5rem 0.75rem 0.625rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, 0.375rem);
  transform: translate(-50%, 0.375rem);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  pointer-events: none;
}

#top-service .logo__tip::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  top: 100%;
  left: 50%;
  background: #3D414D;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

#top-service .logo:hover .logo__tip {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#top-synergy {
  position: relative;
  padding: 11.25rem 0 2.5rem;
  overflow: hidden;
}

#top-synergy .body {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#top-synergy .texts {
  color: #141414;
}

#top-synergy .title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.455;
  letter-spacing: 0em;
}

#top-synergy .text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
  margin-top: 0.5rem;
}

#top-synergy .btn {
  margin-top: 0.8125rem;
}

#top-synergy .image {
  position: relative;
  top: -1.25rem;
  left: -5.3125rem;
  padding-right: max(15rem, (100vw - 1360px) / 2);
  z-index: -1;
}

#top-synergy .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200/487;
  -o-object-fit: contain;
  object-fit: contain;
}

#top-synergy.is-revealing {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #F5F5F5;
  overflow: hidden;
}

#top-synergy.is-revealing .body {
  position: relative;
  z-index: 2;
}

#top-synergy.is-revealing .image {
  z-index: 1;
}
.u-fade {
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
  -webkit-transition-delay: var(--delay, 0s);
  transition-delay: var(--delay, 0s);
}

.u-fade.is-inview {
  opacity: 1;
}

.u-fade-left {
  opacity: 0;
  translate: -1.875rem 0;
  -webkit-transition: opacity 1.2s ease, translate 1.2s ease;
  transition: opacity 1.2s ease, translate 1.2s ease;
  -webkit-transition-delay: var(--delay, 0s);
  transition-delay: var(--delay, 0s);
}

.u-fade-left.is-inview {
  opacity: 1;
  translate: 0 0;
}

.u-chars {
  visibility: hidden;
}

.u-chars.is-ready {
  visibility: visible;
}

.u-chars span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateX(1.25rem);
  transform: translateX(1.25rem);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.u-chars span.is-show {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.u-delay0 {
  --delay: 0s;
}

.u-delay1 {
  --delay: 0.1s;
}

.u-delay2 {
  --delay: 0.2s;
}

.u-delay3 {
  --delay: 0.3s;
}

.u-delay4 {
  --delay: 0.4s;
}

.u-delay5 {
  --delay: 0.5s;
}

.u-delay6 {
  --delay: 0.6s;
}

.u-delay7 {
  --delay: 0.7s;
}

.u-delay8 {
  --delay: 0.8s;
}

.u-delay9 {
  --delay: 0.9s;
}

.u-delay10 {
  --delay: 1s;
}

.u-delay11 {
  --delay: 1.1s;
}

.u-delay12 {
  --delay: 1.2s;
}

.u-delay13 {
  --delay: 1.3s;
}

.u-delay14 {
  --delay: 1.4s;
}

.u-delay15 {
  --delay: 1.5s;
}

.u-delay16 {
  --delay: 1.6s;
}

.u-delay17 {
  --delay: 1.7s;
}

.u-delay18 {
  --delay: 1.8s;
}

.u-delay19 {
  --delay: 1.9s;
}

.u-delay20 {
  --delay: 2s;
}
.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-br {
  display: inline-block;
}

.u-display {
  display: none !important;
}

.u-bg-black {
  color: #fff;
  background-color: #3D414D;
}

@media (max-width: 1440px){
  html {
    font-size: 1.1111111111vw;
  }
}

@media screen and (max-width: 768px){
  html {
    font-size: 16px;
  }
  .drawer .icon {
    position: fixed;
    width: 26px;
    height: 18px;
    top: 27px;
    right: 5.13vw;
    cursor: pointer;
    z-index: 250;
  }
  .drawer .icon-bars {
    position: relative;
    width: 26px;
    height: 18px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1000;
  }
  .drawer .icon-bar1,
  .drawer .icon-bar2 {
    position: absolute;
    width: 26px;
    height: 1px;
    background: #fff;
    top: 0;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .drawer .icon-bar1 {
    top: 5px;
  }
  .drawer .icon-bar2 {
    top: 12px;
  }
  #sp-header.is-change .drawer .icon-bar1,
  #sp-header.is-change .drawer .icon-bar2 {
    background: #141414;
  }
  #sp-header.is-open .drawer .icon-bar1,
  #sp-header.is-open .drawer .icon-bar2 {
    background: #fff;
  }
  #sp-header.is-open .logo {
    position: relative;
    z-index: 251;
  }
  #sp-header.is-open .logo__white {
    opacity: 1;
  }
  #sp-header.is-open .logo__accent {
    opacity: 0;
  }
  #sp-header.is-open .logo__line {
    background: #999;
  }
  #sp-header.is-open .logo__title {
    color: #fff;
  }
  .drawer .icon.is-open .icon-bar1,
  .drawer .icon.is-open .icon-bar2 {
    width: 31.62px;
    top: 50%;
    left: 50%;
  }
  .drawer .icon.is-open .icon-bar1 {
    -webkit-transform: translate(-50%, -50%) rotate(-34.7deg);
    transform: translate(-50%, -50%) rotate(-34.7deg);
  }
  .drawer .icon.is-open .icon-bar2 {
    -webkit-transform: translate(-50%, -50%) rotate(34.7deg);
    transform: translate(-50%, -50%) rotate(34.7deg);
  }
  .drawer .icon.is-open {
    z-index: 251;
  }
  .drawer .contents {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    color: #fff;
    background: #3D414D;
    padding: 0 5.13vw 20.51vw;
    padding-top: calc(72px + 20.51vw);
    gap: 10.26vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: scroll;
    -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index: 250;
  }
  .drawer .contents.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .drawer .nav {
    width: 100%;
  }
  .drawer .menu {
    border-bottom: 1px solid #fff;
  }
  .drawer .menu > a,
  .drawer .menu__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 3.59vw 0vw 3.33vw;
    font-size: 4.1vw;
    line-height: 1.25;
  }
  .drawer .menu__head {
    position: relative;
    cursor: pointer;
  }
  .drawer .menu__head::before,
  .drawer .menu__head::after {
    content: "";
    position: absolute;
    width: 3.85vw;
    height: 1px;
    top: 50%;
    right: 0;
    background: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .drawer .menu__head::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
  }
  .drawer .menu--parent.is-active .menu__head::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  .drawer .submenus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 0;
    gap: 2.56vw;
    color: #999;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
  }
  .drawer .submenu {
    font-size: 3.59vw;
    line-height: 1.86;
  }
  .drawer .submenu:last-child {
    padding-bottom: 3.59vw;
  }
  .drawer .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    min-height: 13.33vw;
    gap: 3.08vw;
    font-family: "Inter", sans-serif;
  }
  .drawer .title {
    font-size: 6.67vw;
    line-height: 1;
    letter-spacing: 0.018em;
  }
  .drawer .copyright {
    font-size: 2.56vw;
    line-height: 1;
  }
  #footer {
    padding: 20.51vw 0vw 25.64vw;
  }
  #footer .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20.51vw;
  }
  #footer .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3.08vw;
  }
  #footer .title {
    font-size: 6.67vw;
    line-height: 1;
  }
  #footer .copyright {
    font-size: 2.56vw;
    line-height: 1;
  }
  #footer .nav {
    width: 100%;
  }
  #footer .menus {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 0;
  }
  #footer .menu {
    border-bottom: 1px solid #fff;
  }
  #footer .menu a {
    font-size: 4.1vw;
  }
  #footer .menu a:hover {
    opacity: 1;
  }
  #footer .menu > a,
  #footer .menu__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 3.59vw 0vw 3.33vw;
    font-size: 4.1vw;
    line-height: 1.25;
  }
  #footer .menu__head {
    position: relative;
    cursor: pointer;
  }
  #footer .menu__head::before,
  #footer .menu__head::after {
    content: "";
    position: absolute;
    width: 3.85vw;
    height: 1px;
    top: 50%;
    right: 0;
    background: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  #footer .menu__head::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
  }
  #footer .menu--parent.is-active .menu__head::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  #footer .submenus {
    max-height: 0;
    margin-top: 0;
    gap: 2.56vw;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
  }
  #footer .submenu a {
    font-size: 3.59vw;
    line-height: 1.86;
  }
  #footer .submenu:last-child {
    padding-bottom: 3.59vw;
  }
  .l-header-sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    z-index: 100;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .l-header-sp .body {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 20px 0;
  }
  .l-header-sp .logo a {
    gap: 10px;
  }
  .l-header-sp .logo__image {
    position: relative;
    max-width: 102px;
  }
  .l-header-sp .logo__image img {
    display: block;
    width: 100%;
    aspect-ratio: 102/32;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .l-header-sp .logo__accent {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .l-header-sp .logo__line {
    width: 1px;
    height: 32px;
    background: #999;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  .l-header-sp .logo__title {
    font-family: "Inter", sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    line-height: 1.091;
    letter-spacing: -0.02em;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
  }
  .l-header-sp.is-change {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
  }
  .l-header-sp.is-change .logo__white {
    opacity: 0;
  }
  .l-header-sp.is-change .logo__accent {
    opacity: 1;
  }
  .l-header-sp.is-change .logo__line {
    background: #141414;
  }
  .l-header-sp.is-change .logo__title {
    color: #141414;
  }
  .l-inner,
  .l-inner-m,
  .l-inner-l {
    padding: 0 5.13vw;
  }
  .c-btn a {
    gap: 4.1vw;
    font-size: 4.1vw;
  }
  .c-btn__icon {
    top: 0.26vw;
    width: 7.18vw;
    height: 4.1vw;
    border-radius: 2.05vw;
  }
  .c-btn__icon::before {
    width: 2.56vw;
    height: 1px;
    left: 2.31vw;
  }
  .c-btn__icon::after {
    width: 1.54vw;
    height: 1.54vw;
    left: 3.85vw;
    border-top: 1px solid #3D414D;
    border-right: 1px solid #3D414D;
  }
  .c-btn a:hover .c-btn__icon::before,
  .c-btn a:hover .c-btn__icon::after {
    -webkit-animation: none;
    animation: none;
  }
  .c-layout .c-layout__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10.26vw;
    padding: 0 5.13vw;
  }
  .c-layout .c-layout__head {
    position: static;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }
  .c-layout .c-layout__en {
    font-size: 3.08vw;
    line-height: 1.67;
    padding-left: 3.08vw;
  }
  .c-layout .c-layout__en::before {
    width: 1.54vw;
    height: 1.54vw;
    top: 1.54vw;
  }
  .c-layout .c-layout__title {
    font-size: 4.62vw;
    margin-top: 0.51vw;
  }
  .c-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.13vw;
  }
  .c-media + .c-media {
    margin-top: 15.38vw;
  }
  .c-media__image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }
  .c-media__image img {
    aspect-ratio: 348/232;
  }
  .c-media__contents {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  .c-media__head {
    gap: 1.28vw;
  }
  .c-media__en {
    font-size: 3.08vw;
  }
  .c-media__title {
    font-size: 4.1vw;
    line-height: 1.5;
  }
  .c-media__text {
    font-size: 3.59vw;
    line-height: 2.29;
    margin-top: 2.56vw;
  }
  .c-title {
    width: 100%;
    gap: 1.03vw;
  }
  .c-title__en {
    font-size: 3.08vw;
    padding-left: 3.08vw;
  }
  .c-title__en::before {
    width: 1.54vw;
    height: 1.54vw;
    top: 1.79vw;
  }
  .c-title__main {
    font-size: 13.85vw;
  }
  .common-fv {
    padding-top: calc(var(--header-height, 72px) + 2.56vw);
    padding-bottom: 10.26vw;
  }
  .common-fv .breadcrumb .box {
    gap: 2.05vw;
    font-size: 2.82vw;
  }
  .common-fv .breadcrumb .item {
    gap: 2.05vw;
  }
  .common-fv .breadcrumb .item:not(:last-of-type)::after {
    top: 0.26vw;
    width: 1.28vw;
    height: 1.28vw;
  }
  .common-fv .body {
    margin-top: 13.33vw;
  }
  .common-fv .title,
  .common-fv .title--small {
    font-size: 12.31vw;
    line-height: 1.13;
  }
  .common-fv .title--en {
    font-size: 13.85vw;
    line-height: 1;
  }
  .common-fv .sub {
    font-size: 5.13vw;
    line-height: 1.3;
    margin-top: 3.85vw;
  }
  .common-fv .head {
    margin-top: 5.13vw;
  }
  .common-fv .catch {
    font-size: 4.36vw;
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding-left: 3.85vw;
  }
  .common-fv .catch::before {
    width: 1.79vw;
    height: 1.79vw;
    top: 2.82vw;
  }
  .common-fv .texts {
    margin-top: 2.56vw;
  }
  .common-fv .text {
    font-size: 4.1vw;
    line-height: 1.5;
  }
  .common-to-top {
    padding: 11.79vw 0;
  }
  .common-to-top .btns {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8.21vw;
  }
  #abice-about {
    padding: 20.51vw 0 30.77vw;
  }
  #abice-about .text {
    font-size: 3.59vw;
    line-height: 2.29;
  }
  #abice-about .logo {
    max-width: 100%;
    margin-top: 10.26vw;
    margin-left: 0;
  }
  #abice-service {
    padding: 0 0 30.77vw;
  }
  #abice-image img {
    aspect-ratio: 390/372;
  }
  #abice-feature {
    padding: 30.77vw 0;
  }
  #firstmain-about {
    padding: 20.51vw 0 30.77vw;
  }
  #firstmain-about .text {
    font-size: 3.59vw;
    line-height: 2.29;
  }
  #firstmain-about .logo {
    max-width: 100%;
    margin-top: 10.26vw;
    margin-left: 0;
  }
  #firstmain-service {
    padding: 0 0 30.77vw;
  }
  #firstmain-image img {
    aspect-ratio: 390/372;
  }
  #firstmain-feature {
    padding: 30.77vw 0;
  }
  #group-ourgroup {
    padding: 20.51vw 0 15.38vw;
  }
  #group-ourgroup .box {
    max-width: 100%;
    border-radius: 20.51vw;
    padding: 7.69vw 5.13vw 10.77vw;
  }
  #group-ourgroup .en {
    font-size: 3.08vw;
    line-height: 1.67;
    padding-left: 3.08vw;
  }
  #group-ourgroup .en::before {
    width: 1.54vw;
    height: 1.54vw;
    top: 1.54vw;
  }
  #group-ourgroup .title {
    font-size: 4.62vw;
    margin-top: 0.77vw;
  }
  #group-ourgroup .logo {
    max-width: 68.72vw;
    margin-top: 5.9vw;
  }
  #group-ourgroup .items {
    gap: 10.26vw;
    padding: 0 5.13vw;
    margin-top: 15.38vw;
  }
  #group-ourgroup .item {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }
  #group-ourgroup .item a:hover {
    opacity: 1;
  }
  #group-ourgroup .item__image {
    border-radius: 3.08vw;
  }
  #group-ourgroup .item__image img {
    aspect-ratio: 270/135;
  }
  #group-ourgroup .item a:hover .item__image img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  #group-ourgroup .item__contents {
    margin-top: 3.08vw;
  }
  #group-ourgroup .item__title {
    font-size: 4.1vw;
  }
  #group-ourgroup .item__text {
    font-size: 3.59vw;
    margin-top: 1.79vw;
  }
  #group-business {
    padding: 15.38vw 0 30.77vw;
  }
  #hit-about {
    padding: 20.51vw 0 30.77vw;
  }
  #hit-about .text {
    font-size: 3.59vw;
    line-height: 2.29;
  }
  #hit-about .logo {
    max-width: 100%;
    margin-top: 10.26vw;
    margin-left: 0;
  }
  #hit-service {
    padding: 0 0 30.77vw;
  }
  #hit-image img {
    aspect-ratio: 390/372;
  }
  #hit-feature {
    padding: 30.77vw 0;
  }
  #message-contents {
    padding: 20.51vw 0;
  }
  #message-contents .deco {
    width: 100%;
    left: 0;
    -webkit-transform: none;
    transform: none;
  }
  #message-contents .deco__circle {
    width: 102.56vw;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #message-contents .deco__circle--02 {
    left: calc(50% - 30.77vw);
  }
  #message-contents .deco__circle--03 {
    left: calc(50% + 30.77vw);
  }
  #message-contents .deco__circle--01,
  #message-contents .deco__circle--04,
  #message-contents .deco__circle--05,
  #message-contents .deco__circle--06 {
    display: none;
  }
  #message-contents .body {
    max-width: none;
  }
  #message-contents .text {
    font-size: 3.59vw;
    line-height: 2.29;
  }
  #message-contents .box {
    margin-top: 5.13vw;
  }
  #message-contents .company {
    font-size: 3.08vw;
  }
  #message-contents .name {
    font-size: 4.62vw;
  }
  #takasago-about {
    padding: 20.51vw 0 30.77vw;
  }
  #takasago-about .text {
    font-size: 3.59vw;
    line-height: 2.29;
  }
  #takasago-about .logo {
    max-width: 100%;
    margin-top: 10.26vw;
    margin-left: 0;
  }
  #takasago-service {
    padding: 0 0 30.77vw;
  }
  #takasago-image img {
    aspect-ratio: 390/372;
  }
  #takasago-feature {
    padding: 30.77vw 0;
  }
  #wateragency-about {
    padding: 20.51vw 0 15.38vw;
  }
  #wateragency-about .text {
    font-size: 3.59vw;
    line-height: 2.29;
  }
  #wateragency-about .logo {
    max-width: 100%;
    margin-top: 10.26vw;
    margin-left: auto;
  }
  #wateragency-service {
    padding: 15.38vw 0 30.77vw;
  }
  #wateragency-image img {
    aspect-ratio: 390/372;
  }
  #wateragency-feature {
    padding: 30.77vw 0;
  }
  #top-fv {
    padding-top: calc(72px + 11.79vw);
    padding-bottom: 25.64vw;
  }
  #top-fv .body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 22.05vw;
  }
  #top-fv .message {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #top-fv .catch {
    font-size: 4.1vw;
    padding-left: 3.85vw;
  }
  #top-fv .catch::before {
    width: 1.79vw;
    height: 1.79vw;
    top: 2.82vw;
  }
  #top-fv .lead {
    font-size: 3.59vw;
    line-height: 2;
    margin-top: 2.05vw;
  }
  #top-fv .btn {
    margin-top: 3.33vw;
  }
  #top-fv .hero {
    gap: 3.59vw;
    margin-top: 0;
  }
  #top-fv .hero__title {
    font-size: 13.85vw;
    letter-spacing: 0.016em;
  }
  #top-fv .years {
    width: 89%;
    font-size: 2.82vw;
    padding-top: 2.05vw;
  }
  #top-fv .scroll {
    gap: 2.05vw;
    max-height: 100%;
    top: auto;
    right: 3.85vw;
    bottom: 7.69vw;
  }
  #top-fv .scroll__line {
    height: 82.05vw;
  }
  #top-fv .scroll__text {
    font-size: 2.82vw;
  }
  #top-history {
    padding: 30.77vw 0vw 0vw;
  }
  #top-history .contents {
    gap: 10.26vw;
  }
  #top-history .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3.08vw;
  }
  #top-history .title {
    font-size: 5.13vw;
  }
  #top-history .lead {
    font-size: 3.59vw;
    line-height: 1.86;
    margin-top: 2.05vw;
  }
  #top-history .arrows {
    gap: 4.1vw;
  }
  #top-history .arrow {
    width: 9.23vw;
    height: 6.15vw;
    border-radius: 4.62vw;
  }
  #top-history .arrow:hover {
    background-color: transparent;
    border-color: #E0E0E0;
  }
  #top-history .arrow::before {
    width: 1.79vw;
    height: 1.79vw;
  }
  #top-history .timeline {
    padding: 10.26vw 0vw;
  }
  #top-history .timeline__inner {
    -webkit-column-gap: 10.26vw;
    -moz-column-gap: 10.26vw;
    column-gap: 10.26vw;
    row-gap: 3.33vw;
    padding: 0 5.13vw;
    margin-top: 4.62vw;
  }
  #top-history .era__head {
    padding-left: 2.56vw;
  }
  #top-history .era__head::before {
    width: 2px;
    height: calc(100% + 3.59vw);
  }
  #top-history .era__title {
    font-size: 4.1vw;
  }
  #top-history .era__sub {
    font-size: 3.59vw;
    margin-top: 2.05vw;
  }
  #top-history .era__cards {
    gap: 10.26vw;
  }
  #top-history .era__cards::before {
    height: 2px;
    right: -5.13vw;
    left: -5.13vw;
  }
  #top-history .era:first-child .era__cards::before {
    left: calc(-1 * max(80px, (100vw - 1280px) / 2));
  }
  #top-history .era:last-child .era__cards::before {
    right: -5.13vw;
  }
  #top-history .card {
    max-width: 61.54vw;
    gap: 1.54vw;
  }
  #top-history .card::before {
    width: 6.15vw;
    height: 4px;
  }
  #top-history .card__year {
    font-size: 4.62vw;
  }
  #top-history .card__image img {
    aspect-ratio: 240/160;
  }
  #top-history .card__text {
    font-size: 3.59vw;
  }
  #top-loading .logo {
    height: 20.51vw;
  }
  #top-loading .logo__image {
    max-width: 30.77vw;
  }
  #top-loading .bar {
    width: 38.46vw;
    margin-top: 2.56vw;
  }
  #top-movie {
    padding: 8.72vw 5.13vw 30.77vw;
  }
  #top-movie .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10.26vw;
    padding-left: 0;
  }
  #top-movie .contents {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.13vw;
    width: 100%;
  }
  #top-movie .lead {
    font-size: 3.59vw;
    line-height: 1.86;
    margin-top: 0;
  }
  #top-movie .youtube {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    aspect-ratio: 350/197;
  }
  #top-service {
    padding: 23.85vw 0vw 20.51vw;
  }
  #top-service .deco {
    width: 100%;
    top: auto;
    bottom: 20.51vw;
    left: 0;
    height: 102.56vw;
    -webkit-transform: none;
    transform: none;
  }
  #top-service .deco__circle {
    width: 102.56vw;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #top-service .deco__circle--01 {
    left: calc(50% - 92.31vw);
  }
  #top-service .deco__circle--02 {
    left: calc(50% - 30.77vw);
  }
  #top-service .deco__circle--03 {
    left: calc(50% + 30.77vw);
  }
  #top-service .deco__circle--04 {
    left: calc(50% + 92.31vw);
  }
  #top-service .deco__circle--05,
  #top-service .deco__circle--06 {
    display: none;
  }
  #top-service .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 5.13vw;
  }
  #top-service .contents {
    max-width: none;
    gap: 1.28vw;
  }
  #top-service .catch {
    font-size: 5.13vw;
  }
  #top-service .text {
    font-size: 3.59vw;
    line-height: 1.86;
  }
  #top-service .btn {
    margin-top: 2.05vw;
  }
  #top-service .circle {
    position: relative;
    width: 100%;
    height: 102.56vw;
    top: auto;
    left: auto;
    margin-top: 7.18vw;
  }
  #top-service .ring {
    width: 71.79vw;
    top: 56.41vw;
    left: 50%;
  }
  #top-service .ring::before {
    -webkit-mask: -webkit-radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 7px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 7px));
  }
  #top-service .logo {
    width: 35.38vw;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
  }
  #top-service .circle.is-inview .logo {
    opacity: 1;
  }
  #top-service .logo--01 {
    top: 20.51vw;
    left: 50%;
  }
  #top-service .logo--02 {
    top: 46.15vw;
    left: calc(50% + 30.77vw);
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
  }
  #top-service .logo--03 {
    top: 82.31vw;
    left: calc(50% + 20.51vw);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  #top-service .logo--04 {
    top: 82.31vw;
    left: calc(50% - 20.51vw);
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
  }
  #top-service .logo--05 {
    top: 46.15vw;
    left: calc(50% - 30.77vw);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
  #top-service .logo__image {
    position: relative;
  }
  #top-service .logo__image::after {
    content: "";
    position: absolute;
    width: 3.85vw;
    height: 3.85vw;
    top: 27.18vw;
    left: 50%;
    border: 0.19vw solid #3D414D;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(#3D414D), to(#3D414D)) no-repeat center/2.05vw 0.19vw, -webkit-gradient(linear, left top, left bottom, from(#3D414D), to(#3D414D)) no-repeat center/0.19vw 2.05vw;
    background: -webkit-linear-gradient(#3D414D, #3D414D) no-repeat center/2.05vw 0.19vw, -webkit-linear-gradient(#3D414D, #3D414D) no-repeat center/0.19vw 2.05vw;
    background: linear-gradient(#3D414D, #3D414D) no-repeat center/2.05vw 0.19vw, linear-gradient(#3D414D, #3D414D) no-repeat center/0.19vw 2.05vw;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #top-service .logo__tip {
    display: none;
  }
  #top-service .modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  }
  #top-service .modal.is-open {
    opacity: 1;
    visibility: visible;
  }
  #top-service .modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
  }
  #top-service .modal__body {
    position: absolute;
    width: 79.49vw;
    top: 50%;
    left: 50%;
    background: #3D414D;
    border: 1px solid #fff;
    padding: 10.26vw 6.15vw 8.21vw;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #top-service .modal__close {
    position: absolute;
    width: 5.13vw;
    height: 5.13vw;
    top: 3.08vw;
    right: 3.08vw;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  #top-service .modal__close::before,
  #top-service .modal__close::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    background: #fff;
  }
  #top-service .modal__close::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #top-service .modal__close::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #top-service .modal__image {
    width: 35.38vw;
    margin: 0 auto;
  }
  #top-service .modal__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
  }
  #top-service .modal__text {
    font-size: 3.59vw;
    line-height: 1.86;
    margin-top: 3.08vw;
    text-align: center;
  }
  #top-service .modal__btn {
    margin-top: 5.13vw;
    text-align: center;
  }
  #top-synergy {
    padding: 41.03vw 0vw 20.51vw;
  }
  #top-synergy .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 5.13vw;
  }
  #top-synergy .title {
    font-size: 5.13vw;
  }
  #top-synergy .text {
    font-size: 3.59vw;
    line-height: 1.86;
    margin-top: 2.05vw;
  }
  #top-synergy .btn {
    margin-top: 3.33vw;
  }
  #top-synergy .image {
    width: 127.69vw;
    top: 0;
    left: -19.23vw;
    padding-right: 0;
    margin-top: 7.69vw;
    z-index: 1;
  }
  .u-fade-left {
    translate: -7.69vw 0;
  }
  .u-chars span {
    -webkit-transform: translateX(5.13vw);
    transform: translateX(5.13vw);
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}

@media (max-width: 375px){
  html {
    font-size: 4.0533333333vw;
  }
}

@media (prefers-reduced-motion: reduce){
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}