@charset "UTF-8";
* {
  -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,
aside,
figure,
figcaption {
  display: block;
}

a {
  text-decoration: none;
}

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

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media screen and (max-width: 1439px) and (min-width: 769px) {
  html {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #4d4d4d;
}

body.is-scroll {
  overflow: hidden;
}

a {
  color: #4d4d4d;
}

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

img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

button {
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
}

.header__block {
  height: 7.1875rem;
  width: 100%;
  padding: 0 1.75rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: opacity, -webkit-transform 0.3s ease;
  transition: opacity, -webkit-transform 0.3s ease;
  transition: opacity, transform 0.3s ease;
  transition: opacity, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__block {
    height: 65px;
  }
}

.header.js-scroll {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__logo a {
  display: block;
  width: 12rem;
}
@media screen and (max-width: 768px) {
  .header__logo a {
    width: 7.375rem;
    max-width: 192px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-nav__item a {
  display: grid;
  place-content: center;
  height: 7.1875rem;
  padding: 0 1.125rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.76;
  text-transform: uppercase;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media (any-hover: hover) {
  .header-nav__item a:hover {
    background: -webkit-gradient(linear, left top, right top, from(#ff58b6), color-stop(#df36e6), to(#6590ef));
    background: linear-gradient(90deg, #ff58b6, #df36e6, #6590ef);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.header-nav-link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.header-nav-link__item {
  width: 11.875rem;
  height: 2.75rem;
}

.drawer__icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 102;
    top: 24px;
    right: 20px;
    width: 24px;
    height: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #4d4d4d;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.drawer {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer {
    display: block;
    position: fixed;
    z-index: 101;
    top: 65px;
    right: 0;
    width: 86%;
    max-width: 324px;
    height: calc(100svh - 65px);
    background: #f7f7f7;
    overflow-y: scroll;
  }
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px 15px 32px;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer__item a {
  padding: 19px 0 9px;
  display: grid;
  grid-template-columns: 44% 56%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0.75px solid #4d4d4d;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
}

.drawer__item a .-eng {
  padding-left: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

.drawer__item a .-ja {
  padding-left: 6px;
  font-weight: normal;
  font-size: 12px;
}

.drawer__item a .bold {
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.drawer__btn {
  display: inline-block;
  padding: 6px 30px;
  background: #fff;
  border-radius: 100vmax;
  color: #001A75;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.drawer__icon--bar {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header-drawer-link__list {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

.header-drawer-link__item a {
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .drawer {
    translate: 101%;
    -webkit-transition: translate 0.5s ease;
    transition: translate 0.5s ease;
  }
  .drawer.js-show {
    translate: 0;
  }
}

.footer__block {
  padding: 0 1.6875rem 5rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .footer__block {
    padding: 0 30px 46px;
  }
}

.footer__logo a {
  display: block;
  width: 12rem;
}
@media screen and (max-width: 768px) {
  .footer__logo a {
    width: 128px;
    margin-inline: auto;
  }
}

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

.footer-nav__list {
  margin-top: 1.875rem;
  border-bottom: 0.75px solid #4d4d4d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-nav__item a {
  display: grid;
  place-content: center;
  padding: 0.75rem 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 1.7575757576;
  text-transform: uppercase;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  overflow: hidden;
  position: relative;
}

@media (any-hover: hover) {
  .footer-nav__item a:hover {
    background: -webkit-gradient(linear, left top, right top, from(#ff58b6), color-stop(#df36e6), to(#6590ef));
    background: linear-gradient(90deg, #ff58b6, #df36e6, #6590ef);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.footer__legal-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__legal-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__legal-item a {
  display: grid;
  place-content: center;
  padding: 1rem 0.9375rem;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .footer__legal-item a {
    margin-top: 10px;
    padding: 0 5px;
    font-size: 11px;
    line-height: 1.8181818182;
  }
}

@media (any-hover: hover) {
  .footer__legal-item a:hover {
    color: #000;
  }
}
.footer__small {
  padding-top: 1.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7272727273;
}
@media screen and (max-width: 768px) {
  .footer__small {
    padding-top: 0;
    margin-top: -18px;
    font-size: 10px;
    text-align: center;
  }
}

.top-fv__block {
  max-width: 1440px;
  margin-inline: auto;
  height: calc(100vh - 3.75rem);
  z-index: 2;
  min-height: calc(100vh - 3.75rem);
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .top-fv__block {
    height: 60svh;
    min-height: auto;
  }
}

.top-fv__content {
  padding: 8.125vw 0 0 6.5277777778vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-fv__content {
    padding: 1.0625rem 0 0 2rem;
  }
}

.top-fv__title {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 4.8125rem;
  font-weight: 700;
  line-height: 1.3980582524;
}
@media screen and (max-width: 768px) {
  .top-fv__title {
    font-size: 43px;
    line-height: 1.4117647059;
    text-shadow: 1.5px 1.5px 2px rgba(0, 0, 0, 0.5);
  }
}

.top-fv__text {
  margin-top: 2rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .top-fv__text {
    margin-top: 12px;
    font-size: 17px;
    text-shadow: 1.5px 1.5px 2px rgba(0, 0, 0, 0.5);
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: #6590ef;
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  overflow: hidden;
}

.loading__video {
  width: 78%;
  max-width: 1123px;
  padding-top: 7.1875rem;
  position: absolute;
  top: 0;
  left: calc(50% - 25.1875rem);
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .loading__video {
    margin-left: -20px;
    padding-top: 65px;
    width: 100%;
    left: 50%;
    top: 65px;
  }
}

@media screen and (max-width: 768px) {
  .fixed-movie__video.--loading {
    width: 110%;
    max-width: 550px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.loading.is-hide {
  opacity: 0;
  pointer-events: none;
}

.loading__content {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 16.1111111111vw 0 0 6.5277777778vw;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .loading__content {
    padding: calc(65px + 1.0625rem) 0 0 2rem;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 1441px) {
  .loading__content {
    padding: calc(8.125vw + 115px) 0 0 6.5277777778vw;
  }
}

.loading__title {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 4.8125rem;
  font-weight: 700;
  line-height: 1.3980582524;
  opacity: 0;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
  -webkit-animation: slideInFade 0.3s ease-out forwards;
          animation: slideInFade 0.3s ease-out forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@media screen and (max-width: 768px) {
  .loading__title {
    font-size: 43px;
    line-height: 1.4117647059;
    text-shadow: 1.5px 1.5px 2px rgba(0, 0, 0, 0.5);
  }
}

@-webkit-keyframes slideInFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInFade {
  from {
    opacity: 0;
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.loading__text {
  margin-top: 2rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75;
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-animation: slideInFade 0.3s ease-out forwards;
          animation: slideInFade 0.3s ease-out forwards;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
@media screen and (max-width: 768px) {
  .loading__text {
    margin-top: 12px;
    font-size: 17px;
    text-shadow: 1.5px 1.5px 2px rgba(0, 0, 0, 0.5);
  }
}

.bg {
  position: relative;
  padding-bottom: 2.25rem;
}
@media screen and (max-width: 768px) {
  .bg {
    padding: 0;
  }
}

.bg::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#6590ef), to(#1ffcd6));
  background: linear-gradient(to bottom, #6590ef 0%, #1ffcd6 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.fixed-movie {
  position: fixed;
  top: 7.1875rem;
  left: calc(50% - 25.1875rem);
  z-index: -9;
  width: 78%;
  max-width: 1123px;
  height: calc(100% - 7.1875rem);
  overflow: hidden;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .fixed-movie {
    width: 110%;
    max-width: 550px;
    height: calc(100% - 65px);
    right: auto;
    left: calc(50% - 20px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 137px;
  }
}

.fixed-movie__video {
  width: 100%;
  aspect-ratio: 1450/844;
  -o-object-fit: cover;
     object-fit: cover;
}

.sp-cta {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
}

.sp-cta__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sp-cta__item {
  width: 100%;
}

.sp-cta__item .sp-btn {
  font-size: 14px;
  gap: 4px;
}
.sp-cta__item .sp-btn .download {
  width: 16px;
}
.sp-cta__item .sp-btn .mail {
  width: 18px;
}

.top-about__block {
  padding: 3.75rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-about__block {
    padding: 60px 0 40px;
  }
}

.top-about__contents {
  background: rgba(255, 255, 255, 0.7);
  padding: 3.75rem 2.3125rem 3.9375rem 4.75rem;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-about__contents {
    padding: 34px 20px 20px;
    border-radius: 30px;
  }
}

.top-about__text-area {
  width: 21.4375rem;
}
@media screen and (max-width: 768px) {
  .top-about__text-area {
    width: 100%;
    margin-inline: auto;
  }
}

.top-about__title {
  color: #6590ef;
  font-family: "Zen Tokyo Zoo", system-ui;
  font-size: 4.4375rem;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .top-about__title {
    font-size: 38px;
    text-align: center;
  }
}

.top-about__heading {
  margin-top: 2.1875rem;
  font-size: 1.875rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-about__heading {
    margin-top: 17px;
    font-size: 20px;
    text-align: center;
  }
}

.top-about__heading .bold {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.top-about__text {
  margin-top: 2.125rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7777777778;
}
@media screen and (max-width: 768px) {
  .top-about__text {
    margin: 13px auto 0;
    font-size: 16px;
    width: 13.125rem;
    max-width: 300px;
  }
}

.top-about__img-area {
  display: block;
  width: 53.125rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: -8.5rem;
  right: -2.25rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-about__img-area {
    position: static;
    width: 88%;
    max-width: 700px;
    aspect-ratio: auto;
    margin: 0 auto 0;
  }
}
@media screen and (max-width: 499px) {
  .top-about__img-area {
    margin: 0 auto 0;
  }
}

.top-about__movie {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-service__block {
  padding: 3.75rem 0 7.5rem;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .top-service__block {
    padding: 32px 0 40px;
  }
}

.top-service__list {
  margin-top: 3.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.8125rem;
}
@media screen and (max-width: 768px) {
  .top-service__list {
    margin-top: 24px;
    gap: 30px;
  }
}

.top-service__item {
  background: rgba(255, 255, 255, 0.7);
  padding: 6.25rem 3.75rem 3.75rem;
  border-radius: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
  position: relative;
  opacity: 0;
  -webkit-transform: translateX(-120px);
          transform: translateX(-120px);
}
@media screen and (max-width: 768px) {
  .top-service__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 40px 20px 20px;
    border-radius: 30px;
    gap: 6px;
  }
}

.top-service__item:nth-child(even) {
  -webkit-transform: translateX(120px);
          transform: translateX(120px);
}

.top-service-item__text-area {
  width: 28.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .top-service-item__text-area {
    width: 100%;
  }
}

.top-service-item__meta {
  width: 16.0625rem;
  position: absolute;
  top: 1.375rem;
  left: -4.6875rem;
  background: #6590ef;
  padding: 0.4375rem 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-service-item__meta {
    width: 110px;
    top: 16px;
    left: -12px;
    font-size: 10px;
    padding: 4px 0;
  }
}

.top-service-item__meta::after {
  content: "";
  background: rgba(101, 144, 239, 0.5);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0.875rem;
  left: 0.75rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-service-item__meta::after {
    top: 6px;
    left: 5px;
  }
}

.top-service-item__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .top-service-item__title {
    display: none;
  }
}

.top-service-item__title .bold {
  font-family: "Montserrat", sans-serif;
}

.top-service-item__text {
  margin-top: 2.0625rem;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .top-service-item__text {
    margin-top: 15px;
    font-size: 14px;
  }
}

.top-service-item__btn {
  width: 16.0625rem;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 768px) {
  .top-service-item__btn {
    width: 9.8125rem;
    max-width: 200px;
    margin: 12px auto 0;
  }
}

.top-service-item__img-area {
  width: 36.875rem;
  aspect-ratio: 590/420;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-service-item__img-area {
    width: 100%;
    aspect-ratio: auto;
  }
}

@media screen and (max-width: 768px) {
  .top-service-item__img-box {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
}

.top-service-item__img {
  display: block;
  width: 28.75rem;
  aspect-ratio: 4/3;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 768px) {
  .top-service-item__img {
    width: 13.125rem;
    max-width: 280px;
  }
}

.top-service-item__sp-img {
  display: block;
  width: 11.25rem;
  aspect-ratio: 1/2;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .top-service-item__sp-img {
    position: static;
    width: 4.6875rem;
    max-width: 120px;
  }
}

.top-service-item__title--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-service-item__title--sp {
    display: block;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
  }
}

.top-service-item__title--sp .bold {
  font-family: "Montserrat", sans-serif;
}

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

.case__block {
  padding-top: 3.75rem;
  padding-bottom: 6.75rem;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .case__block {
    padding-top: 1.875rem;
    padding-bottom: 2.1875rem;
  }
}

.top-case__list {
  margin-top: 3.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7.8125rem;
}
@media screen and (max-width: 768px) {
  .top-case__list {
    margin-top: 1.3125rem;
    gap: 30px;
  }
}

.top-case__item {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.875rem 3.75rem 3.75rem;
  border-radius: 60px;
  position: relative;
  opacity: 0;
  -webkit-transform: translateX(-120px);
          transform: translateX(-120px);
}
@media screen and (max-width: 768px) {
  .top-case__item {
    padding: 40px 20px 20px;
    border-radius: 30px;
  }
}

.top-case__item:nth-child(even) {
  -webkit-transform: translateX(120px);
          transform: translateX(120px);
}

.top-case-item__contents {
  margin-top: 1rem;
  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;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-case-item__contents {
    margin-top: 6px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 6px;
  }
}

.top-case-item__text-area {
  width: 28.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .top-case-item__text-area {
    width: 100%;
  }
}

.top-case-item__meta {
  width: 16.0625rem;
  position: absolute;
  top: 1.375rem;
  right: -3.1875rem;
  background: #6590ef;
  padding: 0.4375rem 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-case-item__meta {
    width: 110px;
    top: 16px;
    left: -12px;
    font-size: 10px;
    padding: 4px 0;
  }
}

.top-case-item__meta::after {
  content: "";
  background: rgba(101, 144, 239, 0.5);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0.875rem;
  left: 0.75rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-case-item__meta::after {
    top: 6px;
    left: 5px;
  }
}

.top-case-item__top {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.71875;
}
@media screen and (max-width: 768px) {
  .top-case-item__top {
    font-size: 14px;
    text-align: center;
    font-weight: 500;
  }
}

.top-case-item__title {
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.1956521739;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-case-item__title {
    display: none;
  }
}

.top-case-item__title .bold {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.top-case-item__title .small {
  display: block;
  font-size: 1.5625rem;
}

.top-case-item__text {
  margin-top: 2.0625rem;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .top-case-item__text {
    margin-top: 0;
    font-size: 14px;
  }
}

.top-case-item__btn {
  width: 16.0625rem;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 768px) {
  .top-case-item__btn {
    width: 157px;
    margin: 10px auto 0;
  }
}

.top-case-item__img-area {
  width: 35rem;
  aspect-ratio: 739/522;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-case-item__img-area {
    width: 100%;
    aspect-ratio: auto;
  }
}

@media screen and (max-width: 768px) {
  .top-case-item__img-box {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
}

.top-case-item__img {
  display: block;
  width: 26.875rem;
  aspect-ratio: 4/3;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 768px) {
  .top-case-item__img {
    width: 13.125rem;
    max-width: 280px;
  }
}

.top-case-item__sp-img {
  display: block;
  width: 10rem;
  aspect-ratio: 1/2;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .top-case-item__sp-img {
    position: static;
    width: 4.6875rem;
    max-width: 120px;
  }
}

.top-case-item__title--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-case-item__title--sp {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
  }
}

.top-case-item__title--sp .bold {
  font-family: "Montserrat", sans-serif;
}

.top-case-item__title--sp .small {
  display: block;
  font-size: 16px;
}

.top-case__item:nth-child(even) {
  opacity: 0;
}

.top-case__item:nth-child(even) .top-case-item__contents {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .top-case__item:nth-child(even) .top-case-item__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.top-news__block {
  background: #fff;
  padding: 3.8125rem 0 7rem;
}
@media screen and (max-width: 768px) {
  .top-news__block {
    padding: 1.875rem 0 2.5rem;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .top-news__block .inner {
    padding: 0 20px;
  }
}

.section-title.top-news__title {
  color: #6590ef;
}

.section-title.top-news__title span {
  color: #6590ef;
}

.top-news-tabs__content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  translate: 0 20px;
  -webkit-transition: opacity 0.3s ease, translate 0.3s ease;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.top-news-tabs__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 30.5rem;
  translate: 0;
}

.top-news-tabs__content .none {
  margin-top: 3.75rem;
  font-size: 1.375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-news-tabs__content .none {
    margin-top: 40px;
    font-size: 14px;
  }
}

.top-news__meta-list {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-news__meta-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 16px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
}

.top-news__meta-item {
  width: 10rem;
  height: 2.125rem;
  color: #fff;
  font-size: 1.3125rem;
  font-weight: 700;
  display: grid;
  place-content: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top-news__meta-item {
    width: 120px;
    height: 30px;
    font-size: 12px;
    font-weight: 600;
  }
}
.top-news__meta-item[aria-selected=true] {
  opacity: 1.2;
  color: #fff;
  pointer-events: none;
}
.top-news__meta-item[aria-selected=false] {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .top-news__meta-item[aria-selected=false]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

@media (any-hover: hover) {
  .top-news__meta-item:hover {
    opacity: 0.7;
  }
}
.top-news__meta-item:nth-child(1) {
  background: #4d4d4d;
}

.top-news__meta-item:nth-child(2) {
  background: #ea613b;
}

.top-news__meta-item:nth-child(3) {
  background: #6590ef;
}

.top-news__meta-item:nth-child(4) {
  background: #df36e6;
}

.top-news__list {
  margin-top: 1.25rem;
  padding: 0 3.1875rem;
  min-height: 24.875rem;
}
@media screen and (max-width: 768px) {
  .top-news__list {
    margin-top: 16px;
    padding: 0;
  }
}

.top-news__item a {
  padding: 2.5rem 3.75rem 2.5rem 1.6875rem;
  display: grid;
  grid-template-columns: 18% 17% 1fr;
  border-bottom: 1px solid #4d4d4d;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top-news__item a {
    padding: 13px 4px 6px;
    grid-template-columns: 70px 1fr;
    grid-template-rows: 1fr 1fr;
    -webkit-column-gap: 22px;
       -moz-column-gap: 22px;
            column-gap: 22px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (any-hover: hover) {
  .top-news__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .top-news__item:last-child a {
    border-bottom: none;
  }
}

.top-news-item__time {
  font-family: "Montserrat", sans-serif;
  font-size: 1.375rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-news-item__time {
    grid-column: 1/2;
    grid-row: 1/2;
    font-size: 11px;
    text-align: center;
  }
}

.top-news-item__cat {
  width: 7.1875rem;
  height: 1.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 768px) {
  .top-news-item__cat {
    width: 60px;
    height: 14px;
    margin-inline: auto;
    grid-column: 1/2;
    grid-row: 2/3;
    font-size: 8px;
  }
}

.top-news-item__cat.-orange {
  background: #ea613b;
}

.top-news-item__cat.-sky-blue {
  background: #6590ef;
}

.top-news-item__cat.-purple {
  background: #df36e6;
}

.top-news-item__title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 768px) {
  .top-news-item__title {
    grid-column: 2/3;
    grid-row: 1/3;
    font-size: 14px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
  }
}

.top-news-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.875rem;
  padding-right: 3.1875rem;
}
@media screen and (max-width: 768px) {
  .top-news-pagination {
    padding-right: 0;
    margin-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-news-pagination__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.top-news-pagination__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #6590ef;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50%;
  background-color: rgba(101, 144, 239, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top-news-pagination__item {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
.top-news-pagination__item:hover {
  background-color: #6590ef;
  color: #fff;
}
.top-news-pagination__item.current {
  background-color: #6590ef;
  color: #fff;
  cursor: default;
}

.top-news-pagination__dots {
  color: #4d4d4d;
  font-size: 1rem;
  padding: 0 0.25rem;
}
@media screen and (max-width: 768px) {
  .top-news-pagination__dots {
    font-size: 14px;
  }
}

.top-news-pagination__prev {
  color: #6590ef;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .top-news-pagination__prev {
    font-size: 14px;
    margin-right: 12px;
  }
}
.top-news-pagination__prev:hover {
  opacity: 0.7;
}

.top-news-pagination__next {
  color: #6590ef;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .top-news-pagination__next {
    font-size: 14px;
    margin-left: 12px;
  }
}
.top-news-pagination__next:hover {
  opacity: 0.7;
}

.top-project__block {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-project__block {
    margin-top: 1.75rem;
    padding: 40px 0 40px;
  }
}

.section-title.top-project__title {
  color: #4d4d4d;
}

.section-title.top-project__title span {
  color: #4d4d4d;
}

.top-project__contents {
  margin-top: 2rem;
  background: #fff;
  border-radius: 30px;
  padding: 4.5rem 1.25rem 4.125rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-project__contents {
    max-width: 500px;
    margin: 1.5rem auto 0;
    padding: 34px 10px 19px;
  }
}

.top-project__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-project__list {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 20px;
  }
}

.top-project__item {
  width: 18.125rem;
  font-size: 2rem;
  font-weight: 500;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .top-project__item {
    width: 150px;
    font-size: 16px;
  }
}

.top-media__block {
  padding: 5.0625rem 0 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-media__block {
    padding: 2.6875rem 0 2.5rem;
  }
}

.section-title.top-media__title {
  color: #4d4d4d;
}

.section-title.top-media__title span {
  color: #4d4d4d;
}

.top-media__contents {
  margin-top: 2rem;
  background: #fff;
  border-radius: 30px;
  padding: 4.5rem 1.25rem 4.125rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-media__contents {
    margin-top: 24px;
    padding: 34px 10px 19px;
  }
}

.top-media__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-media__list {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 20px;
  }
}

.top-media__item {
  width: 17.5rem;
}
@media screen and (max-width: 768px) {
  .top-media__item {
    width: 150px;
  }
}

.top-company__block {
  padding-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-company__block {
    padding-top: 2.125rem;
    margin-bottom: 2.5rem;
  }
}

.top-company__contents {
  background: rgba(7, 7, 7, 0.3);
  padding: 5.125rem 5rem 5.75rem 4rem;
  border-radius: 84px;
}
@media screen and (max-width: 768px) {
  .top-company__contents {
    max-width: 500px;
    margin: 0 auto 0;
    padding: 45px 28px 28px;
    border-radius: 30px;
  }
}

.top-company__container {
  margin-top: 4.75rem;
  display: grid;
  grid-template-columns: 24.625rem 1fr;
  gap: 2.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .top-company__container {
    margin-top: 1.125rem;
    grid-template-columns: 1fr;
    gap: 1.375rem;
  }
}

.top-company__map {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24.625rem;
  aspect-ratio: 394/348;
}
@media screen and (max-width: 768px) {
  .top-company__map {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 14.375rem;
    aspect-ratio: 348/307;
    max-width: 300px;
    margin: 0 auto 0;
  }
}

.top-company__map iframe {
  width: 100%;
  height: 100%;
}

.top-company__dl {
  width: 100%;
}

.top-company__row {
  display: grid;
  grid-template-columns: 98px 1fr;
  -webkit-column-gap: 37px;
     -moz-column-gap: 37px;
          column-gap: 37px;
  padding: 0.875rem 1.375rem 0.875rem 0.875rem;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .top-company__row {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #fff;
    padding: 10px 4px 16px;
  }
}

.top-company__row:last-child {
  border-bottom: none;
}

.top-company__term {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.6842105263;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-company__term {
    font-size: 12px;
    text-align: center;
  }
}

.top-company__desc {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-company__desc {
    margin-top: 6px;
    font-size: 14px;
    text-align: center;
    word-break: keep-all;
  }
}

.top-cta {
  margin-top: 5.25rem;
  padding-bottom: 5.375rem;
}
@media screen and (max-width: 768px) {
  .top-cta {
    display: none;
  }
}

.top-cta__text {
  font-size: 1.6875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.top-cta__list {
  margin-top: 2.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.375rem;
}

.top-cta__item {
  width: 25rem;
  height: 4.6875rem;
}

.top-cta__item .header-btn {
  font-size: 1.6875rem;
  padding: 0 4.625rem 0 2rem;
}

.top-cta__item .header-btn .btn-icon.-download {
  width: 2.125rem;
}

.top-cta__item .header-btn .btn-icon.-mail {
  width: 2.375rem;
}

.privacy {
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .privacy {
    padding: 40px 0;
  }
}

.privacy__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.privacy__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.privacy-item__title {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.privacy-item__text {
  margin-top: 8px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
}

.privacy .has-text-align-right {
  font-size: 14px;
  line-height: 2;
}

.privacy .has-text-align-right.mt24 {
  margin-top: 30px;
}

/* =========================
   第2階層（  1)  ）
========================= */
.privacy > .inner > .wp-block-list {
  counter-reset: level2;
  margin-top: 16px;
}

.privacy > .inner > .wp-block-list > li {
  counter-increment: level2;
  padding-left: 20px;
  font-size: 14px;
  line-height: 2;
  position: relative;
}

.privacy > .inner > .wp-block-list > li::after {
  content: counter(level2) ")";
  position: absolute;
  left: 0;
  top: 0;
}

/* =========================
   第3階層（  a)  ）
========================= */
.privacy > .inner > .wp-block-list > li > ul {
  counter-reset: level3;
  margin-left: 8px;
}

.privacy > .inner > .wp-block-list > li > ul > li {
  counter-increment: level3;
  margin-left: 6px;
  font-size: 14px;
  line-height: 2;
  position: relative;
}

.privacy > .inner > .wp-block-list > li > ul > li::before {
  content: counter(level3, lower-alpha) ") ";
  font-size: 14px;
  position: absolute;
  top: 0;
  left: -20px;
}

.tos {
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .tos {
    padding: 40px 0;
  }
}

.tos__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.tos__text {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.5625;
}

.tos__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.tos-item__title {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  position: relative;
}

.top .tos-item__title:first-child {
  margin-top: 30px;
}

.tos-item__text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
}

.tos .has-text-align-right {
  font-size: 14px;
  line-height: 2;
}

.tos .has-text-align-right.mt24 {
  margin-top: 30px;
}

/* =========================
   第2階層（1.）
========================= */
.tos > .inner > .wp-block-list {
  counter-reset: level2;
  margin-top: 16px;
}

.tos > .inner > .wp-block-list > li {
  counter-increment: level2;
  list-style: decimal;
  margin-left: 24px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 2;
}

/* =========================
   第3階層（(1)）
========================= */
.tos > .inner > .wp-block-list > li > ul {
  counter-reset: level3;
  margin-top: 12px;
}

.tos > .inner > .wp-block-list > li > ul > li {
  counter-increment: level3;
  padding-left: 28px;
  font-size: 14px;
  line-height: 2;
  position: relative;
}

.tos > .inner > .wp-block-list > li > ul > li::before {
  content: "(" counter(level3) ")";
  position: absolute;
  left: 0;
  top: 0;
}

/* =========================
   第4階層（(a)）
========================= */
.tos > .inner > .wp-block-list > li > ul > li > ul {
  counter-reset: level4;
}

.tos > .inner > .wp-block-list > li > ul > li > ul > li {
  counter-increment: level4;
  margin-left: 6px;
  font-size: 14px;
  line-height: 2;
  position: relative;
}

.tos > .inner > .wp-block-list > li > ul > li > ul > li::before {
  content: "(" counter(level4, lower-alpha) ") ";
  font-size: 14px;
  position: absolute;
  top: 0;
  left: -20px;
}

.legal-notice {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.legal-notice__title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .legal-notice__title {
    font-size: 18px;
  }
}

.legal-notice__list {
  margin-top: 30px;
}

.legal-notice__item {
  display: grid;
  grid-template-columns: 35% 1fr;
  padding: 24px 20px;
}
@media screen and (max-width: 768px) {
  .legal-notice__item {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
}

.legal-notice__item:nth-child(odd) {
  background-color: #eaf0ff;
}

.legal-notice__item:nth-child(even) {
  background-color: #fff;
}

.legal-notice__term {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .legal-notice__term {
    font-size: 14px;
  }
}

.legal-notice__description {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .legal-notice__description {
    font-size: 14px;
  }
}

.contact__block {
  position: relative;
  padding: 4.875rem 0 6.875rem;
}
@media screen and (max-width: 768px) {
  .contact__block {
    padding: 40px 0 60px;
  }
}

.contact__block::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#6590ef), to(#1ffcd6));
  background: linear-gradient(to bottom, #6590ef 0%, #1ffcd6 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.contact__contents {
  margin-top: 3.8125rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 56px;
  padding: 3.25rem 0 5.125rem;
}
@media screen and (max-width: 768px) {
  .contact__contents {
    margin-top: 30px;
    padding: 30px 0 40px;
    border-radius: 20px;
  }
}

.contact__form {
  margin-top: 2.25rem;
}
@media screen and (max-width: 768px) {
  .contact__form {
    margin-top: 30px;
  }
}

.contact__list {
  max-width: 51.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .contact__list {
    width: 90%;
    max-width: 500px;
  }
}

.contact__item {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .contact__item {
    padding: 10px 0;
    gap: 12px;
  }
}

.contact__fieldset {
  display: contents;
}

.contact__label {
  color: #4d4d4d;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .contact__label {
    font-size: 16px;
  }
}

.contact__label .label-small {
  font-size: 0.625rem;
}
@media screen and (max-width: 768px) {
  .contact__label .label-small {
    font-size: 10px;
  }
}

.contact__input {
  margin-top: 0.625rem;
  display: block;
  width: 100%;
  height: 3.75rem;
  padding: 10px 16px;
  background: #fff;
  border: none;
}
@media screen and (max-width: 768px) {
  .contact__input {
    padding: 12px 20px;
  }
}

::-webkit-input-placeholder {
  color: #4d4d4d;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

::-moz-placeholder {
  color: #4d4d4d;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

:-ms-input-placeholder {
  color: #4d4d4d;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

::-ms-input-placeholder {
  color: #4d4d4d;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

::placeholder {
  color: #4d4d4d;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  ::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 1.6;
  }
  ::-moz-placeholder {
    font-size: 16px;
    line-height: 1.6;
  }
  :-ms-input-placeholder {
    font-size: 16px;
    line-height: 1.6;
  }
  ::-ms-input-placeholder {
    font-size: 16px;
    line-height: 1.6;
  }
  ::placeholder {
    font-size: 16px;
    line-height: 1.6;
  }
}

.contact__textarea {
  margin-top: 0.625rem;
  height: 8.5rem;
  width: 100%;
  resize: none;
  padding: 10px 16px;
  border: none;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .contact__textarea {
    height: 80px;
    padding: 12px 20px;
    border-radius: 3px;
  }
}

.contact__submit-btn-box {
  margin-top: 3.75rem;
  width: 100%;
  max-width: 61.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .contact__submit-btn-box {
    margin-top: 40px;
    max-width: 300px;
  }
}

.contact__submit-btn {
  width: 100%;
  padding: 23px;
  color: #fff;
  font-size: 1.5625rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: #6590ef;
  border-radius: 31px;
  border: 1px solid #6590ef;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact__submit-btn {
    padding: 18px 0;
    font-size: 16px;
    border-radius: 40px;
  }
}

@media (any-hover: hover) {
  .contact__submit-btn:hover {
    background: #fff;
    color: #6590ef;
  }
}
/* 確認画面とメッセージ、スピナーを非表示 */
.comfirm__area,
.wpcf7-response-output,
.comfirm__area .wpcf7-spinner {
  display: none;
}

/* 確認ボタン非活性時 */
.contact__confirm-btn {
  width: 100%;
  padding: 23px;
  color: #fff;
  font-size: 1.5625rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: #6590ef;
  border-radius: 31px;
  border: 1px solid #6590ef;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact__confirm-btn {
    padding: 18px 0;
    font-size: 1rem;
    border-radius: 40px;
  }
}

.contact__confirm-btn[disabled] {
  background-color: #CCC;
  border: none;
}

.confirm__title {
  font-weight: 700;
  font-size: 2.625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .confirm__title {
    font-size: 32;
  }
}

.confirm__text {
  margin-top: 1rem;
  margin-bottom: 2.25rem;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .confirm__text {
    font-size: 20px;
  }
}

.confirm_message {
  line-height: 1.6;
}

.contact__item p {
  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;
}
@media screen and (max-width: 768px) {
  .contact__item p {
    gap: 8px;
  }
}

.contact_back {
  margin-bottom: 2.5rem;
  width: 100%;
  padding: 23px;
  color: #fff;
  font-size: 1.5625rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: rgba(101, 144, 239, 0.5);
  border-radius: 31px;
  border: 1px solid #6590ef;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact_back {
    padding: 18px 0;
    font-size: 1rem;
    border-radius: 40px;
  }
}

.thanks__block {
  position: relative;
  height: 100vh;
  padding: 40vh;
}
@media screen and (max-width: 768px) {
  .thanks__block {
    padding: 7.5rem 1rem;
  }
}

.thanks__block::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#6590ef), to(#1ffcd6));
  background: linear-gradient(to bottom, #6590ef 0%, #1ffcd6 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.thanks__title {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 3.9375rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks__title {
    font-size: 2.625rem;
  }
}

.thanks__text {
  margin-top: 1.5rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks__text {
    font-size: 1.75rem;
  }
}

.download__block {
  position: relative;
  height: 100vh;
  padding: 40vh;
}
@media screen and (max-width: 768px) {
  .download__block {
    padding: 180px 40px;
  }
}

.download__block::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#6590ef), to(#1ffcd6));
  background: linear-gradient(to bottom, #6590ef 0%, #1ffcd6 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.download__text {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 3.9375rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .download__text {
    font-size: 42px;
  }
}

.notfound__block {
  position: relative;
  height: 100vh;
  padding: 40vh;
}
@media screen and (max-width: 768px) {
  .notfound__block {
    padding: 180px 40px;
  }
}

.notfound__block::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#6590ef), to(#1ffcd6));
  background: linear-gradient(to bottom, #6590ef 0%, #1ffcd6 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.notfound__title {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 7.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .notfound__title {
    font-size: 60px;
  }
}

.notfound__text {
  margin-top: 1.875rem;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 3.9375rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .notfound__text {
    margin-top: 20px;
    font-size: 24px;
  }
}

.notfound__btn {
  width: 16.0625rem;
  margin: 1.875rem auto 0;
}

.blog__contents {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 40px 40px 23px;
}
@media screen and (max-width: 768px) {
  .blog__contents {
    padding: 60px 0;
  }
}

.blog__inner {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding: 34px 0 140px;
}
@media screen and (max-width: 768px) {
  .blog__inner {
    max-width: 500px;
    padding: 20px;
  }
}

.blog__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog__cat-item {
  margin-left: 1.25rem;
  padding: 0.25rem 0.625rem 0.375rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
  position: relative;
}
@media screen and (max-width: 768px) {
  .blog__cat-item {
    margin-left: 18px;
    padding: 4px 8px 6px;
    font-size: 12px;
  }
}

.blog__cat-item::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/categorry01.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -2px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .blog__cat-item::before {
    width: 12px;
    height: 12px;
  }
}

カテゴリーごとの背景色（slugに合わせて追加） .blog__cat-item--news {
  background-color: #df36e6;
}

.blog__cat-item--media {
  background-color: #6590ef;
}

.blog__cat-item--press-release {
  background-color: #ea613b;
}

.blog__time {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .blog__time {
    font-size: 12px;
  }
}

.blog__title {
  margin-top: 17px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .blog__title {
    font-size: 24px;
  }
}

.blog__thumbnail {
  margin-top: 33px;
  width: 100%;
  aspect-ratio: 720/411;
}
.blog__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.blog__content {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .blog__content {
    margin-top: 30px;
  }
}

.blog__content h1 {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .blog__content h1 {
    font-size: 20px;
  }
}

.blog__content h2 {
  font-size: 1.625rem;
  font-weight: bold;
  margin-top: 2.25rem;
  padding-left: 1.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .blog__content h2 {
    font-size: 18px;
    padding-left: 24px;
  }
}

.blog__content h2::before {
  content: "";
  width: 1.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #6590ef;
  position: absolute;
  top: 0.5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .blog__content h2::before {
    width: 18px;
  }
}

.blog__contents--press-release .blog__content h2::before {
  background: #ea613b;
}

.blog__contents--media .blog__content h2::before {
  background: #6590ef;
}

.blog__contents--news .blog__content h2::before {
  background: #df36e6;
}

.blog__content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .blog__content h3 {
    font-size: 18px;
    margin-top: 20px;
  }
}

.blog__content p {
  font-size: 1.125rem;
  margin-top: 1.25rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .blog__content p {
    font-size: 16px;
    margin-top: 18px;
  }
}

.blog__content a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .blog__content a:hover {
    color: #6590ef;
  }
}
.blog__content .wp-block-list {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .blog__content .wp-block-list {
    font-size: 16px;
  }
}

.blog__content figcaption {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .blog__content figcaption {
    font-size: 14px;
  }
}

.wp-block-image {
  margin-top: 1.5rem;
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .wp-block-image {
    margin-top: 24px;
  }
}
.wp-block-image img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.wp-block-image.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.wp-block-image.alignfull img {
  width: 100%;
}
.wp-block-image.alignwide {
  width: 100%;
  max-width: 100%;
}
.wp-block-image.alignwide img {
  width: 100%;
}
.wp-block-image.alignleft, .wp-block-image.alignright {
  display: inline-block;
  max-width: 50%;
}
.wp-block-image.alignleft img, .wp-block-image.alignright img {
  width: auto;
  max-width: 100%;
}
.wp-block-image.alignleft {
  float: left;
  margin-right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .wp-block-image.alignleft {
    margin-right: 20px;
  }
}
.wp-block-image.alignright {
  float: right;
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .wp-block-image.alignright {
    margin-left: 20px;
  }
}
.wp-block-image.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.wp-block-image.aligncenter img {
  width: auto;
  max-width: 100%;
}
.wp-block-image[style*=width] img {
  width: 100%;
}

.wp-block-table {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .wp-block-table {
    margin-top: 24px;
  }
}

.wp-block-list li {
  line-height: 1.8;
}

.blog__nav {
  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;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .blog__nav {
    margin-top: 40px;
    gap: 16px;
  }
}

.blog__nav-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #4d4d4d;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .blog__nav-link {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (any-hover: hover) {
  .blog__nav-link:hover {
    background-color: #f5f5f5;
    border-color: #999;
  }
}
.single__btn {
  width: 18.75rem;
  margin: 3rem auto 0;
}
@media screen and (max-width: 768px) {
  .single__btn {
    width: 220px;
    margin: 40px auto 0;
  }
}

.blog__contents--press-release .single__btn {
  background: #ea613b;
}

.blog__contents--media .single__btn {
  background: #6590ef;
}

.blog__contents--news .single__btn {
  background: #df36e6;
}

.inner {
  width: 100%;
  height: 100%;
  max-width: 80rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 500px;
    padding-inline: 20px;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

.btn {
  width: 100%;
  display: grid;
  place-content: center;
  padding: 1rem 0;
  border-radius: 12px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 8px 0;
    font-size: 16px;
    border-radius: 7px;
  }
}

.btn::before,
.header-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}

@media (any-hover: hover) {
  .btn:hover::before {
    -webkit-animation: btnShine 1s;
            animation: btnShine 1s;
  }
  .header-btn:hover::before {
    -webkit-animation: btnShine 1s;
            animation: btnShine 1s;
  }
}
@-webkit-keyframes btnShine {
  100% {
    left: 120%;
  }
}
@keyframes btnShine {
  100% {
    left: 120%;
  }
}
.-pink {
  background: #ff58b6;
}

.-blue {
  background: #6590ef;
}

.header-btn {
  width: 100%;
  height: 100%;
  padding: 0.625rem 0.625rem;
  display: grid;
  grid-template-columns: 1fr 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.btn-icon.-download {
  width: 1.5625rem;
  aspect-ratio: 33/30;
  background: url(../img/common/download-icon.png) no-repeat center center/contain;
}

.btn-icon.-mail {
  width: 1.5rem;
  aspect-ratio: 32/23;
  background: url(../img/common/mail-icon.png) no-repeat center center/contain;
}

.sp-btn {
  width: 100%;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.sp-btn .download {
  background: url(../img/common/download-icon.png) no-repeat center center/contain;
  width: 25px;
  aspect-ratio: 55/59;
}

.sp-btn .mail {
  background: url(../img/common/mail-icon.png) no-repeat center center/contain;
  width: 32px;
  aspect-ratio: 64/46;
}

.sp-btn.-pink {
  background: #ff58b6;
}

.sp-btn.-blue {
  background: #6590ef;
}

.section-title {
  color: #fff;
  font-family: "Zen Tokyo Zoo", system-ui;
  font-size: 5.6875rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 33px;
    line-height: 1.2857142857;
  }
}

.section-title span {
  display: block;
  margin-top: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 2.0625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-title span {
    margin-top: 4px;
    font-size: 18px;
  }
}

.page-title {
  color: #fff;
  font-size: 3.9375rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }
}

.page-top {
  position: fixed;
  bottom: 2.25rem;
  right: 0;
  margin: 0 1.875rem 0 auto;
  z-index: 10;
  width: 3.75rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url(../img/common/page-top-icon.png) no-repeat center center/contain;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .page-top {
    width: 35px;
    bottom: 60px;
    right: 0;
    margin: 0 14px 14px auto;
    padding: 0;
  }
}
.page-top.js-show {
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}
.page-top.-on-white {
  background-color: #6590ef;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (any-hover: hover) {
  .page-top:hover {
    opacity: 0.7;
  }
}