@charset "UTF-8";
html {
  font-size: calc(100vw * 16 / 390);
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 767.9px) and (max-width: 1440px) {
  html {
    font-size: calc(100vw * 16 / 1440);
  }
}
@media screen and (min-width: 390px) and (max-width: 767.9px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767.9px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

a {
  text-decoration: none;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

main {
  overflow-x: clip;
  color: #181818;
}

@media screen and (max-width: 767.9px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .md-show {
    display: block;
  }
}

[id] {
  scroll-margin-top: 4.375rem;
}

.btn-wrap {
  max-width: 20.125rem;
}
@media screen and (max-width: 767.9px) {
  .btn-wrap {
    margin-inline: auto;
    width: 100%;
  }
}

.btn {
  display: block;
  width: 100%;
  background-color: #F14D61;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  padding: 1.28125rem 0.625rem;
  -webkit-box-shadow: 0 0 0.625rem 0 rgba(69, 69, 69, 0.25);
          box-shadow: 0 0 0.625rem 0 rgba(69, 69, 69, 0.25);
  position: relative;
}
.btn::before {
  position: absolute;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.875rem;
  background-color: #fff;
  border-radius: 100vw;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn:hover {
  opacity: 1;
}
.btn:hover::before {
  -webkit-transform: translateY(-50%) scale(1.75);
          transform: translateY(-50%) scale(1.75);
}

.title-en {
  display: block;
  font-size: 2.625rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .title-en {
    font-size: 2rem;
  }
}

.title-ja {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .title-ja {
    font-size: 0.625rem;
  }
}

.page-bg {
  background-color: #F8F8F8;
}

.page-mv {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0rem, transparent), color-stop(0rem, #fff), to(#fff));
  background: linear-gradient(to bottom, transparent 0, transparent 0rem, #fff 0rem, #fff 100%);
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page-mv {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0rem, transparent), color-stop(0rem, #fff), to(#fff));
    background: linear-gradient(to bottom, transparent 0, transparent 0rem, #fff 0rem, #fff 100%);
  }
}
.page-mv::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5.625rem;
  bottom: -5.625rem;
  left: 0;
  background-image: url(../images/page-mv_bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .page-mv::before {
    height: 1.9375rem;
    bottom: -1.9375rem;
    background-image: url(../images/page-mv_bg-sp.png);
  }
}

.page-mv__inner {
  padding-top: 9.6875rem;
  max-width: 90rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page-mv__inner {
    padding-top: 5rem;
    height: 9.375rem;
  }
}

@media screen and (max-width: 767.9px) {
  .page-mv__inner.page-mv__inner--social-media {
    padding-top: 3.75rem;
  }
}

@media screen and (max-width: 767.9px) {
  .page-mv__inner.page-mv__inner--social-media .page-mv__title-en {
    line-height: 1.2;
  }
}

.page-mv__title {
  text-align: center;
}

.page-mv__title-en {
  display: block;
  font-size: 3.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .page-mv__title-en {
    font-size: 2rem;
  }
}

.page-mv__title-ja {
  margin-top: -0.3125rem;
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .page-mv__title-ja {
    margin-top: 0;
    font-size: 0.75rem;
  }
}

.page-contact {
  margin-top: 6.25rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(12.3125rem, transparent), color-stop(12.3125rem, #3FB78D), to(#3FB78D));
  background: linear-gradient(to bottom, transparent 0, transparent 12.3125rem, #3FB78D 12.3125rem, #3FB78D 100%);
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page-contact {
    margin-top: 5rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(2.1875rem, transparent), color-stop(2.1875rem, #3FB78D), to(#3FB78D));
    background: linear-gradient(to bottom, transparent 0, transparent 2.1875rem, #3FB78D 2.1875rem, #3FB78D 100%);
  }
}
.page-contact::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 12.3125rem;
  top: 0.0625rem;
  left: 0;
  background-image: url(../images/page-contact_bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .page-contact::before {
    height: 2.1875rem;
    background-image: url(../images/page-contact_bg-sp.png);
  }
}

.page-contact__inner {
  max-width: 45rem;
  margin-inline: auto;
  padding-top: 3rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 767.9px) {
  .page-contact__inner {
    max-width: 41.875rem;
    padding: 2.625rem 2.1875rem 1.875rem;
  }
}

.page-contact__title {
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-contact__title-en {
  display: block;
  font-size: 2.125rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .page-contact__title-en {
    font-size: 1.25rem;
  }
}

.page-contact__title-ja {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .page-contact__title-ja {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.page-contact__btn-wrap {
  margin-top: 2.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  position: relative;
  z-index: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .page-contact__btn-wrap {
    margin-top: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.page-contact__btn {
  display: block;
  width: 100%;
  background-color: #21A4ED;
  padding: 1.0625rem 1.75rem;
  border-radius: 0.625rem;
  border: 2px solid #fff;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .page-contact__btn {
    padding: 0.6875rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid #fff;
  }
}
.page-contact__btn:hover {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.page-contact__btn-en {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.page-contact__btn-ja {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .page-contact__btn-ja {
    margin-top: -0.3125rem;
    font-size: 1.125rem;
  }
}

.page-contact__btn--recruit {
  background-color: #FAFA6E;
}
.page-contact__btn--recruit:hover {
  opacity: 1;
}

.page-contact__btn--recruit .page-contact__btn-en,
.page-contact__btn--recruit .page-contact__btn-ja {
  color: #181818;
}

.breadcrumb {
  margin-top: 6.25rem;
  max-width: 70.25rem;
  margin-inline: auto;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .breadcrumb {
    margin-top: 5rem;
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.breadcrumb__between {
  position: relative;
}
.breadcrumb__between::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  left: 50%;
  background-image: url(../images/breadcrumb-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumb a {
  color: #181818;
  white-space: nowrap;
}

.slideInBottom {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.slideInBottom.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.blob {
  position: absolute;
  z-index: -1;
}

@-webkit-keyframes blobFloat01 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(1.875rem, -1.25rem);
            transform: translate(1.875rem, -1.25rem);
  }
  50% {
    -webkit-transform: translate(-1.5625rem, 2.1875rem);
            transform: translate(-1.5625rem, 2.1875rem);
  }
  75% {
    -webkit-transform: translate(1.25rem, -0.9375rem);
            transform: translate(1.25rem, -0.9375rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes blobFloat01 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(1.875rem, -1.25rem);
            transform: translate(1.875rem, -1.25rem);
  }
  50% {
    -webkit-transform: translate(-1.5625rem, 2.1875rem);
            transform: translate(-1.5625rem, 2.1875rem);
  }
  75% {
    -webkit-transform: translate(1.25rem, -0.9375rem);
            transform: translate(1.25rem, -0.9375rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes blobFloat02 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-2.1875rem, 1.5625rem);
            transform: translate(-2.1875rem, 1.5625rem);
  }
  50% {
    -webkit-transform: translate(1.5625rem, -1.875rem);
            transform: translate(1.5625rem, -1.875rem);
  }
  75% {
    -webkit-transform: translate(-1.25rem, 1.25rem);
            transform: translate(-1.25rem, 1.25rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes blobFloat02 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-2.1875rem, 1.5625rem);
            transform: translate(-2.1875rem, 1.5625rem);
  }
  50% {
    -webkit-transform: translate(1.5625rem, -1.875rem);
            transform: translate(1.5625rem, -1.875rem);
  }
  75% {
    -webkit-transform: translate(-1.25rem, 1.25rem);
            transform: translate(-1.25rem, 1.25rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes blobFloat03 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(2.5rem, 0.9375rem);
            transform: translate(2.5rem, 0.9375rem);
  }
  50% {
    -webkit-transform: translate(-1.875rem, -1.5625rem);
            transform: translate(-1.875rem, -1.5625rem);
  }
  75% {
    -webkit-transform: translate(0.9375rem, 1.875rem);
            transform: translate(0.9375rem, 1.875rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes blobFloat03 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(2.5rem, 0.9375rem);
            transform: translate(2.5rem, 0.9375rem);
  }
  50% {
    -webkit-transform: translate(-1.875rem, -1.5625rem);
            transform: translate(-1.875rem, -1.5625rem);
  }
  75% {
    -webkit-transform: translate(0.9375rem, 1.875rem);
            transform: translate(0.9375rem, 1.875rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes blobFloat04 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-1.5625rem, -2.1875rem);
            transform: translate(-1.5625rem, -2.1875rem);
  }
  50% {
    -webkit-transform: translate(2.1875rem, 1.25rem);
            transform: translate(2.1875rem, 1.25rem);
  }
  75% {
    -webkit-transform: translate(-0.9375rem, -1.5625rem);
            transform: translate(-0.9375rem, -1.5625rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes blobFloat04 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-1.5625rem, -2.1875rem);
            transform: translate(-1.5625rem, -2.1875rem);
  }
  50% {
    -webkit-transform: translate(2.1875rem, 1.25rem);
            transform: translate(2.1875rem, 1.25rem);
  }
  75% {
    -webkit-transform: translate(-0.9375rem, -1.5625rem);
            transform: translate(-0.9375rem, -1.5625rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes blobFloat01Mobile {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0.9375rem, -0.625rem);
            transform: translate(0.9375rem, -0.625rem);
  }
  50% {
    -webkit-transform: translate(-0.75rem, 1.0625rem);
            transform: translate(-0.75rem, 1.0625rem);
  }
  75% {
    -webkit-transform: translate(0.625rem, -0.4375rem);
            transform: translate(0.625rem, -0.4375rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes blobFloat01Mobile {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0.9375rem, -0.625rem);
            transform: translate(0.9375rem, -0.625rem);
  }
  50% {
    -webkit-transform: translate(-0.75rem, 1.0625rem);
            transform: translate(-0.75rem, 1.0625rem);
  }
  75% {
    -webkit-transform: translate(0.625rem, -0.4375rem);
            transform: translate(0.625rem, -0.4375rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes blobFloat02Mobile {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-1.0625rem, 0.75rem);
            transform: translate(-1.0625rem, 0.75rem);
  }
  50% {
    -webkit-transform: translate(0.75rem, -0.9375rem);
            transform: translate(0.75rem, -0.9375rem);
  }
  75% {
    -webkit-transform: translate(-0.625rem, 0.625rem);
            transform: translate(-0.625rem, 0.625rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes blobFloat02Mobile {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-1.0625rem, 0.75rem);
            transform: translate(-1.0625rem, 0.75rem);
  }
  50% {
    -webkit-transform: translate(0.75rem, -0.9375rem);
            transform: translate(0.75rem, -0.9375rem);
  }
  75% {
    -webkit-transform: translate(-0.625rem, 0.625rem);
            transform: translate(-0.625rem, 0.625rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes blobFloat03Mobile {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(1.25rem, 0.4375rem);
            transform: translate(1.25rem, 0.4375rem);
  }
  50% {
    -webkit-transform: translate(-0.9375rem, -0.75rem);
            transform: translate(-0.9375rem, -0.75rem);
  }
  75% {
    -webkit-transform: translate(0.4375rem, 0.9375rem);
            transform: translate(0.4375rem, 0.9375rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes blobFloat03Mobile {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(1.25rem, 0.4375rem);
            transform: translate(1.25rem, 0.4375rem);
  }
  50% {
    -webkit-transform: translate(-0.9375rem, -0.75rem);
            transform: translate(-0.9375rem, -0.75rem);
  }
  75% {
    -webkit-transform: translate(0.4375rem, 0.9375rem);
            transform: translate(0.4375rem, 0.9375rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes blobFloat04Mobile {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-0.75rem, -1.0625rem);
            transform: translate(-0.75rem, -1.0625rem);
  }
  50% {
    -webkit-transform: translate(1.0625rem, 0.625rem);
            transform: translate(1.0625rem, 0.625rem);
  }
  75% {
    -webkit-transform: translate(-0.4375rem, -0.75rem);
            transform: translate(-0.4375rem, -0.75rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes blobFloat04Mobile {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-0.75rem, -1.0625rem);
            transform: translate(-0.75rem, -1.0625rem);
  }
  50% {
    -webkit-transform: translate(1.0625rem, 0.625rem);
            transform: translate(1.0625rem, 0.625rem);
  }
  75% {
    -webkit-transform: translate(-0.4375rem, -0.75rem);
            transform: translate(-0.4375rem, -0.75rem);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.blob-green {
  width: 37.125rem;
  height: 29.375rem;
  top: -8.625rem;
  left: 10.25rem;
  -webkit-animation: blobFloat01 7s ease-in-out infinite;
          animation: blobFloat01 7s ease-in-out infinite;
}
@media screen and (max-width: 767.9px) {
  .blob-green {
    width: 13.625rem;
    height: 10.75rem;
    top: -4.6875rem;
    left: -3.4375rem;
    -webkit-animation: blobFloat01Mobile 10s ease-in-out infinite;
            animation: blobFloat01Mobile 10s ease-in-out infinite;
  }
}
.blob-green svg {
  width: 37.125rem;
  height: 29.375rem;
}
@media screen and (max-width: 767.9px) {
  .blob-green svg {
    width: 13.625rem;
    height: 10.75rem;
  }
}

.blob-orange {
  width: 32.25rem;
  height: 28.5rem;
  top: -5.125rem;
  right: -3.9375rem;
  -webkit-animation: blobFloat02 9s ease-in-out infinite;
          animation: blobFloat02 9s ease-in-out infinite;
}
@media screen and (max-width: 767.9px) {
  .blob-orange {
    width: 19.4375rem;
    height: 17.1875rem;
    top: -6.25rem;
    right: -6.875rem;
    -webkit-animation: blobFloat02Mobile 12s ease-in-out infinite;
            animation: blobFloat02Mobile 12s ease-in-out infinite;
  }
}
.blob-orange svg {
  width: 32.25rem;
  height: 28.5rem;
}
@media screen and (max-width: 767.9px) {
  .blob-orange svg {
    width: 19.4375rem;
    height: 17.1875rem;
  }
}

.blob-red {
  width: 33rem;
  height: 24.75rem;
  top: 22.8125rem;
  left: -12.9375rem;
  -webkit-animation: blobFloat03 8s ease-in-out infinite;
          animation: blobFloat03 8s ease-in-out infinite;
}
@media screen and (max-width: 767.9px) {
  .blob-red {
    width: 14.5625rem;
    height: 10.875rem;
    top: 23.4375rem;
    left: -7.5rem;
    -webkit-animation: blobFloat03Mobile 11s ease-in-out infinite;
            animation: blobFloat03Mobile 11s ease-in-out infinite;
  }
}
.blob-red svg {
  width: 33rem;
  height: 24.75rem;
}
@media screen and (max-width: 767.9px) {
  .blob-red svg {
    width: 14.5625rem;
    height: 10.875rem;
  }
}

.blob-yellow {
  width: 26.875rem;
  height: 28.6875rem;
  top: 2.5rem;
  left: -2.375rem;
  -webkit-animation: blobFloat02 6s ease-in-out infinite;
          animation: blobFloat02 6s ease-in-out infinite;
}
@media screen and (max-width: 767.9px) {
  .blob-yellow {
    width: 11.3125rem;
    height: 12.0625rem;
    top: 11.875rem;
    -webkit-animation: blobFloat02Mobile 8s ease-in-out infinite;
            animation: blobFloat02Mobile 8s ease-in-out infinite;
    left: -0.625rem;
  }
}
.blob-yellow svg {
  width: 26.875rem;
  height: 28.6875rem;
}
@media screen and (max-width: 767.9px) {
  .blob-yellow svg {
    width: 11.3125rem;
    height: 12.0625rem;
  }
}

.blob-blue {
  width: 49.3125rem;
  height: 39.125rem;
  top: -10.625rem;
  right: -17.5rem;
  -webkit-animation: blobFloat01 10s ease-in-out infinite;
          animation: blobFloat01 10s ease-in-out infinite;
}
@media screen and (max-width: 767.9px) {
  .blob-blue {
    width: 28.875rem;
    height: 22.875rem;
    top: 1.25rem;
    -webkit-animation: blobFloat01Mobile 13s ease-in-out infinite;
            animation: blobFloat01Mobile 13s ease-in-out infinite;
    right: -16.25rem;
  }
}
.blob-blue svg {
  width: 49.3125rem;
  height: 39.125rem;
}
@media screen and (max-width: 767.9px) {
  .blob-blue svg {
    width: 28.875rem;
    height: 22.875rem;
  }
}

.blob-orange-02 {
  width: 29.8125rem;
  height: 23.625rem;
  top: 18.75rem;
  left: -27rem;
}
@media screen and (max-width: 767.9px) {
  .blob-orange-02 {
    display: none;
  }
}
.blob-orange-02 svg {
  width: 29.8125rem;
  height: 23.625rem;
}

.blob-blue-02 {
  width: 32.25rem;
  height: 28.5rem;
  top: -8.75rem;
  left: -16.875rem;
  -webkit-animation: blobFloat03 8s ease-in-out infinite;
          animation: blobFloat03 8s ease-in-out infinite;
}
@media screen and (max-width: 767.9px) {
  .blob-blue-02 {
    width: 13.875rem;
    height: 12.3125rem;
    top: 3.4375rem;
    -webkit-animation: blobFloat03Mobile 11s ease-in-out infinite;
            animation: blobFloat03Mobile 11s ease-in-out infinite;
    left: -2.5rem;
  }
}
.blob-blue-02 svg {
  width: 32.25rem;
  height: 28.5rem;
}
@media screen and (max-width: 767.9px) {
  .blob-blue-02 svg {
    width: 13.875rem;
    height: 12.3125rem;
  }
}

.blob-green-02 {
  width: 26.125rem;
  height: 21.125rem;
  top: 66.25rem;
  right: -15rem;
  -webkit-animation: blobFloat04 6s ease-in-out infinite;
          animation: blobFloat04 6s ease-in-out infinite;
}
@media screen and (max-width: 767.9px) {
  .blob-green-02 {
    display: none;
  }
}
.blob-green-02 svg {
  width: 26.125rem;
  height: 21.125rem;
}

.blob-yellow-02 {
  width: 18.5625rem;
  height: 19.8125rem;
  top: 137.5rem;
  -webkit-animation: blobFloat01 9s ease-in-out infinite;
          animation: blobFloat01 9s ease-in-out infinite;
  left: -12.5rem;
}
@media screen and (max-width: 767.9px) {
  .blob-yellow-02 {
    display: none;
  }
}
.blob-yellow-02 svg {
  width: 18.5625rem;
  height: 19.8125rem;
}

.blob-orange-03 {
  width: 40.125rem;
  height: 31.75rem;
  bottom: -15rem;
  -webkit-animation: blobFloat02 7s ease-in-out infinite;
          animation: blobFloat02 7s ease-in-out infinite;
  right: -26.875rem;
  z-index: 5;
}
@media screen and (max-width: 767.9px) {
  .blob-orange-03 {
    width: 16.0625rem;
    -webkit-animation: blobFloat02Mobile 9s ease-in-out infinite;
            animation: blobFloat02Mobile 9s ease-in-out infinite;
    height: 12.6875rem;
    bottom: -6.25rem;
    right: -7.5rem;
  }
}
.blob-orange-03 svg {
  width: 40.125rem;
  height: 31.75rem;
}
@media screen and (max-width: 767.9px) {
  .blob-orange-03 svg {
    width: 16.0625rem;
    height: 12.6875rem;
  }
}

.blob-blue-03 {
  width: 38.625rem;
  height: 30.4375rem;
  bottom: 8.4375rem;
  -webkit-animation: blobFloat03 8s ease-in-out infinite;
          animation: blobFloat03 8s ease-in-out infinite;
  left: -25.625rem;
}
@media screen and (max-width: 767.9px) {
  .blob-blue-03 {
    width: 17.0625rem;
    height: 13.4375rem;
    -webkit-animation: blobFloat03Mobile 11s ease-in-out infinite;
            animation: blobFloat03Mobile 11s ease-in-out infinite;
    bottom: -3.75rem;
    left: -8.125rem;
  }
}
.blob-blue-03 svg {
  width: 38.625rem;
  height: 30.4375rem;
}
@media screen and (max-width: 767.9px) {
  .blob-blue-03 svg {
    width: 17.0625rem;
    height: 13.4375rem;
  }
}

.blob-orange-04 {
  width: 40.125rem;
  height: 31.75rem;
  top: 42.5rem;
  -webkit-animation: blobFloat04 6s ease-in-out infinite;
          animation: blobFloat04 6s ease-in-out infinite;
  right: -8.125rem;
  z-index: 0;
}
@media screen and (max-width: 767.9px) {
  .blob-orange-04 {
    width: 17.8125rem;
    -webkit-animation: blobFloat04Mobile 8s ease-in-out infinite;
            animation: blobFloat04Mobile 8s ease-in-out infinite;
    height: 14.0625rem;
    top: 18.75rem;
    right: -5.625rem;
  }
}
.blob-orange-04 svg {
  width: 40.125rem;
  height: 31.75rem;
}
@media screen and (max-width: 767.9px) {
  .blob-orange-04 svg {
    width: 17.8125rem;
    height: 14.0625rem;
  }
}

@media screen and (max-width: 767.9px) {
  .blob-orange-04.blob-orange-04--about {
    top: 28.125rem;
    right: -5.625rem;
  }
}
@media screen and (max-width: 500px) {
  .blob-orange-04.blob-orange-04--about {
    top: 21.875rem;
    right: -5.625rem;
  }
}

.blob-yellow-03 {
  width: 28.4375rem;
  height: 30.375rem;
  top: 71.875rem;
  -webkit-animation: blobFloat01 9s ease-in-out infinite;
          animation: blobFloat01 9s ease-in-out infinite;
  left: -6.25rem;
  z-index: 0;
}
@media screen and (max-width: 767.9px) {
  .blob-yellow-03 {
    width: 16.9375rem;
    -webkit-animation: blobFloat01Mobile 12s ease-in-out infinite;
            animation: blobFloat01Mobile 12s ease-in-out infinite;
    height: 18.0625rem;
    top: 86.875rem;
    left: -5.625rem;
  }
}
.blob-yellow-03 svg {
  width: 28.4375rem;
  height: 30.375rem;
}
@media screen and (max-width: 767.9px) {
  .blob-yellow-03 svg {
    width: 16.9375rem;
    height: 18.0625rem;
  }
}

.blob-yellow-03.blob-yellow-03--mvv {
  top: 46.875rem;
  left: -6.25rem;
}
@media screen and (max-width: 767.9px) {
  .blob-yellow-03.blob-yellow-03--mvv {
    top: 30rem;
    left: -5.625rem;
  }
}

.blob-service-01 {
  width: 33rem;
  height: 24.75rem;
  top: 12.5rem;
  -webkit-animation: blobFloat02 7s ease-in-out infinite;
          animation: blobFloat02 7s ease-in-out infinite;
  left: -19.375rem;
  z-index: 5;
}
@media screen and (max-width: 767.9px) {
  .blob-service-01 {
    width: 14.5625rem;
    -webkit-animation: blobFloat02Mobile 9s ease-in-out infinite;
            animation: blobFloat02Mobile 9s ease-in-out infinite;
    height: 10.875rem;
    top: 18.75rem;
    left: -4.375rem;
  }
}
.blob-service-01 svg {
  width: 33rem;
  height: 24.75rem;
}
@media screen and (max-width: 767.9px) {
  .blob-service-01 svg {
    width: 14.5625rem;
    height: 10.875rem;
  }
}

.blob-service-02 {
  width: 21.5rem;
  height: 16.0625rem;
  top: 15.625rem;
  -webkit-animation: blobFloat04 8s ease-in-out infinite;
          animation: blobFloat04 8s ease-in-out infinite;
  right: -25rem;
  z-index: 5;
}
@media screen and (max-width: 767.9px) {
  .blob-service-02 {
    width: 11.25rem;
    -webkit-animation: blobFloat04Mobile 10s ease-in-out infinite;
            animation: blobFloat04Mobile 10s ease-in-out infinite;
    height: 8.4375rem;
    top: -1.25rem;
    right: -5rem;
  }
}
.blob-service-02 svg {
  width: 21.5rem;
  height: 16.0625rem;
}
@media screen and (max-width: 767.9px) {
  .blob-service-02 svg {
    width: 11.25rem;
    height: 8.4375rem;
  }
}

.blob-profile {
  width: 41.9375rem;
  height: 33.875rem;
  top: 1.875rem;
  -webkit-animation: blobFloat04 6s ease-in-out infinite;
          animation: blobFloat04 6s ease-in-out infinite;
  right: -18.75rem;
  z-index: 5;
}
@media screen and (max-width: 767.9px) {
  .blob-profile {
    width: 11.1875rem;
    -webkit-animation: blobFloat04Mobile 8s ease-in-out infinite;
            animation: blobFloat04Mobile 8s ease-in-out infinite;
    height: 9rem;
    top: 13.125rem;
    right: -1.25rem;
  }
}
.blob-profile svg {
  width: 41.9375rem;
  height: 33.875rem;
}
@media screen and (max-width: 767.9px) {
  .blob-profile svg {
    width: 11.1875rem;
    height: 9rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 7.1875rem;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .header {
    height: 3.75rem;
  }
}
.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.header__inner {
  width: 100%;
  max-width: 81.6875rem;
  margin-inline: auto;
  height: inherit;
  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;
}
@media screen and (max-width: 767.9px) {
  .header__inner {
    padding: 0 1.25rem;
  }
}

@media screen and (max-width: 767.9px) {
  .header__name {
    width: 7.625rem;
  }
}

.header__nav {
  height: inherit;
}

.header__nav-items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}

.header__nav-item {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item--contact {
  height: auto;
}

.header__nav-item--recruit {
  height: auto;
  margin-left: -1.25rem;
}

.header__nav-link {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  color: #181818;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2.5rem;
  width: 100%;
  height: 0.0625rem;
  background: #181818;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header__nav-link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.header__nav-link--contact {
  background-color: #181818;
  color: #fff;
  border-radius: 100vw;
  font-size: 0.725rem;
  width: 9.8125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem;
  position: relative;
}
.header__nav-link--contact::before {
  position: absolute;
  content: "";
  width: 0.225rem;
  height: 0.225rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1.3125rem;
  background-color: #fff;
  border-radius: 100vw;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__nav-link--contact::after {
  display: none;
}
.header__nav-link--contact:hover {
  opacity: 1;
}
.header__nav-link--contact:hover::before {
  -webkit-transform: translateY(-50%) scale(3);
          transform: translateY(-50%) scale(3);
}

.header__nav-link--recruit {
  background-color: #fff;
  color: #181818;
  border-radius: 100vw;
  font-size: 0.725rem;
  width: 9.8125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem;
  position: relative;
  -webkit-box-shadow: 0 0 0.4375rem 0 rgba(69, 69, 69, 0.25);
          box-shadow: 0 0 0.4375rem 0 rgba(69, 69, 69, 0.25);
}
.header__nav-link--recruit::before {
  position: absolute;
  content: "";
  width: 0.225rem;
  height: 0.225rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1.3125rem;
  background-color: #181818;
  border-radius: 100vw;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__nav-link--recruit::after {
  display: none;
}
.header__nav-link--recruit:hover {
  opacity: 1;
}
.header__nav-link--recruit:hover::before {
  -webkit-transform: translateY(-50%) scale(3);
          transform: translateY(-50%) scale(3);
}

.hamburger {
  position: fixed;
  top: 0.75rem;
  right: 1.375rem;
  z-index: 9999;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 100vw;
  cursor: pointer;
  -webkit-box-shadow: 0 0 0.209375rem 0 rgba(24, 24, 24, 0.25);
          box-shadow: 0 0 0.209375rem 0 rgba(24, 24, 24, 0.25);
  background-color: #fff;
}

.hamburger span {
  position: absolute;
  left: 0;
  background-color: #181818;
  width: 1rem;
  height: 0.0625rem;
  display: inline-block;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0.73125rem;
  left: 0.625rem;
}

.hamburger span:nth-child(2) {
  top: 1.1rem;
  left: 0.625rem;
}

.hamburger span:nth-child(3) {
  bottom: 0.73125rem;
  left: 0.625rem;
}

.hamburger.is-active span:nth-child(1) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 1;
}

.hamburger.is-active span:nth-child(3) {
  opacity: 0;
}

.drawer-menu {
  width: 100%;
  height: 100vh;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5000;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
}

.drawer-menu__name {
  position: absolute;
  top: 1.1875rem;
  left: 1.25rem;
  z-index: 9999;
  width: 7.625rem;
  height: 1.3125rem;
}

.drawer-menu__inner {
  max-width: 31.25rem;
  width: 100%;
  margin-inline: auto;
  padding: 3.75rem 2.1875rem 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  -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;
}

.drawer-menu__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer-menu__item {
  width: 100%;
  display: inline-block;
  padding: 0.9375rem 0;
}

.drawer-menu__item:not(:last-child) {
  border-bottom: 1px solid #DADADA;
}

.drawer-menu__link {
  color: #181818;
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-block;
  width: 100%;
}

.drawer-menu__link-en {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.drawer-menu__link-ja {
  display: block;
  font-size: 0.625rem;
}

.drawer-menu__sub-item {
  padding: 0.625rem 0;
}

.drawer-menu__sub-link {
  color: #181818;
}

.drawer-menu__sub-link-en {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.drawer-menu__sub-link-ja {
  display: block;
  font-size: 0.625rem;
}

.drawer-menu__items.drawer-menu__items--contact-recruit {
  margin-top: 0.9375rem;
  gap: 1.25rem;
}

.drawer-menu__item.drawer-menu__item--contact {
  border-bottom: none;
  max-width: 17.5rem;
  margin-inline: auto;
  padding: 0;
}

.drawer-menu__item.drawer-menu__item--contact .drawer-menu__link {
  background-color: #181818;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  display: block;
  width: 100%;
  border-radius: 100vw;
  padding: 0.96875rem 0;
  -webkit-box-shadow: 0 0 0.4375rem 0 rgba(24, 24, 24, 0.25);
          box-shadow: 0 0 0.4375rem 0 rgba(24, 24, 24, 0.25);
  position: relative;
}
.drawer-menu__item.drawer-menu__item--contact .drawer-menu__link::before {
  position: absolute;
  content: "";
  width: 0.225rem;
  height: 0.225rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 2.125rem;
  background-color: #fff;
  border-radius: 100vw;
}

.drawer-menu__item.drawer-menu__item--recruit {
  border-bottom: none;
  max-width: 17.5rem;
  margin-inline: auto;
  padding: 0;
}

.drawer-menu__item.drawer-menu__item--recruit .drawer-menu__link {
  background-color: #fff;
  color: #181818;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  display: block;
  width: 100%;
  border-radius: 100vw;
  padding: 0.96875rem 0;
  -webkit-box-shadow: 0 0 0.4375rem 0 rgba(24, 24, 24, 0.25);
          box-shadow: 0 0 0.4375rem 0 rgba(24, 24, 24, 0.25);
  position: relative;
}
.drawer-menu__item.drawer-menu__item--recruit .drawer-menu__link::before {
  position: absolute;
  content: "";
  width: 0.225rem;
  height: 0.225rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 2.125rem;
  background-color: #181818;
  border-radius: 100vw;
}

.header__nav-item--dropdown {
  position: relative;
  margin-right: 0.625rem;
}
.header__nav-item--dropdown::before {
  position: absolute;
  content: "";
  width: 0.75rem;
  height: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -1.25rem;
  background-image: url(../images/icon_header-menu-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.header__nav-item--dropdown::before::after {
  display: none;
}
.header__nav-item--dropdown::before:hover {
  opacity: 1;
}
.header__nav-item--dropdown::before:hover::before {
  -webkit-transform: translateY(-50%) scale(3);
          transform: translateY(-50%) scale(3);
}
.header__nav-item--dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__dropdown {
  margin-top: -1.25rem;
  position: absolute;
  top: 100%;
  left: -1.875rem;
  background-color: #fff;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 27.875rem;
}

.header__dropdown__main {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.header__dropdown__main::before {
  position: absolute;
  content: "";
  width: 0.0625rem;
  height: 8rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background-color: #DADADA;
}

.header__dropdown-main-link {
  display: block;
  text-decoration: none;
  color: #181818;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  padding: 3.75rem 2.5rem;
  width: 100%;
}
.header__dropdown-main-link:hover {
  opacity: 1;
  color: #F14D61;
}

.header__dropdown__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.875rem 0;
}

.header__dropdown-link-en {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.header__dropdown-link-ja {
  display: block;
  font-size: 0.625rem;
}

.header__dropdown-items {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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.9375rem;
  white-space: nowrap;
  position: relative;
}
.header__dropdown-items::before {
  position: absolute;
  content: "";
  width: 0.0625rem;
  height: 8rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background-color: #DADADA;
}
.header__dropdown-items:last-child::before {
  display: none;
}

.header__dropdown-item {
  list-style: none;
}
.header__dropdown-item:last-child {
  border-bottom: none;
}

.header__dropdown-link {
  display: block;
  padding: 0 1.875rem;
  text-decoration: none;
  color: #181818;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__dropdown-link:hover {
  opacity: 1;
  color: #F14D61;
}

.footer {
  background-color: #F14D61;
}

.footer__inner {
  max-width: 63.8125rem;
  margin-inline: auto;
  padding: 5rem 0;
}
@media screen and (max-width: 767.9px) {
  .footer__inner {
    max-width: 41.875rem;
    padding: 2.9375rem 2.1875rem 1.25rem;
  }
}

.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8.4375rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.footer__menu {
  position: relative;
}
.footer__menu::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 14.375rem;
  top: 0;
  right: -1.875rem;
  background-color: #fff;
}
@media screen and (max-width: 767.9px) {
  .footer__menu::before {
    display: none;
  }
}

.footer__menu-wrap:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .footer__menu-wrap:not(:first-child) {
    margin-top: 1.5625rem;
  }
}

.footer__menu-link {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.footer__menu-items {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  row-gap: 0.9375rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767.9px) {
  .footer__menu-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__menu-item-link {
  color: #fff;
  font-size: 0.875rem;
}

.footer__btn-wrap {
  margin-top: 1.875rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .footer__btn-wrap {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 1.25rem 0;
    margin-top: 0;
    gap: 1.25rem;
    max-width: 100%;
  }
}

.footer__btn {
  display: block;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.footer__btn--contact.btn {
  background-color: #181818;
}

.footer__btn--recruit.btn {
  background-color: #fff;
  color: #181818;
}
.footer__btn--recruit.btn::before {
  background-color: #181818;
}

.footer__logo-privacy-policy-wrap {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767.9px) {
  .footer__logo-privacy-policy-wrap {
    margin-top: 1.25rem;
    -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;
  }
}

@media screen and (max-width: 767.9px) {
  .footer__logo-wrap {
    margin-top: 0.625rem;
  }
}

.footer__logo img {
  width: 22rem;
  height: 3.75rem;
}
@media screen and (max-width: 767.9px) {
  .footer__logo img {
    width: 19.6875rem;
    height: 3.375rem;
  }
}

.footer__copyright {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .footer__copyright {
    text-align: center;
  }
}

.footer__privacy-policy-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}
@media screen and (max-width: 767.9px) {
  .footer__privacy-policy-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
  }
}

.footer__privacy-policy {
  font-size: 0.875rem;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .footer__privacy-policy {
    font-size: 0.75rem;
    text-align: center;
  }
}

.top-mv {
  padding-top: 15.75rem;
  position: relative;
  max-width: 90rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top-mv {
    padding-top: 11.3125rem;
  }
}

.top-mv__inner {
  max-width: 68.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top-mv__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.top-mv__title {
  font-size: 6.25rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1.25;
}
@media screen and (max-width: 767.9px) {
  .top-mv__title {
    font-size: 2.875rem;
    font-size: clamp(2.875rem, 1.582rem + 5.305vw, 4.125rem);
  }
}

.top-mv__text {
  margin-top: 0.625rem;
  font-size: 1.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-mv__text {
    font-size: 1rem;
    font-size: clamp(1rem, 0.612rem + 1.592vw, 1.375rem);
  }
}

.top__latest-news {
  margin-top: 11.5rem;
}
@media screen and (max-width: 767.9px) {
  .top__latest-news {
    margin-top: 10.625rem;
  }
}

.top__latest-news-inner {
  max-width: 68.5rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top__latest-news-inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.top__latest-news-items {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  padding-top: 1.5625rem;
  max-width: 68.5rem;
}
@media screen and (max-width: 767.9px) {
  .top__latest-news-items {
    max-width: 41.875rem;
    padding-top: 1.4375rem;
    width: 100%;
  }
}
.top__latest-news-items::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.0625rem;
  top: 0;
  left: 0;
  background-image: url(../images/dots-line.png);
  background-size: contain;
  background-position: center;
  background-repeat: repeat-x;
}

.top__latest-news-item:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .top__latest-news-item:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.top__latest-news-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.09375rem;
}
@media screen and (max-width: 767.9px) {
  .top__latest-news-item a {
    -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.625rem;
  }
}
.top__latest-news-item a:hover {
  opacity: 1;
}
.top__latest-news-item a:hover .top__latest-news-title {
  color: #F14D61;
}

.top__latest-news-time {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #181818;
  line-height: 2.5;
  min-width: 5.1875rem;
}
@media screen and (max-width: 767.9px) {
  .top__latest-news-time {
    font-size: 0.75rem;
    line-height: 1;
    min-width: initial;
  }
}

.top__latest-news-time-category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .top__latest-news-time-category-wrap {
    gap: 0.625rem;
  }
}

.top__latest-news-category {
  background-color: #181818;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  padding: 0.28125rem 1.075rem;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .top__latest-news-category {
    font-size: 0.625rem;
    padding: 0.03125rem 0.75rem;
  }
}

.top__latest-news-title {
  font-size: 1rem;
  color: #181818;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-width: 31.25rem;
}
@media screen and (max-width: 767.9px) {
  .top__latest-news-title {
    font-size: 0.875rem;
    -webkit-line-clamp: 4;
    max-width: initial;
  }
}

.top-about {
  margin-top: 12.875rem;
}
@media screen and (max-width: 767.9px) {
  .top-about {
    margin-top: 6.875rem;
  }
}

.top-about__inner {
  max-width: 63.5625rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-about__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.top-about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.125rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .top-about__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .top-about__text-wrap {
    display: contents;
  }
}

.top-about__title.title {
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767.9px) {
  .top-about__title.title {
    margin-top: 0;
  }
}

.top-about__text-box {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-about__text-box {
    margin-top: 1.25rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.top-about__text {
  font-size: 1rem;
  line-height: 2.5;
}
@media screen and (max-width: 767.9px) {
  .top-about__text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.top-about__text:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-about__text:not(:first-child) {
    margin-top: 0;
  }
}

.top-about__btn-wrap.btn-wrap {
  margin-top: 5rem;
}
@media screen and (max-width: 767.9px) {
  .top-about__btn-wrap.btn-wrap {
    margin-top: 1.25rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.top-about__btn.btn {
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.top-about__btn.btn:hover {
  -webkit-box-shadow: 0 0 0.625rem 0 #f14d61;
          box-shadow: 0 0 0.625rem 0 #f14d61;
}

.top-about__img-wrap {
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top-about__img-wrap {
    margin-top: 1.25rem;
    width: 100%;
  }
}

.top-about__img {
  width: 28.5rem;
  height: 37.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-about__img {
    max-width: 25rem;
    width: 100%;
    height: auto;
    min-height: 23.125rem;
    padding: 0 1.25rem;
    margin-inline: auto;
  }
}

.top-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}

.top-infinity {
  margin-top: 12.5rem;
  margin-bottom: 12.5rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-infinity {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.top-infinity__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: infinity-scroll 30s linear infinite;
          animation: infinity-scroll 30s linear infinite;
}
@media screen and (max-width: 767.9px) {
  .top-infinity__container {
    -webkit-animation: infinity-scroll 20s linear infinite;
            animation: infinity-scroll 20s linear infinite;
  }
}

.top-infinity__container.top-infinity__container--second {
  margin-top: -2.8125rem;
}
@media screen and (max-width: 767.9px) {
  .top-infinity__container.top-infinity__container--second {
    margin-top: -0.9375rem;
  }
}

.top-infinity__text {
  font-size: 6.25rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #3FB78D;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1.875rem;
}
@media screen and (max-width: 767.9px) {
  .top-infinity__text {
    font-size: 2.4375rem;
  }
}

.top-infinity__text.top-infinity__text--second {
  color: #fff;
  text-shadow: 0.5px 0.5px 0.5px #3FB78D, -0.5px -0.5px 0.5px #3FB78D, -0.5px 0.5px 0.5px #3FB78D, 0.5px -0.5px 0.5px #3FB78D, 0.5px 0 0.5px #3FB78D, -0.5px 0 0.5px #3FB78D, 0 0.5px 0.5px #3FB78D, 0 -0.5px 0.5px #3FB78D;
}

@-webkit-keyframes infinity-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes infinity-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.top-service__inner {
  max-width: 72.5625rem;
  margin-inline: auto;
  padding-bottom: 3.75rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-service__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
    padding-bottom: 2.5rem;
  }
}

.top-service__contents {
  max-width: 63.5625rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.125rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767.9px) {
  .top-service__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .top-service__text-wrap {
    display: contents;
  }
}

.top-service__title.title {
  margin-top: 1.25rem;
  text-align: right;
}
@media screen and (max-width: 767.9px) {
  .top-service__title.title {
    margin-top: 0;
  }
}

.top-service__text-box {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__text-box {
    margin-top: 1.25rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.top-service__text {
  font-size: 1rem;
  line-height: 2.5;
}
@media screen and (max-width: 767.9px) {
  .top-service__text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.top-service__text:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__text:not(:first-child) {
    margin-top: 0;
  }
}

.top-service__btn-wrap.btn-wrap {
  margin-top: 2.5rem;
  margin-left: auto;
}
@media screen and (max-width: 767.9px) {
  .top-service__btn-wrap.btn-wrap {
    margin-top: 1.25rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.top-service__btn.btn {
  background-color: #21A4ED;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.top-service__btn.btn:hover {
  -webkit-box-shadow: 0 0 0.625rem 0 #21a4ed;
          box-shadow: 0 0 0.625rem 0 #21a4ed;
}

.top-service__img-wrap {
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top-service__img-wrap {
    margin-top: 1.25rem;
    width: 100%;
  }
}

.top-service__img {
  width: 28.5rem;
  height: 37.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__img {
    max-width: 25rem;
    width: 100%;
    height: auto;
    min-height: 23.125rem;
    padding: 0 1.25rem;
    margin-inline: auto;
  }
}

.top-service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}

.top-service__items {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__items {
    margin-top: 2.5rem;
  }
}

.top-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .top-service__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-service__item.top-service__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767.9px) {
  .top-service__item.top-service__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767.9px) {
  .top-service__item.top-service__item:not(:first-child) {
    margin-top: 3.125rem;
  }
}

.top-service__item-text-wrap {
  max-width: 28.125rem;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-text-wrap {
    max-width: 100%;
    display: contents;
  }
}

.top-service__item-title {
  font-size: 1.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-title {
    line-height: 1.7;
  }
}

.top-service__item-text {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.875;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-text {
    margin-top: 0;
    font-size: 0.875rem;
    line-height: 2.1428571429;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.top-service__item-text.top-service__item-text--crm-consulting {
  max-width: 26.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-text.top-service__item-text--crm-consulting {
    max-width: 100%;
  }
}

.top-service__item-link {
  margin-top: 4.375rem;
  display: block;
  font-size: 0.875rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-link {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (max-width: 767.9px) {
  .top-service__item-img {
    max-width: 31.25rem;
    width: 100vw;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.top-service__item-img img {
  width: 100%;
  height: 100%;
}

.top-service__item.top-service__item--event-solution {
  max-width: 66.375rem;
  margin-left: 4.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item.top-service__item--event-solution {
    margin-left: 0;
  }
}

.top-service__item-img-wrap.top-service__item-img-wrap--event-solution {
  width: 38.4375rem;
  height: 36.8125rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-img-wrap.top-service__item-img-wrap--event-solution {
    width: 100%;
    height: auto;
  }
}

.top-service__item-text-wrap.top-service__item-text-wrap--event-solution {
  padding-top: 10.0625rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-text-wrap.top-service__item-text-wrap--event-solution {
    padding-top: 0;
  }
}

.top-service__item-title.top-service__item-title--event-solution {
  color: #F18333;
}

.top-service__item-link.top-service__item-link--event-solution {
  margin-top: 4.375rem;
  color: #F18333;
  text-decoration: underline;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-link.top-service__item-link--event-solution {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767.9px) {
  .top-service__item-img.top-service__item-img--event-solution {
    width: 95vw;
  }
}

.top-service__item.top-service__item--it-solution {
  margin-top: -2.1875rem;
  margin-left: -2.1875rem;
  max-width: 71.0625rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item.top-service__item--it-solution {
    margin-top: 0;
    margin-left: 0;
  }
}

.top-service__item-img-wrap.top-service__item-img-wrap--it-solution {
  width: 42.375rem;
  height: 36.8125rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-img-wrap.top-service__item-img-wrap--it-solution {
    width: 100%;
    height: auto;
  }
}

.top-service__item-text-wrap.top-service__item-text-wrap--it-solution {
  padding-top: 9.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-text-wrap.top-service__item-text-wrap--it-solution {
    padding-top: 0;
  }
}

.top-service__item-title.top-service__item-title--it-solution {
  color: #F14D61;
}

.top-service__item-link.top-service__item-link--it-solution {
  margin-top: 2.5rem;
  color: #F14D61;
  text-decoration: underline;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-link.top-service__item-link--it-solution {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767.9px) {
  .top-service__item-img.top-service__item-img--it-solution {
    margin-top: -1.25rem;
    margin-bottom: -1.5625rem;
    width: 105vw;
  }
}

.top-service__item.top-service__item--social-media {
  max-width: 69.4375rem;
  margin-left: 4.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item.top-service__item--social-media {
    margin-left: 0;
  }
}

.top-service__item-img-wrap.top-service__item-img-wrap--social-media {
  width: 41.5625rem;
  height: 41.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-img-wrap.top-service__item-img-wrap--social-media {
    width: 100%;
    height: auto;
  }
}

.top-service__item-text-wrap.top-service__item-text-wrap--social-media {
  padding-top: 10.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-text-wrap.top-service__item-text-wrap--social-media {
    padding-top: 0;
  }
}

.top-service__item-title.top-service__item-title--social-media {
  color: #3FB78D;
}

.top-service__item-link.top-service__item-link--social-media {
  margin-top: 4.375rem;
  color: #3FB78D;
  text-decoration: underline;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-link.top-service__item-link--social-media {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767.9px) {
  .top-service__item-img.top-service__item-img--social-media {
    width: 105vw;
    margin-top: -0.9375rem;
    margin-bottom: -1.25rem;
  }
}

.top-service__item.top-service__item--crm-consulting {
  margin-top: -3.75rem;
  margin-left: -2.1875rem;
  max-width: 72.5625rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item.top-service__item--crm-consulting {
    margin-top: 0;
    margin-left: 0;
  }
}

.top-service__item-img-wrap.top-service__item-img-wrap--crm-consulting {
  width: 41.75rem;
  height: 39.4375rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-img-wrap.top-service__item-img-wrap--crm-consulting {
    width: 100%;
    height: auto;
  }
}

.top-service__item-text-wrap.top-service__item-text-wrap--crm-consulting {
  padding-top: 9.375rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-text-wrap.top-service__item-text-wrap--crm-consulting {
    padding-top: 0;
  }
}

.top-service__item-title.top-service__item-title--crm-consulting {
  color: #21A4ED;
}

.top-service__item-link.top-service__item-link--crm-consulting {
  margin-top: 4.375rem;
  color: #21A4ED;
  text-decoration: underline;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-link.top-service__item-link--crm-consulting {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767.9px) {
  .top-service__item-img.top-service__item-img--crm-consulting {
    width: 105vw;
  }
}

@media screen and (max-width: 767.9px) {
  .top-service__item-img.top-service__item-img--crm-consulting {
    margin-top: -1.25rem;
    margin-bottom: -1.5625rem;
    width: 105vw;
  }
}

.top-service__item.top-service__item--matching {
  margin-top: -1.875rem;
  max-width: 67.5625rem;
  margin-left: 4.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item.top-service__item--matching {
    margin-left: 0;
    margin-top: 0;
  }
}

.top-service__item-img-wrap.top-service__item-img-wrap--matching {
  width: 39.1875rem;
  height: 38.0625rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-img-wrap.top-service__item-img-wrap--matching {
    width: 100%;
    height: auto;
  }
}

.top-service__item-text-wrap.top-service__item-text-wrap--matching {
  padding-top: 8.75rem;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-text-wrap.top-service__item-text-wrap--matching {
    padding-top: 0;
  }
}

.top-service__item-title.top-service__item-title--matching {
  color: #97867F;
}

.top-service__item-link.top-service__item-link--matching {
  margin-top: 8.125rem;
  color: #97867F;
  text-decoration: underline;
}
@media screen and (max-width: 767.9px) {
  .top-service__item-link.top-service__item-link--matching {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767.9px) {
  .top-service__item-img.top-service__item-img--matching {
    width: 95vw;
  }
}

.top-company {
  background-color: #FBFBFB;
}

.top-company__inner {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
  max-width: 72.3125rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-company__inner {
    max-width: 41.875rem;
    padding: 1.25rem 2.1875rem 2.5rem;
  }
}

.top-company__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-company__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.top-company__text-wrap {
  max-width: 31.125rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__text-wrap {
    display: contents;
  }
}

.top-company__text-box {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__text-box {
    margin-top: 1.25rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.top-company__text {
  font-size: 1rem;
  line-height: 2.5;
}
@media screen and (max-width: 767.9px) {
  .top-company__text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.top-company__text:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__text:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.top-company__btn-wrap.btn-wrap {
  margin-top: 2.5rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-company__btn-wrap.btn-wrap {
    margin-top: 5.625rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.top-company__btn.btn {
  background-color: #181818;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.top-company__btn.btn:hover {
  -webkit-box-shadow: 0 0 0.625rem 0 rgba(24, 24, 24, 0.5);
          box-shadow: 0 0 0.625rem 0 rgba(24, 24, 24, 0.5);
}

.top-company__img-wrap {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .top-company__img-wrap {
    margin-top: 1.25rem;
  }
}

.top-company__img {
  width: 36.6875rem;
  height: 20.3125rem;
}
@media screen and (max-width: 767.9px) {
  .top-company__img {
    max-width: 37.5rem;
    width: 100%;
    height: auto;
  }
}

.top-company__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.top-news {
  position: relative;
  z-index: 10;
}

.top-news__inner {
  padding-top: 5rem;
  padding-bottom: 12.5rem;
  max-width: 52.5rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-news__inner {
    max-width: 41.875rem;
    padding: 2.5rem 2.1875rem 4.375rem;
  }
}

.top-news__title.title {
  text-align: center;
}

.top-news__items {
  margin-top: 4.875rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767.9px) {
  .top-news__items {
    margin-top: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.top-news__item {
  background-color: #F3F3F3;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 0.625rem 0 rgba(69, 69, 69, 0.25);
          box-shadow: 0 0 0.625rem 0 rgba(69, 69, 69, 0.25);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.top-news__item:hover {
  -webkit-box-shadow: 0 0 0.9375rem 0 rgba(241, 131, 51, 0.5);
          box-shadow: 0 0 0.9375rem 0 rgba(241, 131, 51, 0.5);
}

.top-news__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.875rem 1.875rem 1.6875rem;
}
@media screen and (max-width: 767.9px) {
  .top-news__item a {
    padding: 1.0625rem 1.25rem 1.6875rem;
  }
}
.top-news__item a:hover {
  opacity: 1;
}

.top-news__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-news__time {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #181818;
}

.top-news__category {
  background-color: #F18333;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-align: center;
  border-radius: 100vw;
  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;
  padding: 0.25rem 1.25rem 0.125rem;
}

.top-news__sub-title {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #181818;
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media screen and (max-width: 767.9px) {
  .top-news__sub-title {
    -webkit-line-clamp: initial;
  }
}

.top-news__btn-wrap.btn-wrap {
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top-news__btn-wrap.btn-wrap {
    margin-top: 2.5rem;
  }
}

.top-news__btn.btn {
  background-color: #F18333;
  border-radius: 100vw;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.top-news__btn.btn:hover {
  -webkit-box-shadow: 0 0 0.625rem 0 #f18333;
          box-shadow: 0 0 0.625rem 0 #f18333;
}

.top-recruit {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(15rem, transparent), color-stop(15rem, #F18333), to(#F18333));
  background: linear-gradient(to bottom, transparent 0, transparent 15rem, #F18333 15rem, #F18333 100%);
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767.9px) {
  .top-recruit {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(1.5625rem, transparent), color-stop(1.5625rem, #F18333), to(#F18333));
    background: linear-gradient(to bottom, transparent 0, transparent 1.5625rem, #F18333 1.5625rem, #F18333 100%);
  }
}
.top-recruit::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 15rem;
  top: 0.0625rem;
  left: 0;
  background-image: url(../images/top-recruit-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .top-recruit::before {
    height: 1.5625rem;
    background-image: url(../images/top-recruit-bg-sp.png);
  }
}

.top-recruit__inner {
  max-width: 63.125rem;
  margin-inline: auto;
  padding-top: 10.5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767.9px) {
  .top-recruit__inner {
    max-width: 41.875rem;
    padding: 2.625rem 2.1875rem 2.5rem;
  }
}

.top-recruit__title {
  text-align: center;
}

.top-recruit__title-en {
  display: block;
  font-size: 3.125rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-recruit__title-en {
    font-size: 1.25rem;
  }
}

.top-recruit__title-ja {
  display: block;
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .top-recruit__title-ja {
    font-size: 0.875rem;
  }
}

.top-recruit__btn-wrap.btn-wrap {
  margin-top: 0.625rem;
  max-width: 37.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .top-recruit__btn-wrap.btn-wrap {
    margin-top: 1.25rem;
    max-width: 37.5rem;
  }
}

.top-recruit__btn.btn {
  background-color: #fff;
  color: #F18333;
  position: relative;
}
.top-recruit__btn.btn::before {
  background-color: #F18333;
}

.top-slide__inner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-slide__inner {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.top-slide__swiper {
  aspect-ratio: 348/232;
  width: 100%;
  margin-inline: auto;
  height: 14.5rem;
}
@media screen and (max-width: 767.9px) {
  .top-slide__swiper {
    aspect-ratio: 253/169;
    height: 10.5625rem;
  }
}
@media screen and (max-width: 500px) {
  .top-slide__swiper {
    aspect-ratio: 153/101;
    height: 6.3125rem;
  }
}

.top-slide__swiper .swiper-slide {
  width: auto;
  width: 21.75rem;
  max-width: 21.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.9px) {
  .top-slide__swiper .swiper-slide {
    width: 15.8125rem;
    max-width: 15.8125rem;
  }
}
@media screen and (max-width: 500px) {
  .top-slide__swiper .swiper-slide {
    width: 9.5625rem;
    max-width: 9.5625rem;
  }
}

.top-slide__swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .top-slide__swiper img {
    border-radius: 0.625rem;
  }
}

.top-slide__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.about-slide {
  margin-top: 8.125rem;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .about-slide {
    margin-top: 3.4375rem;
  }
}

.about-slide__inner {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 767.9px) {
  .about-slide__inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.about-slide__swiper {
  aspect-ratio: 336/368;
  width: 100%;
  margin-inline: auto;
  height: 23rem;
}
@media screen and (max-width: 767.9px) {
  .about-slide__swiper {
    aspect-ratio: 230/240;
    height: 15rem;
  }
}
@media screen and (max-width: 500px) {
  .about-slide__swiper {
    aspect-ratio: 130/140;
    height: 8.75rem;
  }
}

.about-slide__swiper .swiper-slide {
  width: auto;
  width: 21rem;
  max-width: 21rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.9px) {
  .about-slide__swiper .swiper-slide {
    width: 14.375rem;
    max-width: 14.375rem;
  }
}
@media screen and (max-width: 500px) {
  .about-slide__swiper .swiper-slide {
    width: 8.125rem;
    max-width: 8.125rem;
  }
}

.about-slide__swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .about-slide__swiper img {
    border-radius: 0.625rem;
  }
}

.about-slide__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.about-list {
  margin-top: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .about-list {
    margin-top: 2.25rem;
  }
}

.about-list__inner {
  max-width: 61.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .about-list__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.about-list__item {
  background-color: #fff;
  border-radius: 0.625rem;
  width: 100%;
  -webkit-box-shadow: 0 0 1.5rem 0 rgba(194, 194, 194, 0.25);
          box-shadow: 0 0 1.5rem 0 rgba(194, 194, 194, 0.25);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.about-list__item:hover {
  -webkit-box-shadow: 0 0 1.5rem 0 rgba(194, 194, 194, 0.5);
          box-shadow: 0 0 1.5rem 0 rgba(194, 194, 194, 0.5);
}

.about-list__item-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.875rem 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .about-list__item-link {
    padding: 1.25rem 1.875rem 2.5rem 1.25rem;
  }
}
.about-list__item-link:hover {
  opacity: 1;
}

.about-list__item.about-list__item--mvv:hover {
  -webkit-box-shadow: 0 0 1.875rem 0 rgba(76, 180, 239, 0.5);
          box-shadow: 0 0 1.875rem 0 rgba(76, 180, 239, 0.5);
}

.about-list__item.about-list__item--message:hover {
  -webkit-box-shadow: 0 0 1.875rem 0 rgba(242, 91, 110, 0.5);
          box-shadow: 0 0 1.875rem 0 rgba(242, 91, 110, 0.5);
}

.about-list__item.about-list__item--management:hover {
  -webkit-box-shadow: 0 0 1.875rem 0 rgba(61, 176, 136, 0.5);
          box-shadow: 0 0 1.875rem 0 rgba(61, 176, 136, 0.5);
}

.about-list__item.about-list__item--mvv .about-list__item-link {
  padding: 3.5625rem 6.25rem 1.875rem 5rem;
}
@media screen and (max-width: 767.9px) {
  .about-list__item.about-list__item--mvv .about-list__item-link {
    padding: 1.25rem 1.875rem 2.5rem 1.25rem;
  }
}

.about-list__item-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .about-list__item-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about-list__item-label {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.375rem 1.875rem;
  border-radius: 0.375rem;
}
@media screen and (max-width: 767.9px) {
  .about-list__item-label {
    padding: 0.28125rem 0.625rem;
    min-width: 8.125rem;
    text-align: center;
  }
}

.about-list__item-label.about-list__item-label--mvv {
  background-color: #4CB4EF;
  padding: 0.375rem 2.8125rem;
}
@media screen and (max-width: 767.9px) {
  .about-list__item-label.about-list__item-label--mvv {
    padding: 0.28125rem 3rem;
  }
}

.about-list__item-label.about-list__item-label--message {
  background-color: #F25B6E;
}

.about-list__item-label.about-list__item-label--management {
  background-color: #3DB088;
}

.about-list__item-title {
  margin-top: 0.625rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767.9px) {
  .about-list__item-title {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

.about-list__item-title.about-list__item-title--mvv {
  color: #4CB4EF;
}

.about-list__item-title.about-list__item-title--message {
  color: #F25B6E;
}

.about-list__item-title.about-list__item-title--management {
  color: #3DB088;
}

@media screen and (max-width: 767.9px) {
  .about-list__item-img-wrap {
    margin-top: 0.9375rem;
  }
}

.about-list__item-img {
  width: 13.1875rem;
  height: 7.4375rem;
}
@media screen and (max-width: 767.9px) {
  .about-list__item-img {
    width: 100%;
    height: auto;
    padding: 0 0.625rem;
  }
}

.about-list__item--mvv .about-list__item-img {
  width: 20.125rem;
  height: 11.0625rem;
}
@media screen and (max-width: 767.9px) {
  .about-list__item--mvv .about-list__item-img {
    width: 100%;
    height: auto;
    padding: 0 0.625rem;
  }
}

.about-list__item-img img {
  border-radius: 0.625rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-list__btn-wrap.btn-wrap {
  margin-top: 1.875rem;
  margin-inline: auto;
  max-width: 18.75rem;
}
@media screen and (max-width: 767.9px) {
  .about-list__btn-wrap.btn-wrap {
    margin-top: 2.5rem;
    max-width: 28.125rem;
    padding: 0 0.625rem;
  }
}

.about-list__btn.btn {
  padding: 0.8125rem;
  border-radius: 100vw;
  font-size: 0.9375rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .about-list__btn.btn {
    font-size: 0.875rem;
  }
}
.about-list__btn.btn::before {
  width: 0.4375rem;
  height: 0.4375rem;
}

.about-list__btn.about-list__btn--mvv {
  background-color: #4CB4EF;
}

.about-list__btn.about-list__btn--message {
  background-color: #F25B6E;
}

.about-list__btn.about-list__btn--management {
  background-color: #3DB088;
}

.about-list__item-wrap {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .about-list__item-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.message {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767.9px) {
  .message {
    margin-top: 3.75rem;
  }
}

.message__inner {
  max-width: 62.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .message__inner {
    max-width: 41.875rem;
    padding: 0 1.5625rem;
  }
}

.message__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .message__head {
    -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;
  }
}

@media screen and (max-width: 767.9px) {
  .message__head-text-wrap {
    display: contents;
  }
}

.message__head-title {
  font-size: 3.625rem;
  line-height: 1.2586206897;
}
@media screen and (max-width: 767.9px) {
  .message__head-title {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.message__head-text {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .message__head-text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    line-height: 1.7;
  }
}

.message__head-img-wrap {
  max-width: 48.4375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .message__head-img-wrap {
    margin-top: 1.25rem;
    max-width: 41.875rem;
  }
}

.message__head-img {
  width: 100%;
  height: auto;
}

.message__head-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.message__body {
  margin-top: 2.5rem;
  max-width: 59.0625rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .message__body {
    margin-top: 1.875rem;
  }
}

.message__text-strong {
  font-size: 2.125rem;
  letter-spacing: 0.07em;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 2.5rem;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .message__text-strong {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.message__text {
  font-size: 1rem;
  line-height: 2;
  padding: 0 3.875rem;
}
@media screen and (max-width: 767.9px) {
  .message__text {
    font-size: 0.875rem;
    padding: 0 0.625rem;
  }
}

.message__sign-wrap {
  max-width: 59.0625rem;
  margin-inline: auto;
  margin-top: 2.5rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .message__sign-wrap {
    margin-top: 1.25rem;
  }
}

.message__sign-img {
  margin-left: auto;
  width: 30.5rem;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .message__sign-img {
    width: 21.1875rem;
  }
}

.mvv {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767.9px) {
  .mvv {
    margin-top: 3.75rem;
  }
}

.mvv__inner {
  max-width: 62.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .mvv__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.mvv__contents {
  position: relative;
}

.mvv__title {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.mvv__title:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (max-width: 767.9px) {
  .mvv__title:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.mvv__text {
  max-width: 50.625rem;
  margin-top: 0.625rem;
  font-size: 1.9375rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .mvv__text {
    margin-top: 0.3125rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}

.management {
  margin-top: 8.75rem;
}
@media screen and (max-width: 767.9px) {
  .management {
    margin-top: 3.75rem;
  }
}

.management__inner {
  max-width: 70.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .management__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.management__lists {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}

.management__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.0625rem;
  background-color: #fff;
  border-radius: 2.5rem;
  padding: 2.1875rem 4.375rem 1.5625rem 3.4375rem;
  min-height: 30.4375rem;
}
@media screen and (max-width: 767.9px) {
  .management__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.25rem 1.875rem;
    gap: 0.625rem;
    border-radius: 0.625rem;
    -webkit-box-shadow: 0 0 1.5rem 0 rgba(194, 194, 194, 0.25);
            box-shadow: 0 0 1.5rem 0 rgba(194, 194, 194, 0.25);
  }
}

.management__list-img-wrap {
  max-width: 20.75rem;
}
@media screen and (max-width: 767.9px) {
  .management__list-img-wrap {
    max-width: 18.75rem;
  }
}

.management__list-img {
  width: 20.75rem;
  height: 21rem;
}
@media screen and (max-width: 767.9px) {
  .management__list-img {
    width: 100%;
    height: auto;
  }
}

.management__list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.management__list-text-wrap {
  max-width: 37.875rem;
}

.management__list-title-position {
  display: block;
  font-size: 1rem;
  line-height: 2.5;
}
@media screen and (max-width: 767.9px) {
  .management__list-title-position {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.management__list-title-name {
  margin-top: -0.3125rem;
  display: block;
  font-size: 2.25rem;
}
@media screen and (max-width: 767.9px) {
  .management__list-title-name {
    margin-top: 0;
    font-size: 1.625rem;
  }
}

.management__list-title-name-en {
  font-size: 1rem;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .management__list-title-name-en {
    font-size: 0.625rem;
  }
}

.management__list-text {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 2.5;
}
@media screen and (max-width: 767.9px) {
  .management__list-text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.service {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767.9px) {
  .service {
    margin-top: 3.75rem;
  }
}

.service__inner {
  max-width: 61.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .service__inner {
    max-width: 41.875rem;
    padding: 0rem 2.1875rem;
  }
}

.service__read-text {
  max-width: 51.25rem;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .service__read-text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.service__lists {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 767.9px) {
  .service__lists {
    margin-top: 1.25rem;
    gap: 2.5rem;
  }
}

.service__list {
  background-color: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .service__list {
    border-radius: 0.625rem;
  }
}
.service__list::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.service__list a {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 24.5rem;
  padding: 3.125rem 4.375rem;
}
@media screen and (max-width: 767.9px) {
  .service__list a {
    padding: 1.25rem 0 0 0;
    min-height: initial;
  }
}
.service__list a:hover {
  opacity: 1;
}
.service__list a:hover .service__list-btn::before {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.service__list-btn {
  position: absolute;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  z-index: 1;
  bottom: 1.5625rem;
  right: 0.9375rem;
}
@media screen and (max-width: 767.9px) {
  .service__list-btn {
    position: relative;
    bottom: initial;
    right: initial;
    text-align: center;
    padding: 0.65625rem 0;
  }
}
.service__list-btn::before {
  position: absolute;
  content: "";
  width: 10.625rem;
  height: 10.625rem;
  top: -2.5rem;
  left: -1.875rem;
  background-color: #181818;
  z-index: -1;
  border-radius: 100vw;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .service__list-btn::before {
    display: none;
  }
}

.service__list-text-wrap {
  max-width: 27.875rem;
}
@media screen and (max-width: 767.9px) {
  .service__list-text-wrap {
    padding: 0 1.25rem;
    max-width: 100%;
  }
}

.service__list-text-wrap.service__list-text-wrap--reverse {
  margin-left: auto;
}
@media screen and (max-width: 767.9px) {
  .service__list-text-wrap.service__list-text-wrap--reverse {
    margin-left: initial;
  }
}

.service__list-title-en {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .service__list-title-en {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.service__list-title-ja {
  margin-top: -0.1875rem;
  font-size: 0.75rem;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .service__list-title-ja {
    margin-top: 0;
  }
}

.service__list-text {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 2.5;
  color: #181818;
}
@media screen and (max-width: 767.9px) {
  .service__list-text {
    margin-top: 19.6875rem;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.service__list.service__list--event-solution {
  -webkit-box-shadow: 0 0 5.875rem 0 rgba(241, 131, 51, 0.4);
          box-shadow: 0 0 5.875rem 0 rgba(241, 131, 51, 0.4);
}
@media screen and (max-width: 767.9px) {
  .service__list.service__list--event-solution {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}
.service__list.service__list--event-solution::before {
  width: 38.4375rem;
  height: 36.8125rem;
  top: -5.625rem;
  right: -7.1875rem;
  background-image: url(../images/top-service_event-solution.png);
}
@media screen and (max-width: 767.9px) {
  .service__list.service__list--event-solution::before {
    width: 19.75rem;
    height: 18.9375rem;
    right: initial;
    left: 50%;
    top: 5.1875rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.service__list--event-solution .service__list-title {
  color: #F18333;
}

@media screen and (max-width: 767.9px) {
  .service__list--event-solution .service__list-btn {
    margin-top: 3.3125rem;
    background-color: #F18333;
  }
}
.service__list--event-solution .service__list-btn::before {
  background-color: #F18333;
}

.service__list.service__list--it-solution {
  -webkit-box-shadow: 0 0 5.875rem 0 rgba(242, 91, 110, 0.2);
          box-shadow: 0 0 5.875rem 0 rgba(242, 91, 110, 0.2);
}
@media screen and (max-width: 767.9px) {
  .service__list.service__list--it-solution {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}
.service__list.service__list--it-solution::before {
  width: 42.375rem;
  height: 42.125rem;
  top: -9.6875rem;
  left: -13.3125rem;
  background-image: url(../images/top-service_it-solution.png);
}
@media screen and (max-width: 767.9px) {
  .service__list.service__list--it-solution::before {
    width: 23.3125rem;
    height: 22.25rem;
    right: initial;
    left: 50%;
    top: 3.125rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.service__list--it-solution .service__list-title {
  color: #F25B6E;
}

@media screen and (max-width: 767.9px) {
  .service__list--it-solution .service__list-btn {
    margin-top: 1.25rem;
    background-color: #F25B6E;
  }
}
.service__list--it-solution .service__list-btn::before {
  background-color: #F25B6E;
}

.service__list.service__list--social-media {
  -webkit-box-shadow: 0 0 5.875rem 0 rgba(63, 183, 141, 0.2);
          box-shadow: 0 0 5.875rem 0 rgba(63, 183, 141, 0.2);
}
@media screen and (max-width: 767.9px) {
  .service__list.service__list--social-media {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}
.service__list.service__list--social-media::before {
  width: 41.5625rem;
  height: 41.25rem;
  top: -6.25rem;
  right: -9.875rem;
  background-image: url(../images/top-service_social-media.png);
}
@media screen and (max-width: 767.9px) {
  .service__list.service__list--social-media::before {
    width: 22.1875rem;
    height: 22rem;
    right: initial;
    left: 50%;
    top: 5rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.service__list--social-media .service__list-title {
  color: #3FB78D;
}

@media screen and (max-width: 767.9px) {
  .service__list--social-media .service__list-btn {
    margin-top: 1.5625rem;
    background-color: #3FB78D;
  }
}
.service__list--social-media .service__list-btn::before {
  background-color: #3FB78D;
}

.service__list.service__list--crm-consulting {
  -webkit-box-shadow: 0 0 5.875rem 0 rgba(33, 164, 237, 0.2);
          box-shadow: 0 0 5.875rem 0 rgba(33, 164, 237, 0.2);
}
@media screen and (max-width: 767.9px) {
  .service__list.service__list--crm-consulting {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}
.service__list.service__list--crm-consulting::before {
  width: 35.75rem;
  height: 39.4375rem;
  top: -6.25rem;
  left: -6.3125rem;
  background-image: url(../images/top-service_crm-consulting.png);
}
@media screen and (max-width: 767.9px) {
  .service__list.service__list--crm-consulting::before {
    width: 22.8125rem;
    height: 21.5625rem;
    right: initial;
    left: 50%;
    top: 3.4375rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.service__list--crm-consulting .service__list-title {
  color: #21A4ED;
}

@media screen and (max-width: 767.9px) {
  .service__list--crm-consulting .service__list-btn {
    margin-top: 1.5625rem;
    background-color: #21A4ED;
  }
}
.service__list--crm-consulting .service__list-btn::before {
  background-color: #21A4ED;
}

.service__list.service__list--matching {
  -webkit-box-shadow: 0 0 5.875rem 0 rgba(151, 134, 127, 0.3);
          box-shadow: 0 0 5.875rem 0 rgba(151, 134, 127, 0.3);
}
@media screen and (max-width: 767.9px) {
  .service__list.service__list--matching {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}
.service__list.service__list--matching::before {
  width: 34.4375rem;
  height: 33.4375rem;
  top: -2.8125rem;
  right: -6.1875rem;
  background-image: url(../images/top-service_matching.png);
}
@media screen and (max-width: 767.9px) {
  .service__list.service__list--matching::before {
    width: 20.875rem;
    height: 20.25rem;
    right: initial;
    left: 50%;
    top: 3.75rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.service__list--matching .service__list-title {
  color: #97867F;
}

@media screen and (max-width: 767.9px) {
  .service__list--matching .service__list-btn {
    margin-top: 1.875rem;
    background-color: #97867F;
  }
}
.service__list--matching .service__list-btn::before {
  background-color: #97867F;
}

.service-page {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767.9px) {
  .service-page {
    margin-top: 3.75rem;
  }
}

.service-page.service-page--event-solution {
  margin-top: 8.75rem;
}
@media screen and (max-width: 767.9px) {
  .service-page.service-page--event-solution {
    margin-top: 3.75rem;
  }
}

.service-page__inner {
  max-width: 53.75rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .service-page__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

@media screen and (max-width: 767.9px) {
  .service-page__read {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.25rem;
  }
}

.service-page__btn-wrap {
  max-width: 16.625rem;
  margin-inline: auto;
  width: 100%;
}

.service-page__btn-wrap.service-page__btn-wrap--matching {
  margin-top: 5rem;
}
@media screen and (max-width: 767.9px) {
  .service-page__btn-wrap.service-page__btn-wrap--matching {
    margin-top: 2.5rem;
  }
}

.service-page__btn {
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 0.78125rem;
  border-radius: 100vw;
  color: #181818;
  text-align: center;
  border: 1px solid #181818;
  font-size: 1rem;
  font-weight: 500;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.service-page__btn:hover {
  opacity: 1;
  background-color: #181818;
  color: #fff;
}

.service-page__read-text {
  margin-top: 2.5rem;
  max-width: 51.25rem;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .service-page__read-text {
    margin-top: 0;
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.service-page__solution {
  margin-top: 5rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .service-page__solution {
    margin-top: 1.25rem;
  }
}

.service-page__solution-title {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.service-page__solution-items {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767.9px) {
  .service-page__solution-items {
    margin-top: 1.25rem;
    gap: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
    padding: 0 1.875rem;
  }
}

.service-page__solution-item {
  background-color: #fff;
  border-radius: 0.875rem;
  padding: 1.25rem 0.125rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
}

.service-page__solution-text {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .service-page__solution-text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}

.service-page__solution-text-highlight {
  color: #F49C5C;
}

.service-page__solution-text-highlight.service-page__solution-text-highlight--it-solution {
  color: #EF4C60;
}

.service-page__solution-text-highlight.service-page__solution-text-highlight--social-media {
  color: #65C5A4;
}

.service-page__solution-text-highlight.service-page__solution-text-highlight--crm-consulting {
  color: #4DB6F1;
}

.service-page__solution-text-highlight.service-page__solution-text-highlight--matching {
  color: #97867F;
}

.service-page__feature {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767.9px) {
  .service-page__feature {
    margin-top: 2.5rem;
  }
}

.service-page__feature-inner {
  max-width: 90rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .service-page__feature-inner {
    max-width: 100%;
  }
}

.service-page__title {
  text-align: center;
  position: relative;
}
.service-page__title::before {
  position: absolute;
  content: "";
  width: 5.125rem;
  height: 0.125rem;
  bottom: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #181818;
}
@media screen and (max-width: 767.9px) {
  .service-page__title::before {
    bottom: -0.9375rem;
  }
}

.service-page__title.service-page__title--event-solution::before {
  background-color: #F49C5C;
}

.service-page__title.service-page__title--it-solution::before {
  background-color: #EF4C60;
}

.service-page__title.service-page__title--social-media::before {
  background-color: #65C5A4;
}

.service-page__title.service-page__title--crm-consulting::before {
  background-color: #4DB6F1;
}

.service-page__title.service-page__title--matching::before {
  background-color: #97867F;
}

.service-page__title-en {
  display: block;
  font-size: 3.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .service-page__title-en {
    font-size: 2rem;
  }
}

.service-page__title-ja {
  margin-top: -0.3125rem;
  display: block;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .service-page__title-ja {
    font-size: 0.625rem;
  }
}

.service-page__feature-items {
  margin-top: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.9375rem;
}
@media screen and (max-width: 767.9px) {
  .service-page__feature-items {
    margin-top: 3.25rem;
    gap: 2.5rem;
  }
}

.service-page__feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .service-page__feature-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding-left: 2.1875rem;
  }
}

.service-page__feature-item.service-page__feature-item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767.9px) {
  .service-page__feature-item.service-page__feature-item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 2.1875rem;
    padding-left: 0;
  }
}

.service-page__feature-item-text-wrap {
  max-width: 27.25rem;
  margin-left: auto;
}
@media screen and (max-width: 767.9px) {
  .service-page__feature-item-text-wrap {
    display: contents;
  }
}

.service-page__feature-item-text-wrap.service-page__feature-item-text-wrap--reverse {
  margin-left: 1.5rem;
  margin-right: auto;
}
.service-page__feature-item-number {
  font-size: 2.625rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 767.9px) {
  .service-page__feature-item--reverse .service-page__feature-item-number,
  .service-page__feature-item--reverse .service-page__feature-item-title {
    padding-left: 2.1875rem;
  }
}

@media screen and (max-width: 767.9px) {
  .service-page__feature-item-title.service-page__feature-item-title--nowrap {
    white-space: nowrap;
  }
}

.service-page__feature-item-title {
  margin-top: 0.625rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .service-page__feature-item-title {
    margin-top: 0;
    line-height: 1.6666666667;
  }
}

.service-page__feature-item-text {
  margin-top: 1.875rem;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .service-page__feature-item-text {
    margin-top: 1.25rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 0.875rem;
    line-height: 2.1428571429;
    padding-right: 2.1875rem;
  }
}

@media screen and (max-width: 767.9px) {
  .service-page__feature-item-text-wrap--reverse .service-page__feature-item-text {
    padding-right: 0;
    padding-left: 2.1875rem;
  }
}

@media screen and (max-width: 767.9px) {
  .service-page__feature-item-img-wrap {
    margin-top: 1.25rem;
  }
}

.service-page__feature-item-img {
  width: 41.875rem;
  height: 24.6875rem;
}
@media screen and (max-width: 767.9px) {
  .service-page__feature-item-img {
    aspect-ratio: 355/210;
    width: 100%;
    height: auto;
    max-height: 18.75rem;
  }
}

.service-page__feature-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .service-page__feature-item-img img {
    border-radius: 1.25rem 0 0 1.25rem;
  }
}

@media screen and (max-width: 767.9px) {
  .service-page__feature-item--reverse .service-page__feature-item-img img {
    border-radius: 0 1.25rem 1.25rem 0;
  }
}

.service-page__flow {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767.9px) {
  .service-page__flow {
    margin-top: 2.5rem;
  }
}

.service-page__flow-inner {
  max-width: 48.75rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .service-page__flow-inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.service-page__flow-items {
  margin-top: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .service-page__flow-items {
    margin-top: 3.25rem;
    gap: 2rem;
  }
}

.service-page__flow-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .service-page__flow-item-head {
    gap: 0.625rem;
  }
}

.service-page__flow-item-number {
  width: 4.6875rem;
  height: 4.6875rem;
  background-color: #181818;
  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;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  border-radius: 100vw;
}
@media screen and (max-width: 767.9px) {
  .service-page__flow-item-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}

.service-page__flow-item-number.service-page__flow-item-number--event-solution {
  background-color: #F49C5C;
}

.service-page__flow-item-number.service-page__flow-item-number--it-solution {
  background-color: #EF4C60;
}

.service-page__flow-item-number.service-page__flow-item-number--social-media {
  background-color: #65C5A4;
}

.service-page__flow-item-number.service-page__flow-item-number--crm-consulting {
  background-color: #4DB6F1;
}

.service-page__flow-item-number.service-page__flow-item-number--matching {
  background-color: #97867F;
}

.service-page__flow-item-title {
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .service-page__flow-item-title {
    font-size: 1.25rem;
  }
}

.service-page__flow-item-body {
  margin-top: 0.4375rem;
  margin-left: 6.25rem;
}
@media screen and (max-width: 767.9px) {
  .service-page__flow-item-body {
    margin-top: 0.625rem;
    margin-left: 0;
  }
}

.service-page__flow-item-text {
  font-size: 1rem;
  line-height: 1.9;
}
@media screen and (max-width: 767.9px) {
  .service-page__flow-item-text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.service-page__work {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767.9px) {
  .service-page__work {
    margin-top: 3.125rem;
  }
}

.service-page__work-inner {
  max-width: 61.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .service-page__work-inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.service-page__work-items {
  margin-top: 3.875rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767.9px) {
  .service-page__work-items {
    margin-top: 3.25rem;
    gap: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-page__work-item-img {
  width: 18.75rem;
  height: 10.5rem;
  -webkit-box-shadow: 0 0 0.875rem 0 rgba(239, 76, 96, 0.17);
          box-shadow: 0 0 0.875rem 0 rgba(239, 76, 96, 0.17);
  aspect-ratio: 300/168;
}
@media screen and (max-width: 767.9px) {
  .service-page__work-item-img {
    width: 100%;
    height: auto;
    max-height: 18.75rem;
  }
}

.service-page__work-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-page__work-item-title {
  margin-top: 0.8125rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #181818;
}

.company {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767.9px) {
  .company {
    margin-top: 3.75rem;
  }
}

.company__inner {
  max-width: 61.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .company__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.company__items {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767.9px) {
  .company__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.company__item {
  background-color: #fff;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 1.5rem 0 rgba(194, 194, 194, 0.25);
          box-shadow: 0 0 1.5rem 0 rgba(194, 194, 194, 0.25);
}

.company__item-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.875rem 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .company__item-link {
    padding: 1.25rem 1.25rem 2.5rem 1.25rem;
  }
}
.company__item-link:hover {
  opacity: 1;
}
.company__item-link:hover .company__item-btn.btn {
  background-color: #181818;
  color: #fff;
}
.company__item-link:hover .company__item-btn.btn::before {
  background-color: #fff;
  -webkit-transform: translateY(-50%) scale(1.75);
          transform: translateY(-50%) scale(1.75);
}

.company__item-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  background-color: #181818;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.28125rem;
  border-radius: 0.375rem;
  min-width: 8.125rem;
  text-align: center;
}

.company__item-title {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  color: #181818;
}
@media screen and (max-width: 767.9px) {
  .company__item-title {
    font-size: 1.25rem;
    margin-left: 0.625rem;
  }
}

.company__item-text {
  margin-top: 1.875rem;
  font-size: 1rem;
  color: #181818;
  line-height: 1.875;
}
@media screen and (max-width: 767.9px) {
  .company__item-text {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    margin-left: 0.625rem;
    line-height: 2.1428571429;
  }
}

.company__item-btn-wrap.btn-wrap {
  margin-top: 2.5rem;
  max-width: 18.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .company__item-btn-wrap.btn-wrap {
    margin-top: 1.25rem;
    max-width: 21.875rem;
  }
}

.company__item-btn.btn {
  background-color: #fff;
  border: 1px solid #181818;
  color: #181818;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 100vw;
  font-size: 0.9375rem;
  position: relative;
  padding: 0.75rem 0.625rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .company__item-btn.btn {
    font-size: 0.75rem;
    padding: 0.90625rem 0.625rem;
  }
}
.company__item-btn.btn:hover {
  background-color: #181818;
  color: #fff;
}
.company__item-btn.btn::before {
  width: 0.33125rem;
  height: 0.33125rem;
  background-color: #181818;
}
.company__item-btn.btn:hover::before {
  background-color: #fff;
}

.profile {
  margin-top: 10.3125rem;
}
@media screen and (max-width: 767.9px) {
  .profile {
    margin-top: 5rem;
  }
}

.profile__inner {
  max-width: 62.25rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .profile__inner {
    max-width: 41.875rem;
    padding-left: 2.1875rem;
    padding-right: 1.5625rem;
  }
}

.profile__list {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .profile__list {
    grid-template-columns: 4.125rem 1fr;
  }
}

.profile__row {
  display: contents;
}
@media screen and (max-width: 767.9px) {
  .profile__row {
    font-size: 0.875rem;
  }
}

.profile__row:not(:first-child) {
  margin-top: 0.625rem;
}

.profile__row a {
  color: #181818;
}

.profile__list dt {
  line-height: 2.5;
  padding: 0.3125rem 0;
}

.profile__list dd {
  border-left: 0.0625rem solid #D4D4D4;
  padding: 0.3125rem 0 0.3125rem 2.5rem;
  line-height: 2.5;
}
@media screen and (max-width: 767.9px) {
  .profile__list dd {
    padding-left: 0.625rem;
  }
}

.profile__row--company dt,
.profile__row--company dd {
  padding-top: 0.625rem;
  line-height: 2;
}

.profile__map {
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  width: 100%;
  height: 20rem;
}
@media screen and (max-width: 767.9px) {
  .profile__map {
    margin-top: 2.375rem;
    margin-bottom: 0.625rem;
    height: 8rem;
    height: clamp(8rem, 30vw, 18.75rem);
  }
}

.profile__map iframe {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .profile__map iframe {
    border-radius: 0.625rem;
  }
}

.policy {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767.9px) {
  .policy {
    margin-top: 3.75rem;
  }
}

.policy__inner {
  max-width: 51.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .policy__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.policy__text {
  font-size: 1rem;
  line-height: 1.875;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767.9px) {
  .policy__text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.policy__text a {
  color: #181818;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.policy__text a:hover {
  opacity: 1;
  color: #F14D61;
}

.policy__lists {
  margin-top: 1.25rem;
  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;
}

.policy__list-title {
  font-size: 1.25rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.625rem;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .policy__list-title {
    gap: 1.25rem;
    margin-bottom: 0.3125rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.policy__list-title.policy__list-title--center {
  margin-top: 5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .policy__list-title.policy__list-title--center {
    margin-top: 2.5rem;
  }
}

.policy__list-title-number {
  font-size: 1.875rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #4BCCBE;
}
@media screen and (max-width: 767.9px) {
  .policy__list-title-number {
    position: relative;
    margin-top: -0.4375rem;
  }
}

.policy__footer {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .policy__footer {
    margin-top: 1.875rem;
  }
}

.policy__text.policy__text--footer {
  text-align: right;
}

.policy__img-wrap {
  margin-top: 0.625rem;
  max-width: 38.3125rem;
}
@media screen and (max-width: 767.9px) {
  .policy__img-wrap {
    max-width: 31.25rem;
  }
}

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

.policy__img img {
  width: 100%;
  height: auto;
}

.privacy__inner {
  max-width: 73.75rem;
  margin-inline: auto;
  padding: 5rem 0;
}
@media screen and (max-width: 767.9px) {
  .privacy__inner {
    padding: 2.5rem 1.25rem;
  }
}

.privacy__maintitle {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  border-bottom: 0.0625rem solid #000;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767.9px) {
  .privacy__maintitle {
    font-size: 1.25rem;
  }
}

.privacy__text + .privacy__maintitle {
  margin-top: 5rem;
}

.privacy__subtitle {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .privacy__subtitle {
    font-size: 1.125rem;
  }
}

.privacy__smalltitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .privacy__smalltitle {
    font-size: 1rem;
  }
}

.privacy__text {
  font-size: 1rem;
  line-height: 1.875;
}
@media screen and (max-width: 767.9px) {
  .privacy__text {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.privacy__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.privacy__table th,
.privacy__table td {
  border: 0.0625rem solid #ddd;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.privacy__table th {
  background-color: #f5f5f5;
  font-weight: 700;
  text-align: center;
}
.privacy__table td {
  vertical-align: top;
}
.privacy__table td:first-child {
  width: 30%;
  font-weight: 700;
}
.privacy__table tbody tr:has(td[colspan="2"]) td {
  background-color: #fafafa;
  font-weight: 700;
  text-align: left;
}

.privacy__text.privacy__text--right {
  margin-top: 2.5rem;
  text-align: right;
  font-size: 1.125rem;
}
@media screen and (max-width: 767.9px) {
  .privacy__text.privacy__text--right {
    font-size: 1rem;
  }
}

.privacy__text.privacy__text--red {
  color: #D20000;
}

.privacy__info {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}

.news {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767.9px) {
  .news {
    margin-top: 3.75rem;
  }
}

.news__inner {
  max-width: 52.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .news__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.news__title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #181818;
}

.news__items {
  margin-top: 4.875rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767.9px) {
  .news__items {
    margin-top: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.news__item {
  background-color: #fff;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 0.625rem 0 rgba(69, 69, 69, 0.25);
          box-shadow: 0 0 0.625rem 0 rgba(69, 69, 69, 0.25);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.news__item:hover {
  -webkit-box-shadow: 0 0 0.9375rem 0 rgba(241, 131, 51, 0.5);
          box-shadow: 0 0 0.9375rem 0 rgba(241, 131, 51, 0.5);
}

.news__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.875rem 1.875rem 1.6875rem;
}
@media screen and (max-width: 767.9px) {
  .news__item a {
    padding: 1.0625rem 1.25rem 1.6875rem;
  }
}
.news__item a:hover {
  opacity: 1;
}

.news__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news__time {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #181818;
}

.news__category {
  background-color: #F18333;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-align: center;
  border-radius: 100vw;
  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;
  padding: 0.25rem 1.25rem 0.125rem;
}

.news__sub-title {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #181818;
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.news__pagination {
  margin-top: 5rem;
}
@media screen and (max-width: 767.9px) {
  .news__pagination {
    margin-top: 2.5rem;
  }
}

.news__pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news__pagination .page-numbers {
  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;
  width: 2.5rem;
  height: 2.5rem;
  color: #181818;
  background-color: #fff;
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.25);
}

.news__pagination .page-numbers.current {
  color: #fff;
  background-color: #F18333;
}

.news__pagination .page-numbers.dots {
  border: none;
}

.news__pagination .page-numbers.prev,
.news__pagination .page-numbers.next {
  display: none;
}

.news-detail {
  word-break: break-all;
}

.news-detail__inner {
  max-width: 61rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .news-detail__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.news-detail__contents {
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 4.875rem 5rem 4.875rem;
}
@media screen and (max-width: 767.9px) {
  .news-detail__contents {
    border-radius: 0.625rem;
    padding: 1.25rem;
    -webkit-box-shadow: 0 0 0.625rem 0 rgba(69, 69, 69, 0.25);
            box-shadow: 0 0 0.625rem 0 rgba(69, 69, 69, 0.25);
  }
}

.news-detail__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .news-detail__info {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.news-detail__time {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .news-detail__time {
    font-size: 1rem;
  }
}

.news-detail__category {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background-color: #F18333;
  border-radius: 100vw;
  padding: 0.21875rem 2.03125rem;
}
@media screen and (max-width: 767.9px) {
  .news-detail__category {
    font-size: 0.75rem;
    padding: 0.15625rem 1.375rem;
  }
}

.news-detail__title {
  margin-top: 1.5625rem;
  font-size: 1.875rem;
}
@media screen and (max-width: 767.9px) {
  .news-detail__title {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.news-detail__content {
  margin-top: 1.5625rem;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content {
    margin-top: 1.25rem;
  }
}

.news-detail__content > * + * {
  margin-top: 1.25rem;
}

.news-detail__content p {
  font-size: 1rem;
  line-height: 1.875;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content p {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.news-detail__content ul {
  margin-top: 1.25rem;
  list-style-type: disc;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content ul {
    margin-top: 1.25rem;
  }
}

.news-detail__content li {
  font-size: 1rem;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content li {
    font-size: 1rem;
  }
}

.news-detail__content ol {
  margin-top: 1.25rem;
  list-style-type: decimal;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content ol {
    margin-top: 1.25rem;
  }
}

.news-detail__content li {
  font-size: 1rem;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content li {
    font-size: 1rem;
  }
}

.news-detail__content dl {
  margin-top: 1.25rem;
  list-style-type: decimal;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content dl {
    margin-top: 1.25rem;
  }
}

.news-detail__content dt,
.news-detail__content dd {
  font-size: 1rem;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content dt,
  .news-detail__content dd {
    font-size: 1rem;
  }
}

.news-detail__content dd {
  padding-left: 1.25rem;
}

.news-detail__content blockquote {
  margin-top: 1.25rem;
  font-style: italic;
  border-left: 0.1875rem solid #ccc;
  padding-left: 1.25rem;
  font-size: 1rem;
  color: #555;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content blockquote {
    margin-top: 1.25rem;
    padding-left: 1.25rem;
    font-size: 1rem;
  }
}

.news-detail__content a {
  display: inline-block;
  font-size: 1rem;
  text-decoration: underline;
  color: #21A4ED;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content a {
    font-size: 1rem;
  }
}

.news-detail__content h1,
.news-detail__content h2 {
  margin-top: 1.25rem;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.2727272727;
  border-bottom: 0.125rem solid #F18333;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content h1,
  .news-detail__content h2 {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.news-detail__content h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  border-left: 0.125rem solid #F18333;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content h3 {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.news-detail__content h4,
.news-detail__content h5,
.news-detail__content h6 {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content h4,
  .news-detail__content h5,
  .news-detail__content h6 {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.news-detail__content img,
.news-detail__content figure {
  margin-top: 1.25rem;
  max-width: 100%;
  width: auto;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content img,
  .news-detail__content figure {
    margin-top: 1.25rem;
  }
}

.news-detail__content figcaption {
  font-size: 0.875rem;
}
@media screen and (max-width: 767.9px) {
  .news-detail__content figcaption {
    font-size: 0.75rem;
  }
}

.news-detail__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 1rem;
  text-align: left;
}

.news-detail__content th,
.news-detail__content td {
  border: 0.0625rem solid #ddd;
  padding: 0.75rem;
}

.news-detail__content thead th {
  background-color: #f4f4f4;
  font-weight: bold;
  text-align: center;
}

.news-detail__content tbody th {
  background-color: #f9f9f9;
}

.news-detail__content pre {
  white-space: pre-wrap;
}

.news-detail__top-btn-wrap {
  margin-top: 6rem;
  max-width: 26.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .news-detail__top-btn-wrap {
    margin-top: 2.5rem;
    max-width: 28.125rem;
  }
}

.news-detail__top-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #181818;
  color: #fff;
  border-radius: 0.625rem;
  font-size: 1rem;
  padding: 1.125rem;
  border: 2px solid #181818;
  position: relative;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.news-detail__top-btn:hover {
  background-color: #fff;
  color: #181818;
  border: 2px solid #181818;
}
.news-detail__top-btn::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2.5rem;
  background-image: url(../images/icon_top-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.news-detail__top-btn:hover::before {
  background-image: url(../images/icon_top-arrow-black.svg);
}

.contact {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767.9px) {
  .contact {
    margin-top: 3.75rem;
  }
}

.contact__inner {
  max-width: 45.6875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .contact__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.contact__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .contact__step {
    padding: 0 1.375rem;
    gap: 1.25rem;
  }
}

.contact__step-text {
  background-color: #fff;
  color: #E3E3E3;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  max-width: 13.5625rem;
  width: 100%;
  padding: 1.3125rem 0.625rem;
  border: 2px solid #fff;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 11.5rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 11.5rem rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767.9px) {
  .contact__step-text {
    font-size: clamp(0.5rem, 0.371rem + 0.531vw, 0.625rem);
    border-radius: 0.25rem;
    padding: 0.5rem;
  }
}

.contact__step-text.is-active {
  background-color: #F14D61;
  color: #fff;
}

.contact__read {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .contact__read {
    margin-top: 1.25rem;
  }
}

.contact__read-text {
  font-size: 1rem;
  line-height: 1.875;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .contact__read-text {
    font-size: 0.75rem;
    line-height: 2;
  }
}

.form {
  margin-top: 5rem;
  max-width: 41.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .form {
    margin-top: 1.25rem;
  }
}

.form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767.9px) {
  .form__list {
    gap: 1.875rem;
  }
}

.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .form__field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form__field--textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9.6875rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;
}
@media screen and (max-width: 767.9px) {
  .form__label {
    width: 100%;
    font-size: 1rem;
  }
}

.form__required {
  color: #F14D61;
  font-size: 0.625rem;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .form__required {
    font-size: 0.625rem;
  }
}

.form__data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  width: 100%;
}

.form__input {
  width: 100%;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  background-color: #F1F1F1;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  border-radius: 0.25rem;
}
.form__input::-webkit-input-placeholder {
  color: #BCBCBC;
}
.form__input::-moz-placeholder {
  color: #BCBCBC;
}
.form__input:-ms-input-placeholder {
  color: #BCBCBC;
}
.form__input::-ms-input-placeholder {
  color: #BCBCBC;
}
.form__input::placeholder {
  color: #BCBCBC;
}

.form__input.form__input--address {
  resize: none;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  height: 2.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .form__input.form__input--address {
    height: 4.25rem;
  }
  .form__input.form__input--address::-webkit-input-placeholder {
    line-height: 1.8;
  }
  .form__input.form__input--address::-moz-placeholder {
    line-height: 1.8;
  }
  .form__input.form__input--address:-ms-input-placeholder {
    line-height: 1.8;
  }
  .form__input.form__input--address::-ms-input-placeholder {
    line-height: 1.8;
  }
  .form__input.form__input--address::placeholder {
    line-height: 1.8;
  }
}

.form__textarea {
  width: 100%;
  min-height: 16.875rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  background-color: #F1F1F1;
  resize: none;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.form__textarea::-webkit-input-placeholder {
  color: #BCBCBC;
}
.form__textarea::-moz-placeholder {
  color: #BCBCBC;
}
.form__textarea:-ms-input-placeholder {
  color: #BCBCBC;
}
.form__textarea::-ms-input-placeholder {
  color: #BCBCBC;
}
.form__textarea::placeholder {
  color: #BCBCBC;
}
@media screen and (max-width: 767.9px) {
  .form__textarea {
    min-height: 17.5rem;
  }
}

.form__btn-container,
.confirm__btn-container {
  margin-top: 5rem;
  margin-left: 4.375rem;
  max-width: 31.25rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .form__btn-container,
  .confirm__btn-container {
    margin-top: 2.5rem;
    margin-left: 0;
    margin-inline: auto;
  }
}

.confirm__btn-text {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767.9px) {
  .confirm__btn-text {
    font-size: clamp(0.563rem, 0.239rem + 1.326vw, 0.8rem);
    line-height: 2.2222222222;
  }
}

.form__btn-wrap,
.confirm__btn-wrap {
  position: relative;
}
.form__btn-wrap::before,
.confirm__btn-wrap::before {
  position: absolute;
  content: "";
  width: 0.4375rem;
  height: 0.4375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2.5rem;
  background-color: #fff;
  border-radius: 100vw;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 10;
}
.form__btn-wrap:hover:not(:has(.form__btn:disabled)):not(:has(.confirm__btn:disabled))::before,
.confirm__btn-wrap:hover:not(:has(.form__btn:disabled)):not(:has(.confirm__btn:disabled))::before {
  -webkit-transform: translateY(-50%) scale(1.5);
          transform: translateY(-50%) scale(1.5);
  background-color: #181818;
}

.form__btn,
.confirm__btn {
  background-color: #181818;
  color: #fff;
  font-size: 1.125rem;
  display: block;
  width: 100%;
  padding: 1.1875rem 0.625rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
  border: 1px solid #181818;
}
@media screen and (max-width: 767.9px) {
  .form__btn,
  .confirm__btn {
    margin-top: 0.25rem;
    font-size: 1.125rem;
    padding: 1.15625rem 0.625rem;
    max-width: 31.25rem;
    margin-inline: auto;
  }
}
.form__btn:hover:not(:disabled),
.confirm__btn:hover:not(:disabled) {
  opacity: 1;
  background-color: #fff;
  color: #181818;
  border: 1px solid #181818;
}
.form__btn:disabled,
.confirm__btn:disabled {
  opacity: 0.2;
}

.form__field--privacy {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__data--privacy {
  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;
}
@media screen and (max-width: 767.9px) {
  .form__data--privacy {
    gap: 0.9375rem;
  }
}

.form__privacy-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #181818;
  position: relative;
  padding-left: 1.75rem;
}
@media screen and (max-width: 767.9px) {
  .form__privacy-text {
    font-size: 0.75rem;
    padding-left: 1.5rem;
  }
}
.form__privacy-text a {
  color: #F14D61;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.form__privacy-text a:hover {
  opacity: 0.7;
}

.form__privacy-icon {
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form__privacy-icon {
    top: 0.375rem;
    width: 0.875rem;
    height: 0.875rem;
  }
}
.form__privacy-icon::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #F14D61;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  .form__privacy-icon::before {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.form__checkbox-wrap {
  margin-top: 0.625rem;
  padding: 1.25rem;
  background-color: #F1F1F1;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767.9px) {
  .form__checkbox-wrap {
    padding: 0.9375rem;
    margin-top: 0.3125rem;
  }
}

.form__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .form__checkbox-label {
    gap: 0.625rem;
  }
}

.form__checkbox {
  display: block !important;
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  cursor: pointer;
  accent-color: #181818;
  border: 1px solid #ccc;
}
@media screen and (max-width: 767.9px) {
  .form__checkbox {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.form__checkbox-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #181818;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.9px) {
  .form__checkbox-text {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 767.9px) {
  .confirm.page-position {
    padding-bottom: 5rem;
  }
}

.confirm__inner {
  margin-top: 5rem;
  max-width: 40.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .confirm__inner {
    margin-top: 1.25rem;
  }
}

.confirm__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
}
@media screen and (max-width: 767.9px) {
  .confirm__list {
    gap: 1.875rem;
  }
}

.confirm__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767.9px) {
  .confirm__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.confirm__item.confirm__item--textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.confirm__item.confirm__item--textarea .confirm__term {
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767.9px) {
  .confirm__item.confirm__item--textarea .confirm__term {
    margin-top: 0;
  }
}

.confirm__term {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9.6875rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;
}
@media screen and (max-width: 767.9px) {
  .confirm__term {
    width: 100%;
    font-size: 1rem;
  }
}

.confirm__required {
  color: #F14D61;
  font-size: 0.625rem;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767.9px) {
  .confirm__required {
    font-size: 0.625rem;
  }
}

.confirm__definition {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: #181818;
  line-height: 1.5;
  word-break: break-all;
}
@media screen and (max-width: 767.9px) {
  .confirm__definition {
    padding: 0.625rem 1rem;
  }
}

.thanks {
  margin-top: 5rem;
}
@media screen and (max-width: 767.9px) {
  .thanks {
    margin-top: 2.5rem;
  }
}

.thanks__inner {
  max-width: 51.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .thanks__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.thanks__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .thanks__text {
    font-size: 1rem;
  }
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7-response-output {
  max-width: 43.75rem;
  margin-inline: auto !important;
}
@media screen and (max-width: 767.9px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7-response-output {
    max-width: 34.375rem;
  }
}

.wpcf7-not-valid-tip {
  font-size: 0.75rem;
}

.error {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767.9px) {
  .error {
    margin-top: 3.75rem;
  }
}

.error__inner {
  max-width: 51.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .error__inner {
    max-width: 41.875rem;
    padding: 0 2.1875rem;
  }
}

.error__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .error__text {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */