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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

@media screen and (max-width: 1277px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1278 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 750 * 100vw);
  }
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
@media not screen and (min-width: 768px) {
  body {
    font-size: 1.75rem;
    line-height: 1.5;
  }
}

main {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.hidden-pc {
  display: none;
}
@media not screen and (min-width: 768px) {
  .hidden-pc {
    display: inline-block;
  }
}

.hidden-sp {
  display: inline-block;
}
@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

.button {
  border-radius: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  font-weight: 700;
  font-size: max(14px, 1rem);
  line-height: 1.1875;
  letter-spacing: 0.05rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  border: 0.5px solid #000;
  -webkit-transition: color 0.3s, background-color 0.3s, border 0.3s;
  transition: color 0.3s, background-color 0.3s, border 0.3s;
}
@media not screen and (min-width: 768px) {
  .button {
    font-size: 1.4444375rem;
    line-height: 1.2115442863;
    letter-spacing: 0.07225rem;
    border-radius: 2.7083125rem;
    border: 0.722px solid #000;
  }
}
.button svg {
  width: 1.3125rem;
  height: 4px;
  -webkit-transition: translate 0.3s;
  transition: translate 0.3s;
}
@media not screen and (min-width: 768px) {
  .button svg {
    width: 1.8958125rem;
    height: 0.361125rem;
  }
}
.button .stroke-color {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
@media (any-hover: hover) {
  .button:hover svg {
    translate: 20% 0;
  }
}
.button.button--black {
  color: #FFF;
  background-color: #000;
}
.button.button--black .stroke-color {
  stroke: #FFF;
}
@media (any-hover: hover) {
  .button.button--black:hover {
    background-color: #FFF;
    color: #000;
  }
  .button.button--black:hover .stroke-color {
    stroke: #000;
  }
}
.button.button--white {
  color: #000;
  background-color: #FFF;
  padding-block: 0.8125rem;
}
@media not screen and (min-width: 768px) {
  .button.button--white {
    padding-block: 1.25rem 1.125rem;
  }
}
.button.button--white .stroke-color {
  stroke: #000;
}
@media (any-hover: hover) {
  .button.button--white:hover {
    background-color: #000;
    color: #FFF;
    border: 0.5px solid #FFF;
  }
  .button.button--white:hover .stroke-color {
    stroke: #FFF;
  }
}
.button.button--translate svg {
  translate: 0 0.125rem;
}
@media (any-hover: hover) {
  .button.button--translate:hover svg {
    translate: 20% 0.125rem;
  }
}

.section-bg {
  background: url("../../assets/img/section-bg.webp") repeat center center/cover;
}

.inner {
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .inner {
    padding-inline: 1.25rem;
  }
}

.title-h2 {
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: max(28px, 1.875rem);
  font-weight: 900;
  line-height: 1.3666666667;
  letter-spacing: 0.1875rem;
}
@media not screen and (min-width: 768px) {
  .title-h2 {
    font-size: 2.5rem;
    line-height: 1.35;
    letter-spacing: 0.25rem;
  }
}

.title-h3 {
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: max(20px, 1.5rem);
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0.075rem;
  padding-left: 0.875rem;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .title-h3 {
    font-size: 2rem;
    line-height: 1.375;
    letter-spacing: 0.1rem;
    padding-left: 0.6875rem;
  }
}
.title-h3::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 2.1875rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #000;
}
@media not screen and (min-width: 768px) {
  .title-h3::before {
    height: 2.5rem;
  }
}

.contact-title {
  color: #FFF;
  text-align: center;
  font-size: max(18px, 1.25rem);
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.0625rem;
  height: max(45px, 3rem);
  background-color: #000;
}

.page-header {
  padding-block: 3.8125rem;
  background-color: #000;
}
@media not screen and (min-width: 768px) {
  .page-header {
    padding-block: 3.125rem;
  }
}

.page-header__inner {
  max-width: 74.5rem;
}
@media not screen and (min-width: 768px) {
  .page-header__inner {
    padding-inline: 3.25rem;
  }
}

.page-header__title {
  color: #FFF;
  font-family: "Noto Sans", sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.3611111111;
  letter-spacing: 0.225rem;
}
@media not screen and (min-width: 768px) {
  .page-header__title {
    font-size: 2.75rem;
    line-height: 1.3636363636;
    letter-spacing: 0.275rem;
  }
}

/* 初期状態（まだ表示されていない） */
.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

/* 表示されたあと */
.fade-in-up.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-block: 0.75rem;
  background-color: #FFF;
}
@media not screen and (min-width: 768px) {
  .header {
    padding-block: 0;
    width: 100vw;
  }
}

.header__inner {
  padding-inline: 3.4375rem 2.25rem;
  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;
}
@media not screen and (min-width: 768px) {
  .header__inner {
    padding-inline: 0.6875rem 0;
  }
}

.header__logo {
  width: 11.75rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .header__logo {
    width: 5.5625rem;
    padding-block: 1.1875rem;
  }
}
@media (any-hover: hover) {
  .header__logo:hover {
    opacity: 0.7;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.875rem;
}
@media not screen and (min-width: 768px) {
  .header__nav {
    gap: 0;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.0625rem;
  padding-top: 0.25rem;
}
@media not screen and (min-width: 768px) {
  .header__nav-list {
    display: none;
  }
}

.header__nav-item {
  font-family: "Noto Sans", sans-serif;
  font-size: max(12px, 1.125rem);
  font-weight: 700;
  line-height: 1.3888888889;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}
.header__nav-item.header__nav-item--polygon {
  position: relative;
}
.header__nav-item.header__nav-item--polygon::before {
  content: "";
  position: absolute;
  background: url("../../assets/img/link-polygon.svg") no-repeat center center/contain;
  width: 0.8125rem;
  height: 0.8125rem;
  top: 0.375rem;
  right: 0;
}
.header__nav-item.header__nav-item--polygon-service {
  padding-right: 1.25rem;
}
.header__nav-item.header__nav-item--polygon-about {
  padding-right: 1.0625rem;
}
@media (any-hover: hover) {
  .header__nav-item:hover {
    color: #333;
    opacity: 0.7;
  }
}

.header__nav-button {
  padding-block: 0.5625rem;
  padding-inline: 1.4375rem 0.6875rem;
  letter-spacing: 0.03rem;
  line-height: 1.375;
  font-size: max(12px, 1rem);
}
@media not screen and (min-width: 768px) {
  .header__nav-button {
    font-size: 1.275rem;
    line-height: 1.3725490196;
    letter-spacing: 0.03825rem;
    padding-block: 0.655rem 0.6575rem;
    padding-inline: 1.75rem 0.8125rem;
    margin-left: 13.9375rem;
    border-radius: 2.390625rem;
  }
}
.header__nav-button span {
  font-size: max(12px, 1.125rem);
  letter-spacing: 0.03375rem;
  line-height: 1.2222222222;
}
@media not screen and (min-width: 768px) {
  .header__nav-button span {
    font-size: 1.434375rem;
    line-height: 1.220043573;
    letter-spacing: 0.043rem;
  }
}
.header__nav-button svg {
  margin-left: 0.6875rem;
}
@media not screen and (min-width: 768px) {
  .header__nav-button svg {
    margin-left: 0.908125rem;
    translate: 0 0 !important;
    width: 1.6721875rem;
    height: 0.334375rem;
  }
}

.header__drawer-wrapper {
  display: none;
}
@media not screen and (min-width: 768px) {
  .header__drawer-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 6.5625rem;
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
    padding-block: 1.6875rem;
    background-color: #000;
  }
}

.header__drawer-icon {
  width: 3.75rem;
  height: 2.875rem;
  position: relative;
  z-index: 102;
}
.header__drawer-icon.is-checked .header__drawer-icon-bar:nth-of-type(1), .header__drawer-icon.is-checked .header__drawer-icon-bar:nth-of-type(2) {
  top: 50%;
}
.header__drawer-icon.is-checked .header__drawer-icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__drawer-icon.is-checked .header__drawer-icon-bar:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header__drawer-icon.is-checked .header__drawer-icon-bar:nth-of-type(3) {
  opacity: 0;
}

.header__drawer-icon-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.3125rem;
  background-color: #FFF;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.header__drawer-icon-bar:nth-of-type(1) {
  top: 0;
}
.header__drawer-icon-bar:nth-of-type(2) {
  top: 50%;
}
.header__drawer-icon-bar:nth-of-type(3) {
  top: 100%;
}

.footer {
  padding-block: 2.75rem 1.4375rem;
  background-color: #000;
}
@media not screen and (min-width: 768px) {
  .footer {
    padding-block: 3.5rem 4.9375rem;
  }
}

.footer__inner {
  max-width: 75rem;
}
@media not screen and (min-width: 768px) {
  .footer__inner {
    padding-inline: 1.25rem;
  }
}

.footer__content {
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__content-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.9375rem;
  text-align: center;
  margin-left: 3.5625rem;
}
@media not screen and (min-width: 768px) {
  .footer__content-head {
    margin-left: 0;
    gap: 1.6875rem;
    padding-inline: 2.1875rem 2rem;
  }
}

.footer__content-head-lead {
  text-align: center;
  -webkit-text-stroke-width: 0.25px;
  -webkit-text-stroke-color: #FFF;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0.15rem;
}
@media not screen and (min-width: 768px) {
  .footer__content-head-lead {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    line-height: 1.375;
  }
}

.footer__content-head-button {
  padding-block: 0.4375rem !important;
  padding-inline: 3.25rem 2.0625rem;
  margin-right: 0.4375rem;
}
@media not screen and (min-width: 768px) {
  .footer__content-head-button {
    font-size: 1.4618125rem;
    line-height: 1.1976047904;
    letter-spacing: 0.0730625rem;
    padding-block: 0.639375rem 0.649375rem !important;
    padding-inline: 4.323125rem 3.04375rem;
    margin-right: 0.1875rem;
  }
}
.footer__content-head-button span {
  letter-spacing: 0.05625rem;
  font-size: max(16px, 1.125rem);
}
@media not screen and (min-width: 768px) {
  .footer__content-head-button span {
    font-size: 1.6445625rem;
    line-height: 1.064112796;
    letter-spacing: 0.08225rem;
  }
}
.footer__content-head-button svg {
  margin-left: 1.5rem;
}
@media not screen and (min-width: 768px) {
  .footer__content-head-button svg {
    margin-left: 2.349375rem;
    width: 1.9186875rem;
    height: 0.365375rem;
  }
}

.footer__content-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-top: 6.9375rem;
  gap: 22rem;
  margin-left: 0.5rem;
}
@media not screen and (min-width: 768px) {
  .footer__content-main {
    margin-top: 3.710625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__content-main {
    gap: 5.2083333333vw;
  }
}

.footer__logo {
  width: 14.375rem;
  margin-left: -0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media not screen and (min-width: 768px) {
  .footer__logo {
    width: 16.375rem;
    margin-left: 25.3125rem;
    margin-top: -4.5625rem;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.4375rem;
}
@media not screen and (min-width: 768px) {
  .footer__nav {
    gap: 1.125rem;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  white-space: nowrap;
}
.footer__nav-list.footer__nav-list--right {
  gap: 0.0625rem;
}
@media not screen and (min-width: 768px) {
  .footer__nav-list.footer__nav-list--right {
    gap: 0.9375rem;
  }
}
.footer__nav-list.footer__nav-list--left {
  gap: 1.6875rem;
}
@media not screen and (min-width: 768px) {
  .footer__nav-list.footer__nav-list--left {
    gap: 2.4375rem;
  }
}

.footer__nav-item {
  font-family: "Noto Sans", sans-serif;
  font-size: max(16px, 1.125rem);
  font-weight: 600;
  line-height: 1.94444;
}
@media not screen and (min-width: 768px) {
  .footer__nav-item {
    font-size: 1.75rem;
    line-height: 1.25;
    letter-spacing: 0.0525rem;
  }
}
.footer__nav-item.footer__nav-item--service {
  line-height: 1.66667;
}
@media not screen and (min-width: 768px) {
  .footer__nav-item.footer__nav-item--service {
    line-height: 1.07143;
  }
}
.footer__nav-item.footer__nav-item--privacy {
  margin-top: 0.375rem;
}
@media not screen and (min-width: 768px) {
  .footer__nav-item.footer__nav-item--privacy {
    margin-top: 0.0625rem;
  }
}

.footer__nav-link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .footer__nav-link:hover {
    opacity: 0.7;
  }
}

.footer__service-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: 0.75rem;
  padding-left: 1rem;
}
@media not screen and (min-width: 768px) {
  .footer__service-list {
    padding-left: 1.6875rem;
    gap: 1.25rem;
  }
}

@media not screen and (min-width: 768px) {
  .footer__service-item:nth-child(3) {
    margin-top: 0.25rem;
  }
}
@media not screen and (min-width: 768px) {
  .footer__service-item:nth-child(4) {
    margin-top: 0.3125rem;
  }
}
@media not screen and (min-width: 768px) {
  .footer__service-item:nth-child(5) {
    margin-top: 0.25rem;
  }
}
@media not screen and (min-width: 768px) {
  .footer__service-item:nth-child(6) {
    margin-top: 0.25rem;
  }
}
@media not screen and (min-width: 768px) {
  .footer__service-item:nth-child(7) {
    margin-top: 0.3125rem;
  }
}
@media not screen and (min-width: 768px) {
  .footer__service-item:nth-child(8) {
    margin-top: 0.3125rem;
  }
}

.footer__service-item-sub-list {
  margin-top: -0.6875rem;
}
@media not screen and (min-width: 768px) {
  .footer__service-item-sub-list {
    line-height: 1.35714;
    margin-top: -0.875rem;
  }
}

.footer__service-link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .footer__service-link:hover {
    opacity: 0.7;
  }
}

.footer__about-link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .footer__about-link:hover {
    opacity: 0.7;
  }
}

.footer__copyright {
  margin-top: 3rem;
  font-family: "Noto Sans", sans-serif;
  font-size: max(16px, 1.125rem);
  font-weight: 700;
  line-height: 1.3888888889;
  text-align: center;
  padding-left: 1.1875rem;
}
@media not screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 1.125rem;
    line-height: 1.3888888889;
    margin-top: 4.0625rem;
    padding-left: 0;
  }
}

.breadcrumb {
  line-height: 1.78571;
  letter-spacing: 0.7px;
  width: 100%;
}
.breadcrumb span {
  display: inline;
}
.breadcrumb a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .breadcrumb a:hover {
    opacity: 0.7;
  }
}

.case {
  padding-block: 8.25rem 14.8125rem;
  overflow: hidden;
}
@media not screen and (min-width: 768px) {
  .case {
    padding-block: 4.9375rem 4.875rem;
  }
}

.case__inner {
  max-width: 80.0625rem;
  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.8125rem;
}
@media not screen and (min-width: 768px) {
  .case__inner {
    padding-inline: 0;
    gap: 2.6875rem;
  }
}
.page-ad-operations-case .case__inner {
  gap: 2.5625rem;
}

.case__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;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .case__head {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media not screen and (min-width: 768px) {
  .case__title {
    padding-left: 0.125rem;
  }
}

.case__button {
  padding-inline: 2.3125rem 1.625rem;
  margin-top: 0.25rem;
  gap: 1.375rem;
  margin-right: 0.375rem;
}
@media not screen and (min-width: 768px) {
  .case__button {
    padding-inline: 3.18875rem 2.105rem;
    gap: 0.3375rem;
    margin-top: 6.5rem;
    margin-inline: auto;
  }
}
.case__button svg {
  width: 1.5625rem;
}
@media not screen and (min-width: 768px) {
  .case__button svg {
    width: 1.8964375rem;
    height: 0.3611875rem;
  }
}
@media not screen and (min-width: 768px) {
  .case__button.case__button--pc {
    display: none;
  }
}
.case__button.case__button--sp {
  display: none;
}
@media not screen and (min-width: 768px) {
  .case__button.case__button--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page-ad-operations-case .case__button {
  translate: 0 0.4375rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-case .case__button {
    translate: 0 0;
    margin-top: 6.875rem;
  }
}

.case__slider {
  width: 100vw;
  margin-right: -50vw;
  margin-left: 10rem;
  position: relative;
  overflow: visible;
}
@media not screen and (min-width: 768px) {
  .case__slider {
    margin-left: 0;
    margin-right: 0;
  }
}

.case-swiper {
  width: 100%;
  overflow: hidden;
}

@media not screen and (min-width: 768px) {
  .case-swiper__wrapper {
    -webkit-transform: translateX(-1.1875rem);
            transform: translateX(-1.1875rem);
  }
}

.case-swiper__slide {
  width: 20.625rem;
}

.case-swiper__slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .case-swiper__slide-content:hover {
    opacity: 0.7;
  }
  .case-swiper__slide-content:hover .case-swiper__slide-img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.case-swiper__slide-img {
  width: 100%;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.case-swiper__slide-title {
  font-family: "Noto Sans", sans-serif;
  line-height: 1.3571428571;
  letter-spacing: 0.0875rem;
}
@media not screen and (min-width: 768px) {
  .case-swiper__slide-title {
    font-size: 0.875rem;
  }
}

/* 位置のreset */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  padding: 0;
}

.swiper-pagination-progressbar.swiper-pagination-horizontal {
  top: calc(100% + 2rem);
  left: 0.1875rem;
  width: 100%;
  height: 5px;
  background: #f1f1f1;
}

/* activeな部分 */
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #000;
}

.case-swiper__button-prev,
.case-swiper__button-next {
  color: transparent;
  background-color: #FFF;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #706d6d;
  margin-top: clamp(190px, 128.2530120482px + 6.0240963855vw, 215px) !important;
  -webkit-transition: background-color 0.3s, left 0.3s, right 0.3s;
  transition: background-color 0.3s, left 0.3s, right 0.3s;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .case-swiper__button-prev,
  .case-swiper__button-next {
    margin-top: clamp(145px, 28px + 15.234375vw, 184px) !important;
  }
}
@media not screen and (min-width: 768px) {
  .case-swiper__button-prev,
  .case-swiper__button-next {
    margin-top: 15rem !important;
  }
}
.page-ad-operations-case .case-swiper__button-prev,
.page-ad-operations-case .case-swiper__button-next {
  margin-top: clamp(190px, 177.6506024096px + 1.2048192771vw, 195px) !important;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-case .case-swiper__button-prev,
  .page-ad-operations-case .case-swiper__button-next {
    margin-top: 13.875rem !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-ad-operations-case .case-swiper__button-prev,
  .page-ad-operations-case .case-swiper__button-next {
    margin-top: clamp(138px, 0px + 17.96875vw, 184px) !important;
  }
}
.case-swiper__button-prev svg .swiper-button-stroke--circle,
.case-swiper__button-next svg .swiper-button-stroke--circle {
  stroke: none;
}
.case-swiper__button-prev svg .swiper-button-stroke,
.case-swiper__button-next svg .swiper-button-stroke {
  stroke: #333;
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.case-swiper__button-prev::after,
.case-swiper__button-next::after {
  display: none;
}
@media (any-hover: hover) {
  .case-swiper__button-prev:hover,
  .case-swiper__button-next:hover {
    background-color: #706d6d;
  }
  .case-swiper__button-prev:hover svg .swiper-button-stroke,
  .case-swiper__button-next:hover svg .swiper-button-stroke {
    stroke: #FFF;
  }
}

.case-swiper__button-prev {
  left: 0 !important;
}
@media not screen and (min-width: 768px) {
  .case-swiper__button-prev {
    left: 38.375rem !important;
  }
}
@media (any-hover: hover) {
  .case-swiper__button-prev:hover {
    left: -0.3125rem !important;
  }
}

.case-swiper__button-next {
  right: 92.0138888889vw !important;
}
@media not screen and (min-width: 768px) {
  .case-swiper__button-next {
    right: 1.25rem !important;
  }
}
@media (any-hover: hover) {
  .case-swiper__button-next:hover {
    right: calc(92.0138888889vw - 0.3125rem) !important;
  }
}

.fv {
  padding-block: 3.3125rem 5.375rem;
}
@media not screen and (min-width: 768px) {
  .fv {
    padding-block: 3.5625rem 3.5625rem;
  }
}

.fv__content {
  background: url("../../assets/img/MV-bg.webp") no-repeat center center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/481;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .fv__content {
    background: url("../../assets/img/sp/MV-bg-sp.webp") no-repeat center center/cover;
    aspect-ratio: 750/774;
    background-size: 90rem 48.375rem;
  }
}
.fv__content::before {
  content: "";
  position: absolute;
  background: url("../../assets/img/MV-bg-logo.webp") no-repeat center center/contain;
  width: 80.8333333333vw;
  height: auto;
  aspect-ratio: 1164/182;
  left: 9.5138888889vw;
  bottom: 0;
}
@media not screen and (min-width: 768px) {
  .fv__content::before {
    width: 100%;
    height: auto;
    aspect-ratio: 750/118;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 5.8125rem;
  }
}

.fv__catch {
  position: absolute;
  top: 6.5277777778vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  z-index: 1;
  color: #000;
  font-family: "Noto Sans", sans-serif;
  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.125rem;
  white-space: nowrap;
}
@media not screen and (min-width: 768px) {
  .fv__catch {
    top: 6.0625rem;
    gap: 3.25rem;
  }
}

.fv__catch-text {
  font-size: 3.6111111111vw;
  font-weight: 900;
  line-height: 1.3653846154;
  letter-spacing: 0.325rem;
}
@media not screen and (min-width: 768px) {
  .fv__catch-text {
    font-size: 3.25rem;
    line-height: 1.3653846154;
    letter-spacing: 0.325rem;
    padding-left: 2.9375rem;
  }
}

.fv__catch-text-sub {
  font-size: 2.9166666667vw;
  font-weight: 600;
  line-height: 1.3571428571;
  letter-spacing: 0.2625rem;
  padding-left: 0.2777777778vw;
}
@media not screen and (min-width: 768px) {
  .fv__catch-text-sub {
    font-size: 2.625rem;
    line-height: 1.5476190476;
    padding-left: 0;
  }
}

.fv__scrolldown {
  position: absolute;
  bottom: -8.6875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media not screen and (min-width: 768px) {
  .fv__scrolldown {
    bottom: -6.8125rem;
  }
}

.fv__scrolldown-bar {
  position: relative;
}
.fv__scrolldown-bar span {
  display: inline-block;
}
.fv__scrolldown-bar .bar {
  width: 1px;
  height: 11.625rem;
  background-color: #585858;
}
@media not screen and (min-width: 768px) {
  .fv__scrolldown-bar .bar {
    width: 0.125rem;
  }
}
.fv__scrolldown-bar .circle {
  position: absolute;
  background: url("../../assets/img/scroll-bar-circle.svg") no-repeat center center/contain;
  width: 1.625rem;
  height: 1.625rem;
  top: 0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: 3s ease-in-out backwards infinite scrollDown;
          animation: 3s ease-in-out backwards infinite scrollDown;
}
@media not screen and (min-width: 768px) {
  .fv__scrolldown-bar .circle {
    width: 1.4375rem;
    height: 1.4375rem;
    top: 0.5625rem;
  }
}
@-webkit-keyframes scrollDown {
  0% {
    top: 0.625rem;
  }
  80% {
    top: 9.25rem;
    opacity: 1;
  }
  100% {
    top: 9.25rem;
    opacity: 0;
  }
}
@keyframes scrollDown {
  0% {
    top: 0.625rem;
  }
  80% {
    top: 9.25rem;
    opacity: 1;
  }
  100% {
    top: 9.25rem;
    opacity: 0;
  }
}

.key-strengths {
  padding-block: 7.3125rem 7.1875rem;
}
@media not screen and (min-width: 768px) {
  .key-strengths {
    padding-block: 6.3125rem 5.6875rem;
  }
}

.key-strengths__inner {
  max-width: 61.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8125rem;
}
@media not screen and (min-width: 768px) {
  .key-strengths__inner {
    padding-inline: 0.875rem 0.75rem;
    gap: 3.1875rem;
  }
}

.key-strengths__title {
  margin-left: -1.875rem;
}
@media not screen and (min-width: 768px) {
  .key-strengths__title {
    margin-left: 0;
  }
}

.key-strengths__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-left: 0.3125rem;
}
@media not screen and (min-width: 768px) {
  .key-strengths__content {
    margin-left: 0;
  }
}

.key-strengths__catch {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.125rem;
}
@media not screen and (min-width: 768px) {
  .key-strengths__catch {
    font-size: 2rem;
    line-height: 1.375;
    letter-spacing: 0.2rem;
  }
}

.key-strengths__text {
  color: #333;
  font-weight: 700;
  line-height: 2.14286;
  letter-spacing: 0.04375rem;
  text-align: center;
  margin-top: 2.25rem;
}
@media not screen and (min-width: 768px) {
  .key-strengths__text {
    margin-top: 1.9375rem;
    font-size: 1.75rem;
    line-height: 1.6071428571;
    letter-spacing: 0.0875rem;
  }
}

.key-strengths__button {
  margin-top: 2.25rem;
  letter-spacing: 0.05rem;
  padding-inline: 2rem 1.6875rem;
  margin-left: -0.3125rem;
  gap: 0.9375rem;
}
@media not screen and (min-width: 768px) {
  .key-strengths__button {
    margin-top: 2.75rem;
    padding-inline: 3.125rem 2.5rem;
    margin-left: -0.125rem;
    gap: 1.104375rem;
  }
}

.drive {
  padding-block: 6.875rem 4.1875rem;
  background-color: #000;
}
@media not screen and (min-width: 768px) {
  .drive {
    padding-block: 6.5625rem 6.75rem;
  }
}

.drive__inner {
  max-width: 71.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.625rem;
}
@media not screen and (min-width: 768px) {
  .drive__inner {
    padding-inline: 1rem;
    gap: 2.375rem;
  }
}

.drive__title {
  color: #FFF;
  margin-left: 0.1875rem;
}
@media not screen and (min-width: 768px) {
  .drive__title {
    margin-left: 0;
  }
}

.drive__content {
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.8125rem;
  width: 100%;
  margin-left: 5.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .drive__content {
    margin-left: 0;
  }
}
@media not screen and (min-width: 768px) {
  .drive__content {
    padding-left: 1.0625rem;
    margin-left: 0;
    justify-items: start;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "lead" "logo" "text" "btn";
    gap: 0;
  }
}

.drive__logo {
  margin-top: -4.5625rem;
  font-family: "Roboto", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.1770833333;
  letter-spacing: 0.9rem;
  width: 38.149197356%;
  position: relative;
  white-space: nowrap;
}
@media not screen and (min-width: 768px) {
  .drive__logo {
    margin-top: -1.4375rem;
    font-size: 4.6254375rem;
    line-height: 1.1755644736;
    letter-spacing: 0.6938125rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding-block: 3.926875rem 3.885625rem;
    padding-right: 0.6875rem;
  }
}
.drive__logo::before {
  content: "";
  position: absolute;
  background: url("../../assets/img/hexagon.svg") no-repeat center center/contain;
  width: 20.375rem;
  height: 20.375rem;
  top: calc(50% + 0.1875rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media not screen and (min-width: 768px) {
  .drive__logo::before {
    width: 15.455375rem;
    height: 13.25rem;
    left: calc(50% - 0.6875rem);
    top: calc(50% + 0.125rem);
  }
}
@media not screen and (min-width: 768px) {
  .drive__logo {
    grid-area: logo;
  }
}

.drive__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 48.085106383%;
  gap: 3.5rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 2.0625rem;
}
@media not screen and (min-width: 768px) {
  .drive__body {
    display: contents;
  }
}

.drive__body-text {
  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.125rem;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .drive__body-text {
    display: contents;
  }
}

.drive__lead {
  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.6875rem;
}
@media not screen and (min-width: 768px) {
  .drive__lead {
    grid-area: lead;
    gap: 2.6875rem;
  }
}

.drive__lead-text {
  font-family: "Noto Sans", sans-serif;
  font-size: max(16px, 1.25rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.125rem;
}
.drive__lead-text span {
  padding-left: 2.8125rem;
}
@media not screen and (min-width: 768px) {
  .drive__lead-text {
    font-size: 2rem;
    line-height: 1.375;
    letter-spacing: 0.2rem;
  }
  .drive__lead-text:nth-of-type(1) span {
    padding-left: 2.875rem;
  }
  .drive__lead-text:nth-of-type(2) span {
    padding-left: 2.1875rem;
    white-space: nowrap;
  }
  .drive__lead-text:nth-of-type(3) {
    margin-top: 0.4375rem;
  }
  .drive__lead-text:nth-of-type(3) span {
    display: none;
  }
}

.drive__text {
  font-weight: 700;
  line-height: 2.14286;
  letter-spacing: 0.04375rem;
  padding-left: 2.75rem;
}
@media not screen and (min-width: 768px) {
  .drive__text {
    grid-area: text;
    margin-top: 4.5rem;
    font-size: 1.75rem;
    line-height: 1.60714;
    letter-spacing: 0.0875rem;
    padding-inline: 0.25rem 1.0625rem;
  }
}

.drive__button {
  padding-inline: 2.1875rem 2.0625rem;
  letter-spacing: 0.05rem;
  gap: 0.75rem;
  margin-right: 1.5625rem;
}
@media not screen and (min-width: 768px) {
  .drive__button {
    grid-area: btn;
    font-size: 1.453125rem;
    line-height: 1.2043010753;
    letter-spacing: 0.0726875rem;
    padding-inline: 3.206875rem 3.025625rem;
    gap: 1.095rem;
    margin-top: 5.375rem;
    margin-inline: 7.5rem;
  }
  .drive__button svg {
    width: 1.90725rem;
  }
}

.service {
  padding-block: 9.1875rem 8.3125rem;
  background: url("../../assets/img/service-bg.webp") lightgray 0% 0%/50px 50px repeat;
}
@media not screen and (min-width: 768px) {
  .service {
    padding-block: 7.125rem 6.375rem;
    background: url("../../assets/img/service-bg.webp") lightgray 50%/cover no-repeat;
  }
}

.service__inner {
  max-width: 79.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.75rem;
}
@media not screen and (min-width: 768px) {
  .service__inner {
    gap: 2.5rem;
  }
}

.service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 2.3125rem;
}
@media not screen and (min-width: 768px) {
  .service__content {
    gap: 2.0625rem;
  }
}

.service__list.service__list--1column {
  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 not screen and (min-width: 768px) {
  .service__list.service__list--1column {
    gap: 2.0625rem;
  }
}
.service__list.service__list--2column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.3125rem 2.5rem;
}
@media not screen and (min-width: 768px) {
  .service__list.service__list--2column {
    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.0625rem;
  }
}

.service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FFF;
}
.service__item.service__item--1column {
  padding-inline: 4.3125rem 4.0625rem;
}
@media not screen and (min-width: 768px) {
  .service__item.service__item--1column {
    padding-inline: 2rem 2.0625rem;
  }
}
.service__item.service__item--1column.service__item--1column-first {
  gap: 1.375rem;
  padding-block: 2.1875rem 1.625rem;
}
@media not screen and (min-width: 768px) {
  .service__item.service__item--1column.service__item--1column-first {
    gap: 1.5rem;
    padding-block: 2rem 3.24875rem;
  }
}
.service__item.service__item--1column.service__item--1column-second {
  gap: 1.5625rem;
  padding-block: 2.8125rem 2.1875rem;
}
@media not screen and (min-width: 768px) {
  .service__item.service__item--1column.service__item--1column-second {
    padding-block: 1.6875rem 3.49875rem;
  }
}
.service__item.service__item--1column.service__item--1column-third {
  gap: 1.6875rem;
  padding-block: 2.625rem 2.1875rem;
  padding-inline: 4.3125rem 3.75rem;
}
@media not screen and (min-width: 768px) {
  .service__item.service__item--1column.service__item--1column-third {
    gap: 2.0625rem;
    padding-block: 2.75rem 3.62375rem;
    padding-inline: 2rem 2.0625rem;
  }
}
.service__item.service__item--2column {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.service__item.service__item--2column-first {
  padding-block: 2.5rem 1.375rem;
  padding-inline: 4.1875rem 2.1875rem;
  gap: 1.4375rem;
}
@media not screen and (min-width: 768px) {
  .service__item.service__item--2column-first {
    padding-block: 2.1875rem 3.12375rem;
    padding-inline: 2.3125rem 3.0625rem;
    gap: 1.6875rem;
  }
}
.service__item.service__item--2column-second {
  padding-block: 1.9375rem 1.4375rem;
  padding-inline: 2.5rem 0.875rem;
  gap: 2.0625rem;
}
@media not screen and (min-width: 768px) {
  .service__item.service__item--2column-second {
    padding-block: 2.3125rem 3.12375rem;
    padding-inline: 2.3125rem 3.0625rem;
    gap: 1.6875rem;
  }
}
.service__item.service__item--2column-third {
  padding-block: 2.5rem 1.8125rem;
  padding-inline: 4.1875rem 2.1875rem;
  gap: 1.4375rem;
}
@media not screen and (min-width: 768px) {
  .service__item.service__item--2column-third {
    padding-block: 2.3125rem 3.12375rem;
    padding-inline: 2.3125rem 3.0625rem;
    gap: 1.6875rem;
  }
}
.service__item.service__item--2column-fourth {
  padding-block: 2.4375rem 1.875rem;
  padding-inline: 2.625rem 4.125rem;
  gap: 1.5rem;
}
@media not screen and (min-width: 768px) {
  .service__item.service__item--2column-fourth {
    padding-block: 2.3125rem 3.12375rem;
    padding-inline: 2.3125rem 3.0625rem;
    gap: 1.6875rem;
  }
}

@media not screen and (min-width: 768px) {
  .service__item-title {
    margin-left: 0.3125rem;
  }
}
@media not screen and (min-width: 768px) {
  .service__item--1column-second .service__item-title {
    padding-left: 1rem;
  }
}
@media not screen and (min-width: 768px) {
  .service__item--1column-third .service__item-title {
    padding-left: 1rem;
  }
  .service__item--1column-third .service__item-title::before {
    height: 2.8125rem;
  }
}
.service__item--2column-first .service__item-title {
  letter-spacing: 0;
  margin-left: 0.125rem;
}
@media not screen and (min-width: 768px) {
  .service__item--2column-first .service__item-title {
    margin-left: 0;
    padding-left: 0.875rem;
  }
}
.service__item--2column-second .service__item-title {
  letter-spacing: 0;
  margin-left: -0.125rem;
  padding-left: 0.9375rem;
}
@media not screen and (min-width: 768px) {
  .service__item--2column-second .service__item-title {
    padding-left: 0.8125rem;
    margin-left: 0;
  }
}
.service__item--2column-third .service__item-title {
  letter-spacing: 0;
  margin-left: 0.125rem;
  padding-left: 0.75rem;
}
@media not screen and (min-width: 768px) {
  .service__item--2column-third .service__item-title {
    padding-left: 0.8125rem;
    margin-left: 0;
  }
}
.service__item--2column-fourth .service__item-title {
  margin-left: -0.3125rem;
  padding-left: 0.9375rem;
  letter-spacing: 0.045rem;
}
@media not screen and (min-width: 768px) {
  .service__item--2column-fourth .service__item-title {
    padding-left: 0.8125rem;
    margin-left: 0;
    letter-spacing: 0;
  }
}

.service__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media not screen and (min-width: 768px) {
  .service__item--1column .service__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.service__item--1column-first .service__item-content {
  gap: 4.125rem;
}
@media not screen and (min-width: 768px) {
  .service__item--1column-first .service__item-content {
    gap: 1.25rem;
  }
}
.service__item--1column-second .service__item-content {
  gap: 6.125rem;
}
@media not screen and (min-width: 768px) {
  .service__item--1column-second .service__item-content {
    gap: 3.125rem;
  }
}
.service__item--1column-third .service__item-content {
  gap: 17.8125rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media not screen and (min-width: 768px) {
  .service__item--1column-third .service__item-content {
    gap: 1.8125rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service__item-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media not screen and (min-width: 768px) {
  .service__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service__item-company-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service__item-company-list.service__item-company-list--1column {
  width: 26.8796992481%;
}
@media not screen and (min-width: 768px) {
  .service__item-company-list.service__item-company-list--1column {
    width: 100%;
  }
}

@media not screen and (min-width: 768px) {
  .service__item-company-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service__item--1column-first .service__item-company-item {
    padding-inline: 2.25rem;
  }
}

.service__item-company-item-2column-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service__item--1column-first .service__item-company-item-2column-list .service__item-company-item-img:nth-child(1) {
  width: 8.5rem;
}
.service__item--1column-first .service__item-company-item-2column-list .service__item-company-item-img:nth-child(2) {
  width: 8.5625rem;
  height: 4.3125rem;
  margin-left: -0.5rem;
  margin-top: 0.3125rem;
}
.service__item--1column-second .service__item-company-item-2column-list {
  margin-left: 1.5rem;
  margin-top: 0.6875rem;
}
@media not screen and (min-width: 768px) {
  .service__item--1column-second .service__item-company-item-2column-list {
    margin-left: 7.75rem;
    margin-top: -0.9375rem;
  }
}
.service__item--1column-second .service__item-company-item-2column-list .service__item-company-item-img:nth-child(1) {
  width: 3.625rem;
  height: 3.625rem;
}
@media not screen and (min-width: 768px) {
  .service__item--1column-second .service__item-company-item-2column-list .service__item-company-item-img:nth-child(1) {
    width: 5rem;
    height: 4.4375rem;
  }
}
.service__item--1column-second .service__item-company-item-2column-list .service__item-company-item-img:nth-child(2) {
  width: 14.625rem;
  height: 3.375rem;
  margin-left: 0.9375rem;
}
@media not screen and (min-width: 768px) {
  .service__item--1column-second .service__item-company-item-2column-list .service__item-company-item-img:nth-child(2) {
    width: 18.8125rem;
    height: 4.3125rem;
  }
}

.service__item-company-item-6column-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -0.3125rem;
  margin-left: 0.125rem;
}
@media not screen and (min-width: 768px) {
  .service__item-company-item-6column-list {
    margin-left: 0.75rem;
    margin-top: -0.1875rem;
  }
}
.service__item-company-item-6column-list .service__item-company-item-img:nth-child(1) {
  width: 2.625rem;
  height: 2.625rem;
}
@media not screen and (min-width: 768px) {
  .service__item-company-item-6column-list .service__item-company-item-img:nth-child(1) {
    width: 3.0625rem;
    height: 3rem;
  }
}
.service__item-company-item-6column-list .service__item-company-item-img:nth-child(2) {
  width: 3.375rem;
  height: 2.9375rem;
}
@media not screen and (min-width: 768px) {
  .service__item-company-item-6column-list .service__item-company-item-img:nth-child(2) {
    width: 3.8125rem;
    height: 3.375rem;
    margin-left: -0.4375rem;
  }
}
.service__item-company-item-6column-list .service__item-company-item-img:nth-child(3) {
  width: 2.5625rem;
  height: 2.5625rem;
  margin-left: 0.375rem;
  margin-top: 0.125rem;
}
@media not screen and (min-width: 768px) {
  .service__item-company-item-6column-list .service__item-company-item-img:nth-child(3) {
    width: 2.625rem;
    height: 2.9375rem;
    margin-left: 0.3125rem;
    margin-top: 0.0625rem;
  }
}
.service__item-company-item-6column-list .service__item-company-item-img:nth-child(4) {
  width: 2.1875rem;
  height: 2.25rem;
  margin-left: 0.375rem;
  margin-top: 0.25rem;
}
@media not screen and (min-width: 768px) {
  .service__item-company-item-6column-list .service__item-company-item-img:nth-child(4) {
    width: 2.4375rem;
    height: 2.5rem;
    margin-top: 0.125rem;
  }
}
.service__item-company-item-6column-list .service__item-company-item-img:nth-child(5) {
  width: 2.4375rem;
  height: 2.4375rem;
  margin-left: 0.4375rem;
}
@media not screen and (min-width: 768px) {
  .service__item-company-item-6column-list .service__item-company-item-img:nth-child(5) {
    width: 2.5rem;
    height: 2.8125rem;
    margin-left: 0.375rem;
  }
}
.service__item-company-item-6column-list .service__item-company-item-img:nth-child(6) {
  width: 3.25rem;
  height: 3.25rem;
  margin-top: -0.3125rem;
  margin-left: 0.125rem;
}
@media not screen and (min-width: 768px) {
  .service__item-company-item-6column-list .service__item-company-item-img:nth-child(6) {
    width: 3.5625rem;
    height: 3.75rem;
    margin-top: -0.375rem;
    margin-left: 0rem;
  }
}

.service__item-company-item-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.service__item--1column-third .service__item-company-item-img {
  width: 2.5625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 6.5rem;
  margin-top: 0.75rem;
}
@media not screen and (min-width: 768px) {
  .service__item--1column-third .service__item-company-item-img {
    width: 4.375rem;
    margin-top: 0;
    margin-left: 0;
  }
}

.service__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.service__item-body.service__item-body--1column-first {
  gap: 0.8125rem;
  margin-top: 0.625rem;
}
@media not screen and (min-width: 768px) {
  .service__item-body.service__item-body--1column-first {
    margin-top: 0;
  }
}
.service__item-body.service__item-body--1column-second {
  gap: 3.25rem;
}
.service__item-body.service__item-body--1column-third {
  gap: 1.625rem;
}
@media not screen and (min-width: 768px) {
  .service__list--2column .service__item-body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.service__item-body.service__item-body--2column-first {
  gap: 1.6875rem;
}
@media not screen and (min-width: 768px) {
  .service__item-body.service__item-body--2column-first {
    gap: 3.4375rem;
  }
}
.service__item-body.service__item-body--2column-second {
  gap: 0.25rem;
}
@media not screen and (min-width: 768px) {
  .service__item-body.service__item-body--2column-second {
    gap: 3.375rem;
  }
}
.service__item-body.service__item-body--2column-third {
  gap: 1.25rem;
}
@media not screen and (min-width: 768px) {
  .service__item-body.service__item-body--2column-third {
    gap: 3.4375rem;
  }
}
.service__item-body.service__item-body--2column-fourth {
  gap: 1.125rem;
}
@media not screen and (min-width: 768px) {
  .service__item-body.service__item-body--2column-fourth {
    gap: 3.3125rem;
  }
}

.service__item-text {
  color: #333;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  padding-right: 0.875rem;
}
@media not screen and (min-width: 768px) {
  .service__item-text {
    padding-right: 0;
  }
}
.service__item-text span {
  color: #333;
  font-weight: 700;
  display: inline;
  letter-spacing: 0.02625rem;
}
.service__item--1column-first .service__item-text {
  letter-spacing: 0.02625rem;
  line-height: 1.71429;
}
@media not screen and (min-width: 768px) {
  .service__item--1column-first .service__item-text {
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.service__item--1column-second .service__item-text {
  letter-spacing: 0.03rem;
  line-height: 1.5;
  font-size: max(14px, 1rem);
}
@media not screen and (min-width: 768px) {
  .service__item--1column-second .service__item-text {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.0525rem;
  }
}
.service__item--1column-third .service__item-text {
  font-size: max(14px, 1rem);
  line-height: 1.5;
  letter-spacing: 0.03rem;
  padding-right: 0;
}
@media not screen and (min-width: 768px) {
  .service__item--1column-third .service__item-text {
    font-size: 1.75rem;
    letter-spacing: 0.0525rem;
  }
}
.service__item--2column .service__item-text {
  letter-spacing: 0.03rem;
  line-height: 1.375;
  font-size: max(14px, 1rem);
  padding-right: 1.1875rem;
}
@media not screen and (min-width: 768px) {
  .service__item--2column .service__item-text {
    padding-right: 0;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.0525rem;
  }
}
.service__item--2column-second .service__item-text {
  padding-right: 0;
}
.service__item--2column-third .service__item-text {
  padding-right: 2.125rem;
}
@media not screen and (min-width: 768px) {
  .service__item--2column-third .service__item-text {
    padding-right: 0;
  }
}

.service__item-button {
  padding-inline: 2.1875rem 1.4375rem;
  gap: 1.3125rem;
}
@media not screen and (min-width: 768px) {
  .service__item-button {
    padding-inline: 3.1875rem 2.0625rem;
    gap: 1.875rem;
  }
}
.service__item--1column .service__item-button {
  margin-left: auto;
}
@media not screen and (min-width: 768px) {
  .service__item--1column .service__item-button {
    margin-inline: auto;
  }
}
.service__item--1column-first .service__item-button {
  margin-top: -2.25rem;
}
@media not screen and (min-width: 768px) {
  .service__item--1column-first .service__item-button {
    margin-top: -0.4375rem;
  }
}
.service__item--1column-second .service__item-button {
  margin-top: 0.375rem;
}
@media not screen and (min-width: 768px) {
  .service__item--1column-second .service__item-button {
    margin-top: 0.9375rem;
  }
}
.service__item--1column-third .service__item-button {
  margin-right: 0.25rem;
  margin-top: -0.0625rem;
}
@media not screen and (min-width: 768px) {
  .service__item--1column-third .service__item-button {
    margin-inline: auto;
    margin-top: 0.5625rem;
  }
}
@media not screen and (min-width: 768px) {
  .service__item--2column-first .service__item-button {
    margin-right: -0.8125rem;
  }
}
.service__item--2column-second .service__item-button {
  margin-right: 3.1875rem;
}
@media not screen and (min-width: 768px) {
  .service__item--2column-second .service__item-button {
    margin-right: -0.75rem;
  }
}
@media not screen and (min-width: 768px) {
  .service__item--2column-third .service__item-button {
    margin-right: -0.8125rem;
  }
}
@media not screen and (min-width: 768px) {
  .service__item--2column-fourth .service__item-button {
    margin-right: -0.8125rem;
  }
}

.page-ad-operations-service__head {
  padding-block: 6rem 2.1875rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__head {
    padding-block: 4rem 3.0625rem;
  }
}

.page-ad-operations-service-head__inner {
  max-width: 36.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service-head__inner {
    padding-inline: 1.25rem;
    gap: 1.3125rem;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-ad-operations-service-head__inner {
    max-width: 100%;
  }
}

.page-ad-operations-service-head__title {
  padding-left: 0.125rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service-head__title {
    padding-left: 0.5rem;
  }
}

.page-ad-operations-service-head__text {
  text-align: center;
  color: #333;
  font-weight: 500;
  line-height: 2.14286;
  letter-spacing: 0.04375rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service-head__text {
    line-height: 1.60714;
    letter-spacing: 0.0875rem;
  }
}

.page-ad-operations-service__content {
  padding-block: 5.875rem 5.625rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__content {
    padding-block: 5rem 7.125rem;
  }
}

.page-ad-operations-service__content-inner {
  max-width: 79.875rem;
  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.625rem;
}

.page-ad-operations-service__list.page-ad-operations-service__list--1column {
  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.9375rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list.page-ad-operations-service__list--1column {
    gap: 2.625rem;
  }
}
.page-ad-operations-service__list.page-ad-operations-service__list--2column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.625rem 2.375rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list.page-ad-operations-service__list--2column {
    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.625rem;
  }
}

.page-ad-operations-service__item {
  background-color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item {
  padding-inline: 4.25rem 4.0625rem;
  gap: 2rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--1column .page-ad-operations-service__item {
    padding-inline: 2.3125rem 1.75rem;
    gap: 0;
  }
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(1) {
  padding-block: 2.1875rem 2.125rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(1) {
    padding-block: 2rem 3.8125rem;
  }
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(1) .page-ad-operations-service__item-img {
  padding-left: 0.125rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(1) .page-ad-operations-service__item-img {
    padding-left: 0;
    margin-left: -0.3125rem;
  }
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(1) .page-ad-operations-service__item-content {
  gap: 5.3125rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(1) .page-ad-operations-service__item-content {
    gap: 0.5rem;
  }
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(1) .page-ad-operations-service__item-body {
  gap: 1.4375rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(1) .page-ad-operations-service__item-body {
    gap: 2.75rem;
  }
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(1) .page-ad-operations-service__item-text {
  padding-right: 0.75rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(1) .page-ad-operations-service__item-text {
    padding-right: 0;
  }
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(2) {
  padding-block: 2.1875rem 1.9375rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(2) {
    padding-block: 2rem 3.375rem;
    gap: 1.25rem;
  }
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(2) .page-ad-operations-service__item-img {
  padding-left: 3.875rem;
  gap: 0.6875rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 0.125rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(2) .page-ad-operations-service__item-img {
    padding-left: 0.6875rem;
    margin-top: 0;
  }
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(2) .page-ad-operations-service__item-content {
  gap: 9.9375rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(2) .page-ad-operations-service__item-content {
    gap: 1.25rem;
  }
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(2) .page-ad-operations-service__item-body {
  gap: 1.6875rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(2) .page-ad-operations-service__item-body {
    gap: 2.5rem;
  }
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(2) .page-ad-operations-service__item-text {
  padding-right: 2.5625rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--1column .page-ad-operations-service__item:nth-child(2) .page-ad-operations-service__item-text {
    padding-right: 0;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item {
  padding-block: 2.5rem 3.4375rem;
  padding-inline: 4.3125rem 3.75rem;
  gap: 2.4375rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item {
    padding-block: 2rem 2.6875rem;
    padding-inline: 2.3125rem 1.75rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(1) {
  gap: 2.4375rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(1) {
    gap: 1.5rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(1) .page-ad-operations-service__item-title {
  letter-spacing: 0;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(1) .page-ad-operations-service__item-title {
    letter-spacing: 0.1rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(1) .page-ad-operations-service__item-content {
  gap: 1.9375rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(1) .page-ad-operations-service__item-content {
    gap: 1.3125rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(2) {
  gap: 2.125rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(2) {
    gap: 1.6875rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(2) .page-ad-operations-service__item-title {
  letter-spacing: 0.0875rem;
  font-size: 1.75rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(2) .page-ad-operations-service__item-title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(2) .page-ad-operations-service__item-content {
  gap: 2.375rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(2) .page-ad-operations-service__item-content {
    gap: 1.4375rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(3) {
  padding-inline: 4.3125rem 3.125rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(3) {
    padding-inline: 2.3125rem 1.75rem;
    gap: 1.6875rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(3) .page-ad-operations-service__item-title {
  letter-spacing: 0;
  padding-left: 0.8125rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(3) .page-ad-operations-service__item-title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(3) .page-ad-operations-service__item-content {
  gap: 1.9375rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(3) .page-ad-operations-service__item-content {
    gap: 1.4375rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(3) .page-ad-operations-service__item-text {
  letter-spacing: 0;
  line-height: 1.1875;
  margin-top: 0.125rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(3) .page-ad-operations-service__item-text {
    margin-top: 0;
    line-height: 1.5;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(4) {
  gap: 1.375rem;
  padding-inline: 3.6875rem 3.375rem;
  padding-block: 2.5rem 2.6875rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(4) {
    padding-block: 2rem 2.6875rem;
    padding-inline: 2.3125rem 1.75rem;
    gap: 1.0625rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(4) .page-ad-operations-service__item-title {
  letter-spacing: 0.0875rem;
  font-size: 1.75rem;
  padding-left: 0.9375rem;
  margin-left: 0.6875rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(4) .page-ad-operations-service__item-title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    margin-left: 0;
    line-height: 0.7272727273;
    padding-left: 0.75rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(4) .page-ad-operations-service__item-content {
  gap: 1.0625rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(4) .page-ad-operations-service__item-content {
    gap: 0.9375rem;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(4) .page-ad-operations-service__item-text {
  letter-spacing: 0;
  line-height: 1.1875;
  margin-top: 0.875rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item:nth-child(4) .page-ad-operations-service__item-text {
    margin-top: 0;
    line-height: 1.5;
  }
}

.page-ad-operations-service__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item-content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-ad-operations-service__item-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.page-ad-operations-service__item-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-ad-operations-service__item-img .google-ads-icon {
  width: 8.5rem;
  height: 5.6875rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__item-img .google-ads-icon {
    width: 8.3131875rem;
    height: 5.5625rem;
  }
}
.page-ad-operations-service__item-img .yahoo-promo-icon {
  width: 8.5625rem;
  height: 4.3125rem;
  margin-left: -0.5rem;
  margin-top: 0.3125rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__item-img .yahoo-promo-icon {
    width: 8.3743125rem;
    height: 4.21775rem;
  }
}
.page-ad-operations-service__item-img .facebook-icon {
  width: 3.3125rem;
  height: 3.3125rem;
}
.page-ad-operations-service__item-img .instagram-icon {
  width: 4.125rem;
  height: 3.6875rem;
}
.page-ad-operations-service__item-img.line-icon {
  width: 3.625rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__item-img.line-icon {
    width: 3.1875rem;
    margin-left: 0.625rem;
  }
}
.page-ad-operations-service__item-img.x-icon {
  width: 2.625rem;
  margin-left: 0.5rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__item-img.x-icon {
    margin-left: 0.625rem;
  }
}
.page-ad-operations-service__item-img.tiktok-icon {
  width: 3.625rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__item-img.tiktok-icon {
    margin-left: 0.625rem;
  }
}
.page-ad-operations-service__item-img.pinterest-icon {
  width: 5.125rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__item-img.pinterest-icon {
    width: 4.6875rem;
  }
}

.page-ad-operations-service__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__item-body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.page-ad-operations-service__item-text {
  color: #333;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
}
.page-ad-operations-service__list--1column .page-ad-operations-service__item-text {
  line-height: 1.71429;
  letter-spacing: 0.02625rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--1column .page-ad-operations-service__item-text {
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.page-ad-operations-service__list--2column .page-ad-operations-service__item-text {
  font-size: max(14px, 1rem);
  line-height: 1.375;
  letter-spacing: 0.03rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__list--2column .page-ad-operations-service__item-text {
    line-height: 1.5;
    letter-spacing: 0;
    font-size: 1.75rem;
  }
}

.page-ad-operations-service__item-button {
  padding-inline: 2.1875rem 1.4375rem;
  gap: 1.4375rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-service__item-button {
    padding-inline: 3.1875rem 2.0625rem;
    gap: 1.875rem;
    margin-left: -0.5625rem;
  }
}

.page-ad-operations-plan {
  padding-block: 6.5rem 3.75rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-plan {
    padding-block: 5.8125rem 4.625rem;
  }
}

.page-ad-operations-plan__inner {
  max-width: 79.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.8125rem;
}

@media not screen and (min-width: 768px) {
  .page-ad-operations-plan__title {
    padding-left: 0.25rem;
  }
}

.page-ad-operations-plan__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.0625rem;
  width: 100%;
}

.page-ad-operations-plan__notes {
  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.75rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-plan__notes {
    gap: 2.75rem;
  }
}

.page-ad-operations-plan__notes-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: 1.5625rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 466px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-plan__notes-list {
    width: 100%;
    padding-inline: 3.375rem 0.5625rem;
    gap: 2.1875rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-ad-operations-plan__notes-list {
    width: 52.0833333333vw;
  }
}

.page-ad-operations-plan__notes-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-plan__notes-item {
    gap: 2.4375rem;
  }
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-plan__notes-item:nth-child(2) .page-ad-operations-plan__notes-item-text {
    font-size: 1.5rem;
    line-height: 1.3571428571;
  }
}

.page-ad-operations-plan__notes-item-title {
  width: 182px;
  letter-spacing: 0;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-plan__notes-item-title {
    width: 14.875rem;
    padding-left: 0.875rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-ad-operations-plan__notes-item-title {
    width: 19.53125vw;
  }
}

.page-ad-operations-plan__notes-item-text {
  font-family: "Noto Sans", sans-serif;
  font-size: max(16px, 1.125rem);
  font-weight: 500;
  line-height: 1.3888888889;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-plan__notes-item-text {
    font-size: 1.75rem;
    line-height: 1.3571428571;
  }
}
.page-ad-operations-plan__notes-item-text small {
  font-size: 14px;
  line-height: 1.7857142857;
  margin-left: -0.1875rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-plan__notes-item-text small {
    font-size: 1.5rem;
    line-height: 1.5833333333;
    margin-left: -0.4375rem;
  }
}
.page-ad-operations-plan__notes-item-text strong {
  font-weight: 700;
  padding-right: 0.8125rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-plan__notes-item-text strong {
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 1.3571428571;
    padding-right: 1.25rem;
  }
}
.page-ad-operations-plan__notes-item-text span {
  font-size: max(18px, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-plan__notes-item-text span {
    font-size: 1.75rem;
    line-height: 1.3571428571;
    padding-left: 0.125rem;
  }
}

.page-ad-operations-plan__notes-remarks {
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  font-size: max(16px, 1.125rem);
  font-weight: 500;
  line-height: 1.3888888889;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-plan__notes-remarks {
    font-size: 1.75rem;
    line-height: 1.3571428571;
  }
}

.page-ad-operations-download__inner {
  max-width: 80rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-download__inner {
    padding-inline: 0;
  }
}

.page-ad-operations-download__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #000;
  color: #FFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 2.5625rem 1.875rem;
  padding-inline: 8.4375rem 8.5rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-download__content {
    padding-inline: 3rem;
    padding-block: 2.125rem 4.75rem;
  }
}

.page-ad-operations-download__text {
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  font-size: max(16px, 1.125rem);
  font-weight: 700;
  line-height: 1.3888888889;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-download__text {
    font-size: 2rem;
    line-height: 1.375;
  }
}

.page-ad-operations-download__form {
  margin-top: 1.25rem;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-download__form {
    margin-top: 2rem;
  }
}
.page-ad-operations-download__form .contact-form__items {
  gap: 0;
}
.page-ad-operations-download__form .contact-form__items .contact-form__item--mail .contact-form__item-head {
  gap: 0.6875rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-download__form .contact-form__items .contact-form__item--mail .contact-form__item-head {
    gap: 0.75rem;
  }
}
.page-ad-operations-download__form .contact-form__items .contact-form__privacy {
  margin-top: 2.9375rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-download__form .contact-form__items .contact-form__privacy {
    margin-top: 1.9375rem;
  }
}
.page-ad-operations-download__form .contact-form__items .wpcf7-list-item-label {
  padding-right: 0.0625rem;
}
.page-ad-operations-download__form .contact-form__items a {
  color: #FFF !important;
  text-decoration: underline;
  text-underline-offset: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .page-ad-operations-download__form .contact-form__items a:hover {
    opacity: 0.7;
  }
}
.page-ad-operations-download__form .contact-form__button {
  margin-top: 1.625rem;
  margin-left: 0;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-download__form .contact-form__button {
    margin-top: 2.3125rem;
  }
}
.page-ad-operations-download__form .contact-form-button {
  padding-inline: 3.3125rem 1.8125rem;
  gap: 1.5625rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-download__form .contact-form-button {
    padding-inline: 6.25rem 2.125rem;
    padding-block: 1.0625rem 1.25rem !important;
    gap: 3.4375rem;
    font-size: 1.444875rem;
    line-height: 1.2111774375;
    letter-spacing: 0.07225rem;
  }
}

.page-ad-operations-download__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5625rem;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-download__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
    padding-inline: 1.375rem;
  }
}
.page-ad-operations-download__items .contact-form__item {
  padding-right: 0;
}

.page-ad-operations-case {
  padding-block: 11rem 16.0625rem;
  overflow: hidden;
}
@media not screen and (min-width: 768px) {
  .page-ad-operations-case {
    padding-block: 7.25rem 7.25rem;
  }
}

.page-about-breadcrumb {
  margin-top: 1.0625rem;
}
@media not screen and (min-width: 768px) {
  .page-about-breadcrumb {
    display: none;
  }
}

.page-about-breadcrumb__inner {
  max-width: 80rem;
}

.page-about-existence {
  padding-block: 4.4375rem 8.8125rem;
}
@media not screen and (min-width: 768px) {
  .page-about-existence {
    padding-block: 4.125rem 4.9375rem;
  }
}

.page-about-existence__inner {
  max-width: calc(578px + 5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.125rem;
}
@media not screen and (min-width: 768px) {
  .page-about-existence__inner {
    max-width: 100%;
    padding-inline: 4.8125rem;
    gap: 2.4375rem;
  }
}

@media not screen and (min-width: 768px) {
  .page-about-existence__title {
    padding-left: 0.3125rem;
  }
}

@media not screen and (min-width: 768px) {
  .page-about-existence__content {
    width: 100%;
    padding-left: 0.0625rem;
  }
}

.page-about-existence__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.375rem;
}
@media not screen and (min-width: 768px) {
  .page-about-existence__lists {
    gap: 0.625rem;
  }
}

.page-about-existence__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media not screen and (min-width: 768px) {
  .page-about-existence__list {
    -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;
    position: relative;
  }
}

.page-about-existence__list-title {
  font-size: max(16px, 1.25rem);
  font-weight: 900;
  line-height: 0.7407407407;
  letter-spacing: 0.125rem;
  width: max(72px, 5.75rem);
}
@media not screen and (min-width: 768px) {
  .page-about-existence__list-title {
    font-size: 2rem;
    line-height: 1.375;
    letter-spacing: 0.2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.page-about-existence__list-border {
  width: 6.375rem;
  height: 2px;
  background-color: #000;
  margin-left: 0.75rem;
}
@media not screen and (min-width: 768px) {
  .page-about-existence__list-border {
    margin-left: 0;
    position: absolute;
    top: 1.4375rem;
  }
  .page-about-existence__list--1 .page-about-existence__list-border {
    left: 9.6875rem;
  }
  .page-about-existence__list--2 .page-about-existence__list-border {
    left: 8.0625rem;
  }
}

.page-about-existence__list-text {
  font-size: max(16px, 1.125rem);
  font-weight: 400;
  line-height: 1.38889;
  letter-spacing: 0.05625rem;
  margin-left: 0.75rem;
}
@media not screen and (min-width: 768px) {
  .page-about-existence__list-text {
    font-size: 1.75rem;
    line-height: 0.89286;
    letter-spacing: 0.0875rem;
  }
  .page-about-existence__list--1 .page-about-existence__list-text {
    margin-left: 11.5rem;
  }
  .page-about-existence__list--2 .page-about-existence__list-text {
    margin-left: 2.25rem;
    margin-top: 0.9375rem;
  }
}

.page-about-ceo {
  padding-block: 5.6875rem 6.9375rem;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo {
    padding-block: 4.1875rem 4.0625rem;
  }
}

.page-about-ceo__inner {
  max-width: 73.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo__inner {
    gap: 2.375rem;
  }
}

@media not screen and (min-width: 768px) {
  .page-about-ceo__title {
    padding-left: 0.125rem;
  }
}

.page-about-ceo__content {
  background-color: #FFF;
  padding-block: 6rem 3.125rem;
  padding-inline: 5.875rem 5.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo__content {
    padding-block: 2.4375rem 6rem;
    padding-inline: 2.25rem 2.1875rem;
  }
}

.page-about-ceo__message-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3125rem;
  padding-right: 0.8125rem;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo__message-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.3125rem;
    padding-right: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.page-about-ceo__pic {
  width: 14.5625rem;
  height: auto;
  aspect-ratio: 233/208;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo__pic {
    width: 18.9375rem;
    aspect-ratio: 303/256;
    margin-left: 0.875rem;
  }
}
.page-about-ceo__pic img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.page-about-ceo__message-text {
  line-height: 1.78571;
  letter-spacing: 0.7px;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo__message-text {
    letter-spacing: 0;
    line-height: 1.5;
  }
}
.page-about-ceo__message-text.page-about-ceo__message-text--1 {
  padding-top: 1.3125rem;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo__message-text.page-about-ceo__message-text--1 {
    padding-top: 0;
  }
}
.page-about-ceo__message-text.page-about-ceo__message-text--2 {
  padding-right: 0.8125rem;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo__message-text.page-about-ceo__message-text--2 {
    padding-right: 0;
  }
}

.page-about-ceo__message-bottom {
  margin-top: 2.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: 3.375rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo__message-bottom {
    margin-top: 4rem;
    gap: 3.1875rem;
  }
}

.page-about-ceo__name {
  font-size: max(14px, 1rem);
  line-height: 1.5625;
  letter-spacing: 0.05rem;
  padding-right: 0.5625rem;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo__name {
    font-size: 1.75rem;
    letter-spacing: 0;
    line-height: 1.5;
    padding-right: 0.1875rem;
  }
}

.page-about-ceo__content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 4.625rem;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo__content-bottom {
    margin-top: 3.3125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.3125rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.page-about-ceo__content-bottom-text {
  line-height: 1.78571;
  letter-spacing: 0.04375rem;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo__content-bottom-text {
    letter-spacing: 0;
    line-height: 1.5;
    text-align: right;
    color: #060606;
    white-space: nowrap;
  }
}

.page-about-ceo__content-bottom-button {
  padding-inline: 2.375rem 1.625rem;
  padding-block: 0.8125rem 0.8125rem !important;
  gap: 0.875rem;
  margin-top: 0.25rem;
}
@media not screen and (min-width: 768px) {
  .page-about-ceo__content-bottom-button {
    padding-block: 1.1875rem 1.25rem !important;
    padding-inline: 5.4375rem 2.125rem;
    gap: 2.6875rem;
    margin-top: 0;
    margin-right: 0.125rem;
  }
}

.page-about-service {
  padding-block: 4.3125rem 4.625rem;
  background-color: #000;
  color: #FFF;
}
@media not screen and (min-width: 768px) {
  .page-about-service {
    padding-block: 3.875rem 5.6875rem;
  }
}

.page-about-service__inner {
  max-width: 65.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media not screen and (min-width: 768px) {
  .page-about-service__inner {
    max-width: 100%;
    gap: 2.75rem;
  }
}

.page-about-service__title {
  color: #FFF;
}
@media not screen and (min-width: 768px) {
  .page-about-service__title {
    letter-spacing: 0;
  }
}

.page-about-service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 3.625rem;
  margin-left: -0.5rem;
}
@media not screen and (min-width: 768px) {
  .page-about-service__content {
    gap: 3.3125rem;
    margin-left: 0;
  }
}

.page-about-service__lead {
  font-size: max(16px, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.0625rem;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .page-about-service__lead {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0;
    padding-left: 1.6875rem;
  }
}

.page-about-service__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.5625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media not screen and (min-width: 768px) {
  .page-about-service__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.page-about-service__button {
  font-size: max(16px, 1.125rem);
  font-weight: 700;
  line-height: 0.8181818182;
  letter-spacing: 0.05625rem;
}
@media not screen and (min-width: 768px) {
  .page-about-service__button {
    font-size: 1.444875rem;
    line-height: 1.2111774375;
    letter-spacing: 0.07225rem;
  }
}
.page-about-service__button:nth-child(1) {
  padding-block: 0.8125rem 1.125rem !important;
  padding-inline: 2.6875rem 1.625rem;
  gap: 0.6875rem;
}
@media not screen and (min-width: 768px) {
  .page-about-service__button:nth-child(1) {
    padding-block: 1.1875rem 1.125rem !important;
    padding-inline: 3.625rem 2.6875rem;
    gap: 1.463125rem;
  }
}
.page-about-service__button:nth-child(2) {
  padding-block: 0.8125rem 1.125rem !important;
  padding-inline: 3.1875rem 1.5rem;
  gap: 1.375rem;
}
@media not screen and (min-width: 768px) {
  .page-about-service__button:nth-child(2) {
    padding-block: 1.25rem 1.0625rem !important;
    padding-inline: 4.625rem 2.6875rem;
    gap: 1.963125rem;
  }
}
.page-about-service__button svg {
  translate: 0 0.25rem;
}
@media not screen and (min-width: 768px) {
  .page-about-service__button svg {
    translate: 0 -0.125rem;
    width: 1.8965rem;
    height: clamp(5.779px, 172.4995882353px + -22.2294117647vw, 2px);
  }
}
@media (any-hover: hover) {
  .page-about-service__button:hover svg {
    translate: 20% 0.25rem;
  }
}

.page-about-value {
  padding-block: 9rem 6.1875rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value {
    padding-block: 4.875rem 5.75rem;
  }
}

.page-about-value__inner {
  max-width: 67.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.1875rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__inner {
    max-width: 100%;
    gap: 3.8125rem;
  }
}

.page-about-value__title {
  margin-left: -2.0625rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__title {
    margin-left: 0;
    letter-spacing: 0;
  }
}

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

.page-about-value__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.6875rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__catch {
    gap: 4.4375rem;
    width: 100%;
  }
}

.page-about-value__catch-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -2.9375rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__catch-title {
    margin-left: -3.9375rem;
  }
}

.page-about-value__catch-title-text-left {
  font-family: "Noto Sans", sans-serif;
  font-size: max(16px, 1.25rem);
  font-weight: 900;
  line-height: 0.7407407407;
  letter-spacing: 0.125rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__catch-title-text-left {
    font-size: 2.5rem;
    line-height: 1.35;
    letter-spacing: 0.25rem;
  }
}

.page-about-value__catch-title-border {
  width: 6.375rem;
  height: 2px;
  background-color: #000;
  margin-left: 2.3125rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__catch-title-border {
    margin-left: 1.3125rem;
  }
}

.page-about-value__catch-title-text-right {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.8571428571;
  letter-spacing: 0.6rem;
  margin-left: 2.125rem;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .page-about-value__catch-title-text-right {
    margin-left: 1.9375rem;
  }
}
.page-about-value__catch-title-text-right::before {
  content: "";
  position: absolute;
  background: url("../../assets/img/hexagon-black.svg") no-repeat center center/contain;
  width: 8.375rem;
  height: 7.1875rem;
  right: -2.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page-about-value__catch-text {
  font-family: "Noto Sans", sans-serif;
  font-size: max(16px, 1.25rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.125rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__catch-text {
    font-size: 2rem;
    line-height: 1.375;
    letter-spacing: 0.2rem;
    text-align: center;
    margin-left: 0.3125rem;
  }
}

.page-about-value__lists {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.625rem 1.6875rem;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .page-about-value__lists {
    margin-top: 6.25rem;
    grid-template-columns: 1fr;
    gap: 3.4375rem;
  }
}

.page-about-value__list {
  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: 1.375rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(1) {
    gap: 1.4375rem;
  }
}
.page-about-value__list:nth-child(1) .page-about-value__list-title::before {
  background: url("../../assets/img/hexagon-1.svg") no-repeat center center/contain;
  width: 1.75rem;
  height: 1.5rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(1) .page-about-value__list-title::before {
    width: 3.018rem;
    height: 2.586875rem;
  }
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(2) {
    gap: 2.3125rem;
  }
}
.page-about-value__list:nth-child(2) .page-about-value__list-title {
  letter-spacing: 0.15rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(2) .page-about-value__list-title {
    padding-left: 3.625rem;
    letter-spacing: 0.09rem;
  }
}
.page-about-value__list:nth-child(2) .page-about-value__list-title::before {
  background: url("../../assets/img/hexagon-2.svg") no-repeat center center/contain;
  width: 1.75rem;
  height: 1.5104375rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(2) .page-about-value__list-title::before {
    width: 3.018rem;
    height: 2.6048125rem;
  }
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(3) {
    gap: 1.36125rem;
    margin-top: -0.5rem;
  }
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(3) .page-about-value__list-title {
    padding-left: 4.3125rem;
    letter-spacing: 0.4850625rem;
    font-size: 3.2335625rem;
    line-height: 1.1790401454;
  }
}
.page-about-value__list:nth-child(3) .page-about-value__list-title::before {
  background: url("../../assets/img/hexagon-3.svg") no-repeat center center/contain;
  width: 1.766625rem;
  height: 1.54225rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(3) .page-about-value__list-title::before {
    width: 3.046625rem;
    height: 2.65975rem;
  }
}
.page-about-value__list:nth-child(3) .page-about-value__list-text {
  padding-left: 0.125rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(3) .page-about-value__list-text {
    padding-left: 0;
  }
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(4) {
    gap: 1.36125rem;
    margin-top: -0.375rem;
  }
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(4) .page-about-value__list-title {
    padding-left: 4.20375rem;
    font-size: 3.2335625rem;
    line-height: 1.1790401454;
    letter-spacing: 0.388rem;
  }
}
.page-about-value__list:nth-child(4) .page-about-value__list-title::before {
  background: url("../../assets/img/hexagon-4.svg") no-repeat center center/contain;
  width: 1.75rem;
  height: 1.5rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(4) .page-about-value__list-title::before {
    width: 3.018rem;
    height: 2.586875rem;
  }
}
.page-about-value__list:nth-child(5) {
  gap: 1.5625rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(5) {
    gap: 1.4375rem;
    margin-top: -0.5rem;
  }
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(5) .page-about-value__list-title {
    font-size: 3.2335625rem;
    line-height: 1.1790401454;
    letter-spacing: 0.6466875rem;
    padding-left: 4.1875rem;
  }
}
.page-about-value__list:nth-child(5) .page-about-value__list-title::before {
  background: url("../../assets/img/hexagon-5.svg") no-repeat center center/contain;
  width: 1.75rem;
  height: 1.522875rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(5) .page-about-value__list-title::before {
    width: 3.018rem;
    height: 2.6263125rem;
  }
}
.page-about-value__list:nth-child(6) {
  gap: 1.5625rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(6) {
    gap: 1.36125rem;
    margin-top: -0.3125rem;
  }
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(6) .page-about-value__list-title {
    font-size: 3.2335625rem;
    line-height: 1.1790401454;
    letter-spacing: 0.6466875rem;
    padding-left: 4.3125rem;
  }
}
.page-about-value__list:nth-child(6) .page-about-value__list-title::before {
  background: url("../../assets/img/hexagon-6.svg") no-repeat center center/contain;
  width: 1.83325rem;
  height: 1.527125rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(6) .page-about-value__list-title::before {
    width: 3.1615625rem;
    height: 2.6336875rem;
  }
}
.page-about-value__list:nth-child(6) .page-about-value__list-text {
  padding-right: 4.5rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list:nth-child(6) .page-about-value__list-text {
    padding-right: 0;
  }
}

.page-about-value__list-title {
  color: #858585;
  font-family: "Roboto", sans-serif;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 0.8571428571;
  letter-spacing: 0.375rem;
  padding-left: 2.4375rem;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list-title {
    font-size: 3rem;
    line-height: 0.8571428571;
    letter-spacing: 0.6rem;
    padding-left: 3.6875rem;
    white-space: nowrap;
  }
}
.page-about-value__list-title::first-letter {
  color: #000;
}
.page-about-value__list-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.page-about-value__list-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 0.7368421053;
  letter-spacing: 1.4px;
  text-align: right;
  padding-right: 0.625rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__list-text {
    font-size: 1.75rem;
    line-height: 1.3571428571;
    letter-spacing: 0.175rem;
    padding-right: 0;
  }
}

.page-about-value__button {
  margin-top: 5.125rem;
  padding-block: 0.9375rem 0.8125rem !important;
  padding-inline: 2.1875rem 2.8125rem;
  gap: 0.8125rem;
}
@media not screen and (min-width: 768px) {
  .page-about-value__button {
    margin-top: 3rem;
    padding-inline: 3.125rem 2.125rem;
    padding-block: 1.3125rem 1.125rem !important;
    gap: 0.963125rem;
  }
  .page-about-value__button svg {
    translate: 0 -0.125rem;
  }
}

.page-about-company {
  padding-block: 2.125rem 12.625rem;
}
@media not screen and (min-width: 768px) {
  .page-about-company {
    padding-block: 4.375rem 4.3125rem;
  }
}

.page-about-company__inner {
  max-width: 48.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.625rem;
}
@media not screen and (min-width: 768px) {
  .page-about-company__inner {
    max-width: 100%;
    gap: 3.8125rem;
    padding-inline: 1.1875rem 1.5rem;
  }
}

@media not screen and (min-width: 768px) {
  .page-about-company__title {
    padding-left: 0.5625rem;
  }
}

.page-about-company__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-about-company__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-inline: auto;
}
.page-about-company__table tbody tr:not(:last-child) {
  border-bottom: 2px solid #c4c4c4;
}
.page-about-company__table tbody tr th,
.page-about-company__table tbody tr td {
  vertical-align: middle;
}
.page-about-company__table tbody tr th {
  font-family: "Noto Sans", sans-serif;
  color: #333;
  text-align: center;
  font-size: max(14px, 1rem);
  font-weight: 700;
  line-height: 3.125;
  letter-spacing: 0.05rem;
  padding-inline: 3.3125rem;
  width: 174px;
}
@media not screen and (min-width: 768px) {
  .page-about-company__table tbody tr th {
    font-size: 2rem;
    line-height: 1.5625;
    letter-spacing: 0.1rem;
    width: 10.125rem;
    padding-inline: 0;
    vertical-align: top;
    text-align: left;
    padding-inline: 1.6875rem 0;
  }
}
.page-about-company__table tbody tr td {
  color: #000;
  text-align: left;
  letter-spacing: 0.04375rem;
  line-height: 1.78571;
  padding-inline: 3.375rem;
}
@media not screen and (min-width: 768px) {
  .page-about-company__table tbody tr td {
    line-height: 1.78571;
    letter-spacing: 0.0875rem;
    padding-inline: 2.375rem;
  }
}
.page-about-company__table tbody tr:nth-child(1) th {
  line-height: 3.57143;
  padding-block: 0 0.3125rem;
}
@media not screen and (min-width: 768px) {
  .page-about-company__table tbody tr:nth-child(1) th {
    line-height: 1.5625;
    padding-block: 0 1.8125rem;
  }
}
.page-about-company__table tbody tr:nth-child(1) td {
  line-height: 3.57143;
  padding-block: 0 0.6875rem;
}
@media not screen and (min-width: 768px) {
  .page-about-company__table tbody tr:nth-child(1) td {
    line-height: 1.5625;
    padding-block: 0 1.6875rem;
  }
}
.page-about-company__table tbody tr:nth-child(2) th {
  padding-block: 1.0625rem 0.6875rem;
}
@media not screen and (min-width: 768px) {
  .page-about-company__table tbody tr:nth-child(2) th {
    padding-block: 0.625rem 1.0625rem;
  }
}
.page-about-company__table tbody tr:nth-child(2) td {
  padding-block: 0.75rem 0.625rem;
  line-height: 1.78571;
  letter-spacing: 0.04375rem;
}
@media not screen and (min-width: 768px) {
  .page-about-company__table tbody tr:nth-child(2) td {
    padding-block: 0.625rem 1.0625rem;
    line-height: 1.42857;
    letter-spacing: 0.0875rem;
    padding-inline: 2.375rem 1.25rem;
  }
}
.page-about-company__table tbody tr:nth-child(3) th {
  padding-block: 0.8125rem 0.75rem;
}
@media not screen and (min-width: 768px) {
  .page-about-company__table tbody tr:nth-child(3) th {
    padding-block: 0.5625rem 0.9375rem;
  }
}
.page-about-company__table tbody tr:nth-child(3) td {
  padding-block: 1.625rem 1.5rem;
}
@media not screen and (min-width: 768px) {
  .page-about-company__table tbody tr:nth-child(3) td {
    padding-block: 0.5625rem 0.9375rem;
  }
}
.page-about-company__table tbody tr:nth-child(4) th,
.page-about-company__table tbody tr:nth-child(4) td {
  padding-block: 1rem 0;
}
@media not screen and (min-width: 768px) {
  .page-about-company__table tbody tr:nth-child(4) th,
  .page-about-company__table tbody tr:nth-child(4) td {
    padding-block: 0.875rem 0;
  }
}
@media not screen and (min-width: 768px) {
  .page-about-company__table tbody tr:nth-child(4) td {
    padding-block: 1.375rem 0;
    line-height: 1.14286;
    letter-spacing: 0.175rem;
  }
}

.page-contact-message {
  padding-block: 5.875rem 7.375rem;
}

.page-contact-message__inner {
  max-width: 67.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}

.page-contact-message__text {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.page-contact-message__text-lead {
  font-family: "Noto Sans", sans-serif;
  font-size: max(16px, 1.25rem);
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.125rem;
}

.page-contact-message__text-main {
  line-height: 1.78571;
  letter-spacing: 0.04375rem;
}
.page-contact-message__text-main span {
  font-weight: 700;
}

.page-contact-message__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.3125rem;
  padding-inline: 9.0625rem 12.4375rem;
}

.page-contact-message__link {
  font-size: max(16px, 1.25rem);
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.0625rem;
  position: relative;
  padding-bottom: 0.1875rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.page-contact-message__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  bottom: 0.4375rem;
  left: 0;
}
.page-contact-message__link::after {
  content: "";
  position: absolute;
  background: url("../../assets/img/link-polygon.svg") no-repeat center center/contain;
  width: 0.8125rem;
  height: 0.8125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-contact-message__link:nth-child(1) {
  padding-right: 0.6875rem;
}
.page-contact-message__link:nth-child(1)::after {
  right: -0.3125rem;
}
.page-contact-message__link:nth-child(2) {
  padding-right: 1.75rem;
}
.page-contact-message__link:nth-child(2)::after {
  right: 0.5rem;
}
@media (any-hover: hover) {
  .page-contact-message__link:hover {
    opacity: 0.7;
  }
}

.page-contact-reservation {
  padding-block: 0 4.375rem;
}

.page-contact-reservation__inner {
  max-width: 58.3125rem;
}

.page-contact-reservation__content {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4.375rem;
  margin-left: -4.625rem;
}

.page-contact-reservation__title {
  padding-inline: 2.4375rem 2.5rem;
}

.page-contact-reservation__time-rex {
  width: 82.8839390387%;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-contact-reservation__time-rex {
    width: 100%;
  }
}

.page-contact--recruit {
  padding-block: 5.625rem;
}

.page-contact--other {
  padding-block: 5.625rem;
}

.page-contact-form {
  padding-block: 0 5.625rem;
}

.page-contact-form__inner {
  max-width: 80rem;
}

.page-contact-form__content {
  padding-block: 4.5rem 3.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.625rem;
  background-color: #f8f8f8;
  padding-left: 6.3125rem;
}

.page-contact-form__title {
  padding-inline: 1.75rem;
}

.page-contact-form__contact-form {
  padding-inline: 6.1875rem 6.5rem;
  width: 100%;
  margin-inline: auto;
}

.contact-form__items {
  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: 1rem;
}

.contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-right: 6rem;
}
.contact-form__item.contact-form__item--radio {
  padding-right: 0;
  padding-left: 0.125rem;
}
.contact-form__item.contact-form__item--office {
  margin-top: 0.6875rem;
}

.contact-form__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media not screen and (min-width: 768px) {
  .contact-form__item-head {
    gap: 0.5625rem;
  }
}
.contact-form__item--radio .contact-form__item-head {
  gap: 0.75rem;
}
.contact-form__item--web .contact-form__item-head {
  gap: 0.625rem;
}
.contact-form__item--case .contact-form__item-head {
  gap: 1.8125rem;
}
.contact-form__item--message .contact-form__item-head {
  gap: 1.4375rem;
}

.contact-form__item-label {
  font-size: max(16px, 1.125rem);
  font-weight: 700;
  line-height: 2.77778;
  letter-spacing: 0.05625rem;
}
@media not screen and (min-width: 768px) {
  .contact-form__item-label {
    font-size: 1.75rem;
    line-height: 2.59217;
    letter-spacing: 0.0875rem;
  }
}

.contact-form__item-tag {
  color: #FFF;
  text-align: center;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.0875rem;
  background-color: #d40202;
  height: 20px;
  padding-inline: 0.3125rem;
  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;
}
@media not screen and (min-width: 768px) {
  .contact-form__item-tag {
    font-size: 1.2701875rem;
    letter-spacing: 0.127rem;
    height: 1.875rem;
    padding-inline: 0.45375rem 0.488125rem;
  }
}
.contact-form__item-tag.contact-form__item-tag--any {
  background-color: #00d752;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.contact-form__item-input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 0;
}
@media not screen and (min-width: 768px) {
  .contact-form__item-input {
    margin-top: -0.25rem;
  }
}

input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
input[type=radio]:focus + .wpcf7-list-item-label::before {
  outline: none;
  border-color: #585858;
  border-width: 2px;
}
@media (any-hover: hover) {
  input[type=radio]:hover + .wpcf7-list-item-label::before {
    border-color: #585858;
    border-width: 2px;
  }
}

.contact-form__item-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -0.75rem;
  padding-left: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-form__item-radio {
    gap: 0 1.875rem;
  }
}
.contact-form__item-radio .wpcf7-list-item:nth-child(2) {
  margin-left: 2.75rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-form__item-radio .wpcf7-list-item:nth-child(2) {
    margin-left: 0;
  }
}
.contact-form__item-radio .wpcf7-list-item:nth-child(3) {
  margin-left: clamp(0px, -86.4457831325px + 8.4337349398vw, 35px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-form__item-radio .wpcf7-list-item:nth-child(3) {
    margin-left: 0;
  }
}
.contact-form__item-radio .wpcf7-list-item-label {
  font-weight: 500;
  line-height: 3.57143;
  letter-spacing: 0.7px;
  position: relative;
  padding-left: 29px;
}
.contact-form__item-radio .wpcf7-list-item-label::before, .contact-form__item-radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.contact-form__item-radio .wpcf7-list-item-label::before {
  width: 20px;
  height: 20px;
  left: 0;
  border: 1px solid #000;
  background-color: #FFF;
  -webkit-transition: border-color 0.3s, border-width 0.3s;
  transition: border-color 0.3s, border-width 0.3s;
}
.contact-form__item-radio .wpcf7-list-item-label::after {
  width: 14px;
  height: 14px;
  background-color: #000;
  left: 3px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.contact-form__item-text,
.contact-form__item-select,
.contact-form__item-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #000;
  background-color: #FFF;
  color: #333;
  font-size: 12px;
  font-weight: 400;
  line-height: 4.16667;
  letter-spacing: 0.0375rem;
  padding-inline: 1.1875rem;
  margin-top: -0.4375rem;
  -webkit-transition: border-color 0.3s, border-width 0.3s;
  transition: border-color 0.3s, border-width 0.3s;
}
@media not screen and (min-width: 768px) {
  .contact-form__item-text,
  .contact-form__item-select,
  .contact-form__item-textarea {
    line-height: 4.16667;
    letter-spacing: 0.0544375rem;
    font-size: 1.0886875rem;
    padding-inline: 1.8125rem;
    border-radius: 0.90725rem;
    border: 0.09075rem solid #000;
  }
}
.contact-form__item-text::-webkit-input-placeholder, .contact-form__item-select::-webkit-input-placeholder, .contact-form__item-textarea::-webkit-input-placeholder {
  color: #585858;
}
.contact-form__item-text::-moz-placeholder, .contact-form__item-select::-moz-placeholder, .contact-form__item-textarea::-moz-placeholder {
  color: #585858;
}
.contact-form__item-text:-ms-input-placeholder, .contact-form__item-select:-ms-input-placeholder, .contact-form__item-textarea:-ms-input-placeholder {
  color: #585858;
}
.contact-form__item-text::-ms-input-placeholder, .contact-form__item-select::-ms-input-placeholder, .contact-form__item-textarea::-ms-input-placeholder {
  color: #585858;
}
.contact-form__item-text::placeholder,
.contact-form__item-select::placeholder,
.contact-form__item-textarea::placeholder {
  color: #585858;
}
.contact-form__item-text:focus,
.contact-form__item-select:focus,
.contact-form__item-textarea:focus {
  outline: none;
  border-color: #585858;
  border-width: 2px;
}
@media (any-hover: hover) {
  .contact-form__item-text:hover,
  .contact-form__item-select:hover,
  .contact-form__item-textarea:hover {
    border-color: #585858;
    border-width: 2px;
  }
}

.contact-form__item-text {
  height: 50px;
}
@media not screen and (min-width: 768px) {
  .contact-form__item-text {
    height: 4.5rem;
  }
}

.contact-form__item-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../../assets/img/link-polygon.svg") no-repeat center right 16px/15px 15px;
  background-color: #FFF;
  height: 50px;
  padding-block: 0;
}
.contact-form__item-select.is-empty {
  color: #585858;
}
.contact-form__item-select:not(.is-empty) {
  color: #333;
}

.contact-form__item-textarea {
  padding-block: 1.0625rem;
  line-height: 2.08333;
  height: 213px;
  resize: vertical;
}

.contact-form__privacy {
  margin-top: 1.125rem;
  text-align: center;
}
.contact-form__privacy .wpcf7-list-item-label {
  padding-left: 23px;
  line-height: 1.78571;
  letter-spacing: 0.04375rem;
  position: relative;
  padding-right: 6.1875rem;
}
@media not screen and (min-width: 768px) {
  .contact-form__privacy .wpcf7-list-item-label {
    font-size: 1.5rem;
    line-height: 1.04167;
    letter-spacing: 0.075rem;
    padding-left: 1.4375rem;
  }
}
.contact-form__privacy .wpcf7-list-item-label a {
  color: #000dff;
  text-decoration: underline;
  text-decoration-color: inherit;
  text-underline-offset: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .contact-form__privacy .wpcf7-list-item-label a:hover {
    opacity: 0.7;
  }
}
.contact-form__privacy .wpcf7-list-item-label::before, .contact-form__privacy .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-form__privacy .wpcf7-list-item-label::before {
  width: 15px;
  height: 15px;
  left: 0;
  border: 1px solid #000;
  background-color: #FFF;
  -webkit-transition: border-color 0.3s, border-width 0.3s;
  transition: border-color 0.3s, border-width 0.3s;
}
@media not screen and (min-width: 768px) {
  .contact-form__privacy .wpcf7-list-item-label::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.contact-form__privacy .wpcf7-list-item-label::after {
  width: 14px;
  height: 14px;
  left: 1px;
  background: url("../../assets/img/check-privacy.svg") no-repeat center center/contain;
  opacity: 0;
}
@media not screen and (min-width: 768px) {
  .contact-form__privacy .wpcf7-list-item-label::after {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.contact-form__privacy-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.contact-form__privacy-input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.contact-form__privacy-input:focus + .wpcf7-list-item-label::before {
  border-color: #585858;
  border-width: 2px;
}
@media (any-hover: hover) {
  .contact-form__privacy-input:hover + .wpcf7-list-item-label::before {
    border-color: #585858;
    border-width: 2px;
  }
}

.contact-form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.0625rem;
  margin-left: -6.125rem;
}

.contact-form-button {
  padding-block: 0.5625rem;
  font-size: max(16px, 1.125rem);
  font-weight: 700;
  line-height: 1.2222222222;
  letter-spacing: 0.1125rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #FFF;
  padding-inline: 3.375rem 1.75rem;
  padding-block: 0.75rem 0.6875rem !important;
  gap: 1.4375rem;
}

.wpcf7-submit {
  display: none;
}

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

.wpcf7-spinner {
  position: absolute;
}

.cf7-redirect-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 1.375rem;
  margin-top: 2.75rem;
  -webkit-transition: display 0.4s ease-in-out;
  transition: display 0.4s ease-in-out;
}

.cf7-redirect-banner__link {
  padding-block: 0.75rem 0.6875rem !important;
}
.is-recruit .cf7-redirect-banner__link {
  padding-inline: 3.375rem 2.1875rem;
  gap: 0.6875rem;
}
.is-other .cf7-redirect-banner__link {
  padding-inline: 4.3125rem 2.0625rem;
  gap: 2.1875rem;
}
@media (any-hover: hover) {
  .cf7-redirect-banner__link:hover .cf7-redirect-banner__text {
    color: #000;
  }
  .cf7-redirect-banner__link:hover svg {
    translate: 20% 0;
  }
}

.cf7-redirect-banner__text {
  font-size: max(16px, 1.125rem);
  font-weight: 700;
  line-height: 1.2222222222;
  letter-spacing: 0.1125rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #FFF;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.cf7-redirect-banner__text svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.js-common-fields {
  -webkit-transition: display 0.4s ease-in-out;
  transition: display 0.4s ease-in-out;
}

.page-thanks-message {
  padding-block: 5.875rem 4.9375rem;
}

.page-thanks-message__inner {
  max-width: 67.5rem;
}

.page-thanks-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.page-thanks-message__lead {
  font-family: "Noto Sans", sans-serif;
  font-size: max(18px, 1.25rem);
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.125rem;
}

.page-thanks-message__text {
  line-height: 1.78571;
  letter-spacing: 0.04375rem;
}
.page-thanks-message__text + .page-thanks-message__text {
  margin-top: 0.25rem;
}

.page-thanks-links {
  padding-block: 5.25rem 5.25rem;
}

.page-thanks-links__inner {
  max-width: 58.625rem;
}

.page-thanks-links__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.3125rem;
  text-align: center;
}

.page-thanks-links__text {
  font-family: "Noto Sans", sans-serif;
  font-size: max(18px, 1.25rem);
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.125rem;
}

.page-thanks-links__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 3.75rem;
  width: 77.3892773893%;
  margin-left: 1.6875rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-thanks-links__buttons {
    width: 65.625vw;
  }
}

.page-thanks-links__button:nth-child(1) {
  padding-inline: 2rem 1.75rem;
  gap: 0.9375rem;
  width: clamp(220px, 149.1428571429px + 9.2261904762vw, 282px);
}
.page-thanks-links__button:nth-child(2) {
  padding-inline: 2.4375rem 1.9375rem;
  gap: 1.5rem;
  width: clamp(245px, 161.5714285714px + 10.8630952381vw, 318px);
}
.page-thanks-links__button:nth-child(3) {
  padding-inline: 2rem 1.75rem;
  gap: 3rem;
  width: clamp(220px, 149.1428571429px + 9.2261904762vw, 282px);
}