@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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

img {
  height: auto;
  border: none;
  vertical-align: middle;
  max-width: 100%;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

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

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.06em;
}
body.is-open {
  overflow: hidden;
}

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

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.inner {
  position: relative;
  width: 100%;
  max-width: 1360px;
  height: inherit;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .inner {
    width: 100%;
    padding: 0 80px;
  }
}

.main {
  min-height: 100vh;
}
.custom-front-page .main {
  margin-top: 60px;
  min-height: 100vh;
}
@media screen and (min-width: 540px) {
  .custom-front-page .main {
    margin-top: 80px;
  }
}

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

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}

.fv {
  height: calc(100vh - 60px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv {
    height: calc(100vh - 80px);
  }
}

.fv__bg-img {
  content: "";
  background: url(../../assets/img/fv_bg.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: auto;
  opacity: 0.35;
  z-index: -1;
}

.fv__content {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto 0;
}

.fv__text-main {
  font-size: 1.75rem;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  font-weight: 700;
}

.fv__text-sub {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 40px;
}

.fv__button {
  margin-top: 60px;
}

@media screen and (min-width: 540px) {
  .fv__text-main {
    font-size: 40px;
  }
  .fv__text-sub {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .fv__text-main {
    font-size: 46px;
  }
  .fv__text-sub {
    font-size: 1.125rem;
    line-height: 2.1666666667;
    letter-spacing: 0em;
    font-weight: 400;
    margin-top: 40px;
  }
}
@media screen and (min-width: 992px) {
  .fv__text-main {
    font-size: 48px;
  }
}
.service {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #e5e8ff;
}

.service__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.service__item {
  color: #333;
  position: relative;
  padding: 80px 30px 20px 30px;
  background: #fff;
  border-radius: 11px;
  -webkit-box-shadow: 3px 5px 8px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 5px 8px 3px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}

.service__item-tag {
  position: absolute;
  top: 0;
  left: 30px;
  width: 35%;
}

.service__img {
  opacity: 0.3;
  position: absolute;
  width: 38%;
  top: 20px;
  right: 20px;
}

.service__item-title--jp {
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 600;
}

.service__item-title--en {
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Roboto Condensed";
  text-transform: uppercase;
}

.service__item-text {
  font-size: 0.75rem;
  line-height: 1.75;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: justify;
}

.service__button {
  margin-top: 20px;
}

@media screen and (min-width: 540px) {
  .service__item-text {
    font-size: 14px;
    margin-top: 10px;
  }
  .service__content {
    grid-template-columns: repeat(2, 1fr);
  }
  .service__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
  }
  .service__item-tag {
    width: 43%;
  }
}
@media screen and (min-width: 768px) {
  .service {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .service__button {
    margin-top: 30px;
  }
  .service__item-tag {
    width: 37%;
  }
  .service__item {
    padding: 100px 30px 40px 30px;
  }
  .service__item-title--jp {
    font-size: 18px;
  }
  .service__item-title--en {
    font-size: 48px;
  }
  .service__button {
    margin-top: 30px;
  }
}
.about {
  padding-top: 80px;
}

.mission__text {
  margin-bottom: 60px;
}

.mission__text--main {
  font-size: 1.5rem;
  line-height: 1.5833333333;
  letter-spacing: 0.0416666667em;
  font-weight: 500;
  color: #333;
}

.mission__text--sub {
  font-size: 1.5rem;
  line-height: 1.4166666667;
  letter-spacing: 0.0416666667em;
  font-weight: 500;
  font-family: "Roboto Condensed";
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.mission__text--sub::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #000;
}

@media screen and (min-width: 540px) {
  .about {
    padding-top: 100px;
  }
  .mission__text--main {
    font-size: 32px;
  }
  .mission__text--sub {
    font-size: 24px;
  }
  .mission__text {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 80px;
  }
  .mission__text--main {
    font-size: 40px;
  }
  .mission__text--sub {
    font-size: 28px;
  }
  .mission__text {
    margin-bottom: 120px;
  }
}
.section__sub-title--vision {
  margin-top: 40px;
}

.mission__text--mission {
  margin-top: 30px;
}

.mission__text--vision {
  margin-top: 30px;
}

.message__inner {
  padding-bottom: 80px;
}

.section__sub-title--message {
  padding-top: 80px;
  border-top: 1px solid #000;
}

.message__head {
  font-size: 1.75rem;
  line-height: 1.6071428571;
  letter-spacing: 0.0357142857em;
  font-weight: 500;
  color: #242424;
  margin-top: 70px;
}

.message__content {
  margin-top: 40px;
}

.message__text {
  color: #242424;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.message__image-wrap {
  margin-top: 20px;
  width: 70%;
}

.message__name-company {
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 20px;
}

.message__name-jp {
  font-size: 1.75rem;
  line-height: 1.3928571429;
  letter-spacing: 0em;
  font-weight: 600;
}

.message__name-en {
  font-size: 1.125rem;
  line-height: 1.3888888889;
  letter-spacing: 0em;
  font-weight: 400;
}

@media screen and (min-width: 540px) {
  .message__head {
    font-size: 32px;
  }
  .message__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .message__head {
    font-size: 40px;
  }
  .message__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .message__text {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .message__image-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .message__name {
    text-align: right;
  }
}
@media screen and (min-width: 992px) {
  .message__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .message__text {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  .message__image-wrap {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    margin-top: 0;
  }
}
.company__inner {
  padding-bottom: 100px;
}

.section__sub-title--company {
  padding-top: 80px;
  border-top: 1px solid #000;
}

.company__table {
  margin-top: 70px;
}

@media screen and (min-width: 768px) {
  .company__inner {
    padding-bottom: 140px;
  }
}
.service-mv {
  padding-top: 80px;
  padding-bottom: 80px;
}

.service-mv-wrap {
  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;
  margin-top: 60px;
}

.service-mv__text--main {
  font-size: 1.5rem;
  line-height: 1.5833333333;
  letter-spacing: 0em;
  font-weight: 500;
  white-space: nowrap;
}

.service-mv__text--sub {
  font-size: 0.8125rem;
  line-height: 2.5384615385;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 40px;
  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;
}

.service-mv__right {
  position: relative;
}

.service-mv__img--sub {
  width: 40%;
  position: absolute;
  top: -50%;
  right: 0;
}

@media screen and (min-width: 540px) {
  .service-mv {
    padding-top: 100px;
  }
  .service-mv__text--main {
    font-size: 28px;
  }
  .service-mv__text--sub {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .service-mv {
    padding-top: 80px;
  }
  .service-mv-wrap {
    margin-top: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .service-mv__img--sub {
    width: 80%;
    max-width: 250px;
    top: -90%;
  }
  .service-mv__left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .service-mv__text--main {
    font-size: 34px;
  }
  .service-mv__text--sub {
    font-size: 18px;
  }
  .service-mv__right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .service-mv__img img {
    max-width: 50vw;
  }
}
@media screen and (min-width: 992px) {
  .service-mv-wrap {
    margin-top: 80px;
  }
  .service-mv__text--main {
    font-size: 36px;
  }
  .service-mv__text--sub {
    font-size: 20px;
  }
  .service-mv__img--sub {
    width: 50%;
    right: auto;
    left: -204px;
    top: 52%;
  }
}
.service-problem {
  padding-top: 60px;
  background: #e6e6e6;
}

.service-problem__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.service-problem__title {
  font-size: 1.5rem;
  line-height: 1.375;
  letter-spacing: 0em;
  font-weight: 700;
  color: #333;
  font-family: "Roboto Condensed";
}

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

.service-problem__list {
  font-size: 0.9375rem;
  line-height: 2.2;
  letter-spacing: 0em;
  font-weight: 900;
  color: #333;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}
.service-problem__list::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100vmax;
  background: #333;
  margin-top: 0.9rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-problem__img {
  text-align: center;
}
.service-problem__img img {
  width: 60%;
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (min-width: 540px) {
  .service-problem__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .service-problem {
    padding-top: 80px;
  }
  .service-problem__inner {
    width: 100%;
  }
  .service-problem__title {
    font-size: 32px;
    text-align: center;
  }
  .service-problem__text {
    margin-bottom: 60px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .service-problem__list {
    font-size: clamp(15px, 1.3888888889vw, 20px);
  }
  .service-problem__list::before {
    margin-top: 1.2rem;
  }
  .service-problem__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 30px;
    margin-top: 60px;
  }
  .service-problem__img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .service-problem__img img {
    width: 100%;
    max-width: 462px;
  }
}
.solution {
  background: #e5e8ff;
  padding-top: 60px;
  padding-bottom: 80px;
}

.solution__arrow {
  position: absolute;
  top: -60px;
  left: 50%;
  translate: -50%;
  width: 70%;
  max-width: 285px;
  z-index: 50;
}

.solution__container {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px 40px;
}

.solution-top {
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.solution-top__logo {
  width: 50%;
  margin: 0 auto;
}

.solution-top__head {
  margin-top: 20px;
}

.solution-top__head--jp {
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 600;
  color: rgb(0, 24, 255);
  text-align: center;
}

.solution-top__head--en {
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 700;
  text-align: center;
  color: #333;
  font-family: "Roboto Condensed";
  text-transform: uppercase;
}

.solution-top__head-text {
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 600;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  color: #333;
}

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

.solution-top__img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.solution-top__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  color: #333;
}

@media screen and (min-width: 540px) {
  .solution__arrow {
    width: 50%;
  }
  .solution-top__head-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .solution-top__logo {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .solution-top__head {
    -webkit-box-flex: 7;
        -ms-flex: 7;
            flex: 7;
  }
  .solution-top__head--jp {
    font-size: 18px;
    text-align: left;
  }
  .solution-top__head--en {
    text-align: left;
    font-size: 48px;
  }
  .solution-top__head-text {
    font-size: 16px;
  }
  .solution-top__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .solution {
    padding-top: 120px;
  }
  .solution-top {
    padding-bottom: 60px;
  }
  .solution-top__wrap {
    margin-top: 60px;
  }
  .solution__arrow {
    width: 45%;
    max-width: 540px;
    top: -120px;
    left: auto;
    translate: 0%;
    right: 120px;
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0); /* 最初は小さく */
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
  }
  .solution__arrow.show {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .solution__container {
    padding: 80px 40px 0;
  }
  .solution-top__head--jp {
    font-size: 20px;
  }
  .solution-top__head-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  .solution-top__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .solution-top__img {
    max-width: none;
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  .solution-top__text {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}
.coaching {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.section__sub-title--solution .section__sub-title--en {
  color: #333;
}
.section__sub-title--solution .section__sub-title--jp {
  color: rgb(0, 24, 255);
}

.coaching__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  color: #333;
  margin-top: 20px;
}

.coaching__img {
  margin-top: 40px;
}

@media screen and (min-width: 540px) {
  .coaching__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .coaching {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .solution-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .coaching {
    border-right: 1px solid #333;
    border-bottom: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 40px;
  }
}
.method {
  padding-top: 30px;
}

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

.method__text {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  color: #333;
}

.method__img {
  width: 70%;
  margin: 0 auto;
}

@media screen and (min-width: 540px) {
  .method__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .method {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .method__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    margin-top: 20px;
  }
  .method__img {
    width: 100%;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .method__text {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
}
@media screen and (min-width: 1200px) {
  .method {
    padding-left: 40px;
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .method__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .method__img {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .method__text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.solution__youtube {
  max-width: 720px;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto;
  margin-top: 80px;
}

.solution__youtube iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.solution__youtube-text {
  color: rgb(0, 24, 255);
  background: #fff;
  border-radius: 0px 0px 6px 5px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 600;
  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: 8px;
  max-width: 720px;
  margin: 0 auto;
  padding: 15px;
}

.dli-caret-circle-fill-right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  color: rgb(0, 24, 255);
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.dli-caret-circle-fill-right::before {
  content: "";
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.18em 0.31177em;
  border-left-color: currentColor;
  border-right: 0;
  -webkit-transform: translateX(15%);
          transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (min-width: 540px) {
  .solution__youtube-text {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .solution__youtube-text {
    font-size: 18px;
  }
}
.strengths {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section__sub-title--strengths .section__sub-title--jp,
.section__sub-title--strengths .section__sub-title--en {
  color: #333;
}

.strengths__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: 40px;
  margin-top: 30px;
}

.strengths__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.strengths__item-num {
  font-size: 1.5rem;
  line-height: 1.4166666667;
  letter-spacing: 0em;
  font-weight: 700;
  color: rgb(0, 24, 255);
  font-family: "Roboto Condensed";
  margin-right: 20px;
  place-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.strengths__item-num::after {
  content: "";
  width: 2px;
  height: 80%;
  background: rgb(0, 24, 255);
}

.strengths__item-title {
  font-size: 1.125rem;
  line-height: 1.3888888889;
  letter-spacing: 0em;
  font-weight: 500;
  color: #333;
}

.strengths__item-description {
  font-size: 0.8125rem;
  line-height: 1.7692307692;
  letter-spacing: -0.0769230769em;
  font-weight: 400;
  color: #333;
}

@media screen and (min-width: 540px) {
  .strengths {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .strengths__list {
    margin-top: 60px;
  }
  .strengths__item-num {
    font-size: 28px;
  }
  .strengths__item-title {
    font-size: 20px;
  }
  .strengths__item-description {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .strengths {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .strengths__item-num {
    font-size: 32px;
    margin-right: 30px;
    gap: 30px;
  }
  .strengths__item-title {
    font-size: 28px;
  }
  .strengths__item-description {
    font-size: 16px;
  }
  .strengths__list {
    padding-inline: 30px;
  }
}
.faq {
  padding-top: 80px;
  padding-bottom: 100px;
}

.section__sub-title--faq .section__sub-title--jp,
.section__sub-title--faq .section__sub-title--en {
  color: #333;
}

.faq__question {
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 400;
  padding-block: 20px 24px;
  position: relative;
}
@media (any-hover: hover) {
  .faq__question:hover {
    cursor: pointer;
  }
}

.faq__question-text {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.faq__question-text::before {
  content: "Q";
  color: rgb(0, 24, 255);
  background: #e5e8ff;
  border-radius: 100vmax;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.0625em;
  font-weight: 700;
  font-family: "Roboto Condensed";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 0px;
  left: 0;
  font-size: 16px;
  line-height: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.faq__answer {
  padding-bottom: 20px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  font-weight: 1.6;
}

.faq__answer-text {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  font-weight: 400;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.faq__answer-text::before {
  content: "A";
  color: #fff;
  background: rgb(0, 24, 255);
  border-radius: 100vmax;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100vmax;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.0625em;
  font-weight: 700;
  top: 0px;
  left: 0;
  font-size: 16px;
  line-height: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

@media screen and (min-width: 540px) {
  .faq {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 120px;
    padding-bottom: 140px;
  }
  .faq__list {
    padding-inline: 30px;
  }
  .faq__item {
    margin-top: 60px;
  }
  .faq__question {
    font-size: 1.25rem;
    line-height: 1.8;
    letter-spacing: 0em;
    font-weight: 400;
  }
  .faq__question-text::before {
    top: 6px;
    left: 0;
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
  .faq__answer {
    font-size: 15px;
  }
  .faq__answer-text {
    font-size: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .faq__answer-text::before {
    top: 6px;
    left: 0;
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
}
.service-mv__img--compass {
  top: -190%;
}

@media screen and (min-width: 400px) {
  .service-mv__img--compass {
    top: -153%;
  }
}
@media screen and (min-width: 540px) {
  .service-mv__img--compass {
    top: -60%;
  }
}
@media screen and (min-width: 768px) {
  .service-mv__img--compass {
    top: -80%;
  }
}
@media screen and (min-width: 992px) {
  .service-mv__img--compass {
    top: 60%;
  }
}
.compass-solution-top__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.compass-solution-top__img {
  width: 100%;
}

.compass-solution-top__text {
  font-size: 0.625rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 500;
  font-size: clamp(8px, 2.1333333333vw, 10px);
  text-align: right;
  color: #333;
}

.result {
  padding-top: 30px;
}

.result__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  color: #333;
  margin-top: 20px;
  text-align: justify;
}

.result__img {
  margin-top: 20px;
}
.result__img img {
  border-radius: 5px;
}

@media screen and (min-width: 540px) {
  .compass-solution-top__text {
    font-size: 14px;
  }
  .result__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .compass-solution-top__wrap {
    margin-top: 60px;
  }
  .result {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.flow {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section__sub-title--flow {
  color: #333;
}

.flow__list {
  margin-top: 45px;
}

.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.flow__item + .flow__item {
  border-top: 1px solid #e6e6e6;
  padding-top: 15px;
  margin-top: 15px;
}

.flow__item-num {
  font-size: 1.125rem;
  line-height: 1.3888888889;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Roboto Condensed";
  color: #fff;
  background: rgb(0, 24, 255);
  border-radius: 100vmax;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

.flow__item-text {
  color: #333;
}

.flow__item-title {
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 600;
}

.flow__item-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 400;
}

@media screen and (min-width: 540px) {
  .flow {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .flow__item-num {
    font-size: 20px;
    width: 50px;
    height: 50px;
  }
  .flow__item-description {
    font-size: 16px;
  }
  .flow__item-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .flow {
    padding-top: 100px;
  }
  .flow__list {
    margin-top: 80px;
  }
  .flow__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flow__item + .flow__item {
    padding-top: 20px;
    margin-top: 20px;
  }
  .flow__item-title {
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: 0em;
    font-weight: 600;
  }
  .flow__item-text {
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    width: 100%;
  }
  .flow__item-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .flow__item-description {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    width: 100%;
  }
}
.media {
  padding-top: 80px;
  padding-bottom: 100px;
}

.entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.entry-item {
  width: calc((100% - 16px) / 2);
  padding: 10px;
}
@media (any-hover: hover) {
  .entry-item a:hover .entry-item-img img {
    scale: 1.2;
  }
}

.entry-item-img {
  overflow: hidden;
}
.entry-item-img img {
  aspect-ratio: 768/511;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.entry-item-title {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

.entry-item-published {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.0714285714em;
  font-weight: 400;
  color: #333;
  margin-top: 2px;
}

@media screen and (min-width: 540px) {
  .media {
    padding-top: 100px;
  }
  .entry-item-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .media {
    padding-top: 80px;
    padding-bottom: 140px;
  }
  .entries {
    gap: 10px;
  }
  .entry-item {
    padding: 20px;
    width: calc((100% - 20px) / 3);
  }
  .entry-item-published {
    margin-top: 4px;
  }
}
@media screen and (min-width: 992px) {
  .entry-item-title {
    font-size: 18px;
  }
}
.single-section {
  padding-bottom: 100px;
}

.single-item-img {
  margin: 0 calc(50% - 50vw);
}
.single-item-img img {
  height: 20vh;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-item-body {
  padding-top: 10px;
  color: #333;
}
.single-item-body h2 {
  margin: 60px 0px 14px 0px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 900;
  font-size: 1rem;
  border-left: 1px solid #000000;
  padding-left: 10px;
}
.single-item-body h2 strong {
  margin: 60px 0px 14px 0px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 900;
  font-size: 1rem;
}
.single-item-body h3 {
  font-size: 1rem;
  line-height: 2.1875;
  letter-spacing: 0em;
  font-weight: 900;
  margin-top: 30px;
}
.single-item-body h3 strong {
  font-size: 1rem;
  line-height: 2.1875;
  letter-spacing: 0em;
  font-weight: 900;
  margin-top: 30px;
}
.single-item-body h4 {
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 900;
  margin-top: 20px;
}
.single-item-body h4 strong {
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 900;
  margin-top: 20px;
}
.single-item-body p,
.single-item-body a {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 10px;
}
.single-item-body strong {
  font-size: 16px;
  font-weight: 900;
}
.single-item-body a {
  color: #007cff;
}
.single-item-body ul {
  list-style: disc;
  padding-left: 1.3rem;
}
.single-item-body ol {
  list-style: auto;
  padding-left: 1.3rem;
}
.single-item-body li {
  margin-top: 10px;
}
.single-item-body img {
  max-width: 1024px;
}
.single-item-body table {
  border: 1px solid #BDBDBD;
  font-size: 14px;
  margin-top: 10px;
}
.single-item-body table td, .single-item-body table th {
  padding: 12px;
}

.single-item-title {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #333;
  margin-top: 40px;
  padding-bottom: 14px;
  border-bottom: 1px solid #a4a2a2;
}

@media screen and (min-width: 540px) {
  .single-item-title {
    font-size: 24px;
  }
  .single-item-body h2 {
    font-size: 2rem;
    margin: 80px 0px 20px 0px;
    padding-left: 14px;
  }
  .single-item-body h2 strong {
    font-size: 2rem;
    margin: 80px 0px 20px 0px;
    padding-left: 14px;
  }
  .single-item-body h3 {
    font-size: 18px;
    margin-top: 40px;
  }
  .single-item-body h3 strong {
    font-size: 18px;
    margin-top: 40px;
  }
  .single-item-body h4 {
    font-size: 16px;
    margin-top: 20px;
  }
  .single-item-body h4 strong {
    font-size: 16px;
    margin-top: 20px;
  }
  .single-item-body p, .single-item-body a {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .single-item-img img {
    height: 25vh;
  }
  .single-item-body p, .single-item-body a {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .single-item-title {
    font-size: 32px;
    margin-top: 80px;
    padding-bottom: 40px;
  }
  .single-item-body {
    padding-top: 40px;
  }
}
.pagination {
  text-align: center;
  margin-top: 60px;
}

.pagination a {
  margin-top: 12px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagination a:hover {
  opacity: 0.6;
}

.pagination a.next,
.pagination a.prev {
  font-size: 16px;
}

.page-numbers {
  background: #F8F8F8;
  color: #888;
  display: inline-block;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  margin-right: 6px;
  min-width: 40px;
  text-align: center;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background: #333;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 80px;
  }
}
.editor {
  margin-top: 100px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  border: 1px solid #000;
  max-width: 765px;
  margin-inline: auto;
}

.editor__img img {
  -o-object-fit: contain;
     object-fit: contain;
}

.editor__name,
.editor__name span {
  font-size: 20px !important;
  line-height: 1.5 !important;
  font-weight: 900 !important;
}

.editor__text {
  font-size: 16px;
  line-height: 1.3;
  margin-top: 24px;
  text-align: justify;
}

.editor__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.editor__sns-item {
  display: grid;
  place-items: center;
  margin-top: 0 !important;
}
.editor__sns-item img {
  -o-object-fit: contain;
     object-fit: contain;
}
.editor__sns-item a {
  margin-top: 0 !important;
}

.editor__sns-item--x {
  width: 32px;
  height: 32px;
}

.editor__sns-item--youtube {
  width: 40px;
  height: 40px;
}

.editor__sns-item--line {
  width: 40px;
  height: 40px;
}

.editor__sns-item--voicy {
  width: 46px;
  height: 46px;
  margin-left: -7px;
}

@media (max-width: 768px) {
  .editor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
    margin-top: 80px;
  }
}
.contact {
  padding-top: 80px;
  padding-bottom: 120px;
}

.contact__button-wrap {
  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;
}

@media screen and (min-width: 540px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 140px;
  }
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 80px;
  }
  .contact__button-wrap {
    gap: 60px;
  }
}
.privacy {
  padding-top: 80px;
  padding-bottom: 140px;
}

.privacy__text-top {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0em;
  font-weight: 400;
}

.privacy__text {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0em;
  font-weight: 400;
  color: #333;
}

.privacy__head {
  font-size: 1.125rem;
  line-height: 1.3888888889;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
.privacy__head::before {
  content: "";
  width: 1px;
  height: auto;
  background: #000;
}

.privacy__list {
  padding-left: 4px;
  margin-top: 16px;
  color: #333;
}

.privacy__list li {
  position: relative;
  padding-left: 10px; /* マーカーとテキストの間隔 */
}

.privacy__list li::before {
  content: "•"; /* 点の代わりにカスタムマーカー */
  font-size: 10px; /* 点の大きさ */
  color: #333; /* 色 */
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.privacy__text-address {
  padding-left: 1rem;
  margin-bottom: 20px;
}

@media screen and (min-width: 540px) {
  .privacy {
    padding-top: 100px;
  }
  .privacy__text-top {
    font-size: 1rem;
    line-height: 1.8125;
    letter-spacing: 0em;
    font-weight: 400;
  }
  .privacy__text {
    font-size: 15px;
  }
  .privacy__head {
    font-size: 1.5rem;
    line-height: 1.375;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .privacy {
    padding-top: 80px;
  }
}
.raw__table {
  border-spacing: 10px 0;
  border-collapse: separate;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  letter-spacing: 0em;
  font-weight: 500;
}

.raw__table th, .raw__table td {
  padding: 14px 0px;
  vertical-align: top;
}

.raw__table th {
  width: 30%;
  text-align: left;
  border-top: 1px solid #000;
  margin-right: 20px;
}

.raw__table td {
  width: 70%;
  text-align: left;
  border-top: 1px solid #c1cccb;
  color: #333;
}

@media screen and (min-width: 540px) {
  .raw__table {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .raw__table {
    border-spacing: 20px 0;
  }
}
@media screen and (min-width: 992px) {
  .raw__table th {
    width: 20%;
  }
  .raw__table td {
    width: 80%;
  }
}
.footer {
  padding-top: 50px;
  padding-bottom: 30px;
  background: rgb(0, 24, 255);
}

.footer__inner {
  color: #fff;
  max-width: none;
}

.footer-top {
  position: relative;
  margin-bottom: 30px;
}
.footer-top address {
  font-size: 0.6875rem;
  line-height: 1.3636363636;
  letter-spacing: 0em;
  font-weight: 400;
  font-style: normal !important;
  display: none;
}

.footer__logo {
  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: 16px;
  position: absolute;
  left: 10px;
  bottom: 10px;
}
.footer__logo img {
  width: clamp(100px, 37.3333333333vw, 140px);
}
.footer__logo p {
  font-size: 1rem;
  line-height: 0.0875;
  letter-spacing: 0.0625em;
  font-weight: 700;
  font-size: clamp(11px, 3.2vw, 16px);
}

.footer__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(30px, 4.1666666667vw, 60px);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.footer__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.footer__nav .sub-menu .menu-item {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer__nav .sub-menu .menu-item::before {
  content: "―";
  position: relative;
}
.footer__nav a {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "Roboto Condensed";
}
@media (any-hover: hover) {
  .footer__nav a:hover {
    opacity: 0.5;
  }
}

.footer__nav--jp {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  letter-spacing: 0.0833333333em;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}

.footer__nav--en {
  font-size: 1.125rem;
  line-height: 1.2222222222;
  letter-spacing: 0.0555555556em;
  font-weight: 700;
  font-family: "Roboto Condensed";
}

.footer-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (any-hover: hover) {
  .footer-nav__items:hover {
    opacity: 0.5;
  }
}

@media (any-hover: hover) {
  #menu-footer2 .menu-item a:hover {
    opacity: 1;
    cursor: default;
  }
}

@media (any-hover: hover) {
  #menu-footer2 .menu-item .sub-menu a:hover {
    opacity: 0.5;
    cursor: pointer;
  }
}

.footer-sns__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.footer-sns__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.footer-sns__item a p {
  font-size: 1.125rem;
  line-height: 1.3888888889;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (any-hover: hover) {
  .footer-sns__item a:hover .footer-sns__img {
    background: #c1cccb;
  }
  .footer-sns__item a:hover p {
    opacity: 0.5;
  }
}
.footer-sns__item .footer-sns__img {
  color: #fff;
  font-family: "Roboto Condensed";
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 100vmax;
  margin-top: -5px;
  display: grid;
  place-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-sns__item .footer-sns__img--youtube img {
  width: 26px;
  height: 19px;
}
.footer-sns__item .footer-sns__img--x img {
  width: 20px;
  height: 20px;
}
.footer-sns__item p {
  display: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 540px) {
  .footer__nav a {
    font-size: 24px;
  }
  .footer__nav--jp {
    font-size: 14px;
  }
  .footer__nav--en {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .footer-top {
    position: relative;
    margin-bottom: 30px;
  }
  .footer-top address {
    font-size: 0.6875rem;
    line-height: 1.3636363636;
    letter-spacing: 0em;
    font-weight: 400;
    font-style: normal !important;
    display: none;
    margin-top: 10px;
  }
  .footer__logo {
    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: 16px;
    position: absolute;
    left: 10px;
    bottom: 10px;
  }
  .footer__logo img {
    width: clamp(100px, 37.3333333333vw, 140px);
  }
  .footer__logo p {
    font-size: 1rem;
    line-height: 1.375;
    letter-spacing: 0.0625em;
    font-weight: 700;
    font-size: clamp(11px, 3.2vw, 16px);
  }
  .footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  address {
    display: block;
  }
  .footer__logo {
    position: static;
  }
  .footer__logo img {
    width: 150px;
  }
  .footer__logo p {
    font-size: 16px;
  }
  .footer-top address {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .footer__logo img {
    width: 200px;
  }
  .footer__logo p {
    font-size: 18px;
  }
  .footer-sns__item p {
    display: block;
  }
  .footer-top address {
    font-size: 15px;
  }
}
.footer__bottom {
  padding-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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  border-top: 1px solid #fff;
}

.footer__link-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.footer__link-item a {
  font-size: 0.6875rem;
  line-height: 1.4545454545;
  letter-spacing: 0.0909090909em;
  font-weight: 400;
}
@media (any-hover: hover) {
  .footer__link-item a:hover {
    opacity: 0.5;
  }
}

.footer__copy {
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 400;
}

@media screen and (min-width: 540px) {
  .footer__copy {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__bottom .footer__link-item a {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.0833333333em;
    font-weight: 400;
  }
  .footer__copy {
    font-size: 12px;
  }
}
.error {
  padding-top: 100px;
  padding-bottom: 140px;
}

.error__text--main {
  font-size: 1.375rem;
  line-height: 1.3636363636;
  letter-spacing: 0.0454545455em;
  font-weight: 500;
}

.error__text {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.0625em;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .error__text--main {
    font-size: 32px;
  }
}
.section__title {
  margin-bottom: 60px;
}

.section__title--en {
  font-size: 3.375rem;
  line-height: 1;
  letter-spacing: 0.0185185185em;
  font-weight: 700;
  color: rgb(0, 24, 255);
  font-family: "Roboto Condensed";
  text-transform: uppercase;
}
.section__title--en::after {
  background-color: rgb(0, 24, 255);
}

.section__title--jp {
  font-size: 1.125rem;
  line-height: 1.3888888889;
  letter-spacing: 0em;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.section__title--jp::after {
  background-color: #000;
}
.section__title--jp::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #000;
}

@media screen and (min-width: 540px) {
  .section__title--en {
    font-size: 72px;
  }
}
@media screen and (min-width: 768px) {
  .section__title {
    margin-bottom: 80px;
  }
  .section__title--en {
    font-size: 84px;
  }
  .section__title--jp {
    font-size: 20px;
  }
}
.animated__colorBox {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.animated__colorBox::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  pointer-events: none;
}
.animated__colorBox.js-show {
  -webkit-animation: 1s forwards textView;
          animation: 1s forwards textView;
}
.animated__colorBox.js-show::after {
  -webkit-animation: 1s forwards colorBox;
          animation: 1s forwards colorBox;
}

@-webkit-keyframes textView {
  from {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes textView {
  from {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes colorBox {
  0%, 50% {
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50%, 100% {
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
  }
  30% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes colorBox {
  0%, 50% {
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50%, 100% {
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
  }
  30% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.section__title-sub .section__title {
  margin-bottom: 80px;
}
.section__title-sub .section__title--jp {
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.0277777778em;
  font-weight: 700;
  color: rgb(0, 24, 255);
}
.section__title-sub .section__title--jp::after {
  background-color: rgb(0, 24, 255);
}
.section__title-sub .section__title--jp::before {
  display: none;
}
.section__title-sub .section__title--en {
  font-size: 1.125rem;
  line-height: 1.3888888889;
  letter-spacing: 0em;
  font-weight: 400;
  font-family: "Roboto Condensed";
  color: #000;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.section__title-sub .section__title--en::after {
  background-color: #000;
}
.section__title-sub .section__title--en::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #000;
}
@media screen and (min-width: 540px) {
  .section__title-sub .section__title {
    margin-bottom: 100px;
  }
  .section__title-sub .section__title--jp {
    font-size: 64px;
  }
  .section__title-sub .section__title--en {
    font-size: 20px;
  }
}
.section__title-sub .section__title--en2 {
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.0277777778em;
  font-weight: 700;
  color: rgb(0, 24, 255);
  text-transform: uppercase;
}
.section__title-sub .section__title--en2::after {
  background-color: rgb(0, 24, 255);
}
@media screen and (min-width: 540px) {
  .section__title-sub .section__title--en2 {
    font-size: 48px;
  }
}
@media screen and (min-width: 992px) {
  .section__title-sub .section__title--en2 {
    font-size: 64px;
  }
}
.section__title-sub .section__title--jp2 {
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 400;
  font-family: "Roboto Condensed";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.section__title-sub .section__title--jp2::after {
  background-color: #000;
}
.section__title-sub .section__title--jp2::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #000;
}
@media screen and (min-width: 540px) {
  .section__title-sub .section__title--jp2 {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  .section__title-sub .section__title--jp2 {
    font-size: 20px;
  }
}

.section__sub-title--en {
  font-size: 1.75rem;
  line-height: 1.3928571429;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Roboto Condensed";
  text-transform: uppercase;
}

.section__sub-title--jp {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0em;
  font-weight: 600;
}

@media screen and (min-width: 540px) {
  .section__sub-title--en {
    font-size: 28px;
  }
  .section__sub-title--jp {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .section__sub-title--en {
    font-size: 32px;
  }
}
.button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgb(0, 24, 255);
}
.button a {
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 700;
  color: #fff;
  height: 60px;
  width: 200px;
  display: grid;
  place-items: center;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(0, 0, 0, 0)), color-stop(50%, rgb(0, 0, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 50%);
  background-position: 0 0;
  background-size: 200% auto;
}
.button a::before, .button a::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  top: 50%;
  translate: 0 -50%;
}
.button a::before {
  background: #fff;
  right: 0;
  z-index: 2;
}
.button a::after {
  background: #000;
  right: -20px;
}
@media (any-hover: hover) {
  .button a:hover {
    background-position: -100% 0;
  }
}
@media screen and (min-width: 540px) {
  .button a {
    font-size: 20px;
    width: 260px;
  }
}

.button2 a {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 700;
  color: #fff;
  background: rgb(0, 24, 255);
  border: 2px solid transparent;
  border-radius: 25px;
  width: 100%;
  max-width: 200px;
  height: 50px;
  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;
  gap: 20px;
}
@media (any-hover: hover) {
  .button2 a:hover {
    color: rgb(0, 24, 255);
    background: #fff;
    border: 2px solid rgb(0, 24, 255);
  }
  .button2 a:hover .button2-arrow {
    color: rgb(0, 24, 255);
    left: 10px;
  }
}
.button2 .button2-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  left: 0;
  width: 15px;
  height: 2px;
  background: currentColor;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button2 .button2-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .button2 a {
    font-size: 18px;
    line-height: 2.5;
  }
}
.error__button {
  margin: 80px auto 0;
  width: 100%;
  max-width: 280px;
}
@media screen and (min-width: 540px) {
  .error__button {
    max-width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .error__button {
    max-width: 400px;
  }
}
.error__button a {
  border-radius: 30px;
  width: 100%;
  max-width: 280px;
  height: 60px;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.0666666667em;
  font-weight: 700;
}
@media screen and (min-width: 540px) {
  .error__button a {
    font-size: 1.25rem;
    line-height: 2.5;
    letter-spacing: 0.05em;
    font-weight: 700;
    height: 80px;
    max-width: 300px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 768px) {
  .error__button a {
    font-size: 24px;
    max-width: 400px;
  }
}

.button3 {
  width: 100%;
  max-width: 480px;
  height: 80px;
  background-color: rgb(0, 24, 255);
}
.button3 a {
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.0666666667em;
  font-weight: 700;
  color: #fff;
  height: 80px;
  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;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(0, 0, 0, 0)), color-stop(50%, rgb(0, 0, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 50%);
  background-position: 0 0;
  background-size: 200% auto;
}
.button3 a .button3-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  left: 0;
  width: 15px;
  height: 2px;
  background: currentColor;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button3 a .button3-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (any-hover: hover) {
  .button3:hover a {
    background-position: -100% 0;
  }
  .button3:hover .button3-arrow {
    left: 10px;
  }
}

@media screen and (min-width: 768px) {
  .button3 {
    height: 100px;
  }
  .button3 a {
    font-size: 24px;
    height: 100px;
    gap: 30px;
  }
  .button3 .button3-arrow {
    width: 20px;
    height: 3px;
  }
  .button3 .button3-arrow::before {
    width: 16px;
    height: 16px;
    border: 3px solid currentColor;
  }
}
.header__btn {
  margin-right: -20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgb(0, 24, 255);
}
.header__btn a {
  position: relative;
  font-size: 1rem;
  line-height: 1.1875;
  letter-spacing: 0em;
  font-weight: 600;
  color: #fff;
  height: 80px;
  width: 140px;
  display: grid;
  place-items: center;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(0, 0, 0, 0)), color-stop(50%, rgb(0, 0, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 50%);
  background-position: 0 0;
  background-size: 200% auto;
}
@media (any-hover: hover) {
  .header__btn a:hover {
    background-position: -100% 0;
  }
}

@media screen and (min-width: 992px) {
  .header__btn a {
    width: 160px;
  }
}
.drawer__btn {
  display: block;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 700;
  line-height: normal;
  padding: 16px 10px;
  background: rgb(0, 24, 255);
  width: 70%;
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 540px) {
  .drawer__btn {
    font-size: 20px;
    width: 60%;
  }
}
.js-header {
  opacity: 0; /* 最初は透明 */
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

/* オーバーレイのスタイル */
.drawer-overlay {
  display: block;
  position: fixed;
  top: 0px;
  left: 0; /* 画面右側に押し込めておく */
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 101; /* 一番下に */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer-overlay.js-show {
  opacity: 1;
  visibility: visible;
}

.header {
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
}

.custom-front-page .header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
}

.custom-front-page .drawer__icon {
  position: fixed;
}

.header__inner {
  height: 60px;
  padding: 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.header__logo {
  margin-left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header__logo img {
  height: 47px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 540px) {
  .header__inner {
    padding: 10px 20px 10px 30px;
  }
  .header__logo img {
    height: 62px;
    width: 128px;
  }
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 20px 10px 40px;
  }
}
.header__nav {
  display: none;
  gap: 20px;
  /* メニューのテキストアニメーション */
  /* サブメニューの初期状態 */
  /* サブメニューを表示 */
  /* サブメニュー内のリンクスタイル */
}
.header__nav .header__nav-list {
  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;
  gap: 20px;
}
.header__nav .menu-item {
  position: relative;
  height: 100%;
  width: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__nav .menu-item a {
  height: 100%;
  width: 100%;
}
@media (any-hover: hover) {
  .header__nav .menu-item:hover {
    border-bottom: 3px solid rgb(0, 24, 255);
  }
  .header__nav .menu-item:hover .header__nav--en {
    opacity: 0; /* 初期状態で透明に */
    visibility: hidden;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  }
  .header__nav .menu-item:hover .header__nav--jp {
    opacity: 1;
    visibility: visible;
    color: rgb(0, 24, 255);
  }
}
.header__nav .menu-item p {
  position: absolute;
  left: 0;
  width: 100%;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header__nav .sub-menu {
  display: block;
  position: absolute;
  top: 106%; /* メインメニューの真下に配置 */
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 10px;
  z-index: 1000;
  opacity: 0; /* 初期状態で透明に */
  visibility: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.header__nav .sub-menu .menu-item {
  width: 100%;
  display: table;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (any-hover: hover) {
  .header__nav .sub-menu .menu-item:hover {
    border-bottom: none;
  }
  .header__nav .sub-menu .menu-item:hover .header__nav-sub--en {
    border-bottom: 3px solid rgb(0, 24, 255);
  }
}
.header__nav .sub-menu .header__nav-sub--jp {
  text-align: left;
  font-size: 0.75rem;
  line-height: 1.75;
  letter-spacing: 0em;
  font-weight: 700;
  color: #333;
  font-size: 12px;
  white-space: nowrap;
  position: static;
}
.header__nav .sub-menu .header__nav-sub--en {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 600;
  font-weight: 600 !important;
  line-height: 2;
  text-transform: uppercase;
  color: rgb(0, 24, 255);
  position: static;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  text-align: left;
}
.header__nav .menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header__nav .sub-menu a {
  display: block;
  padding: 4px 20px 4px 0;
  text-decoration: none;
}
.header__nav .header__nav--en {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 600;
  color: #000;
  font-family: "Roboto Condensed";
  text-transform: uppercase;
  position: absolute;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  opacity: 1;
  visibility: visible;
  top: 50%;
  translate: 0 -50%;
}
.header__nav .header__nav--jp {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: rgb(0, 24, 255);
  font-family: "Roboto Condensed";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  opacity: 0; /* 初期状態で透明に */
  visibility: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.drawer__icon {
  position: absolute;
  z-index: 103;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 20px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.drawer__icon--bar {
  width: 100%;
  height: 2px;
  background: gray;
}

.drawer__icon--bar:nth-of-type(3) {
  width: 60%;
}

.drawer__icon.js-show .drawer__icon-wrap {
  background: rgb(0, 24, 255);
}
.drawer__icon.js-show .drawer__icon--bar {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 9px;
}
.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 -9px;
  width: 100%;
}

@media screen and (min-width: 540px) {
  .drawer__icon {
    z-index: 103;
    top: 30px;
    right: 30px;
    width: 35px;
    height: 30px;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
    translate: 0 13px;
  }
  .drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
    translate: 0 -13px;
  }
}
.drawer {
  position: fixed;
  z-index: 102;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background: #fff;
  overflow-y: scroll;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 50px 60px;
  position: relative;
}

.drawer__close {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
  background: rgb(0, 24, 255);
  display: grid;
  place-items: center;
}
.drawer__close img {
  width: 24px;
  height: 24px;
}

.drawer__logo {
  width: 50%;
}

.header__drawer-nav {
  margin-top: 80px;
  margin-bottom: 40px;
  text-transform: uppercase;
  max-width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__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;
  gap: 40px;
}
.header__drawer-list .sub-menu {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.header__drawer-list .sub-menu .menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  overflow: visible;
}
.header__drawer-list .sub-menu .menu-item::before {
  content: "";
  width: 10px;
  height: 1px;
  background: #c1cccb;
}

.drawer__nav--en {
  font-size: 1.75rem;
  line-height: 1.0714285714;
  letter-spacing: 0em;
  font-weight: 600;
  font-family: "Roboto Condensed";
}

.drawer__nav--jp {
  font-size: 0.875rem;
  line-height: 1.1428571429;
  letter-spacing: 0em;
  font-weight: 500;
  color: #333;
}

.drawer__nav-sub--jp {
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  letter-spacing: 0em;
  font-weight: 500;
  color: #333;
}

.drawer__nav-sub--en {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Roboto Condensed";
  color: #333;
}

.drawer-bottom {
  margin-top: 30px;
  border-top: 1px solid #c1cccb;
}

.drawer-bottom__items {
  margin-top: 20px;
  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: 19px;
}

.drawer-bottom__item a {
  font-size: 0.75rem;
  line-height: 0.9166666667;
  letter-spacing: 0em;
  font-weight: 400;
}

@media screen and (min-width: 540px) {
  .drawer-bottom__items {
    margin-top: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: clamp(10px, 2vw, 40px);
  }
  .drawer-bottom__item {
    font-size: 0.875rem;
    line-height: 0.8571428571;
    letter-spacing: 0em;
    font-weight: 400;
  }
  .drawer-bottom__item a {
    font-size: 0.875rem;
    line-height: 0.7857142857;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
.drawer {
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
}

@media screen and (min-width: 540px) {
  .header {
    height: 80px;
  }
  .custom-front-page .header {
    height: 80px;
  }
  .header__inner {
    height: 80px;
  }
  .drawer__close {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 0;
    right: 0;
    background: rgb(0, 24, 255);
  }
  .drawer__close img {
    width: 35px;
    height: 35px;
  }
  .drawer__logo {
    width: 35%;
  }
  .header__drawer-nav {
    max-width: 60%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .drawer__nav--en {
    font-size: 2.25rem;
    line-height: 1.0833333333;
    letter-spacing: 0em;
    font-weight: 600;
  }
  .drawer__nav--jp {
    font-size: 0.875rem;
    line-height: 1.1428571429;
    letter-spacing: 0em;
    font-weight: 500;
  }
  .drawer__nav-sub--jp {
    font-size: 0.875rem;
    line-height: 1.2857142857;
    letter-spacing: 0em;
    font-weight: 500;
  }
  .drawer__nav-sub--en {
    font-size: 1.5rem;
    line-height: 1.1666666667;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .drawer__icon,
  .drawer {
    display: none;
  }
}
.hidden--sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden--sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .hidden--pc {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .hidden--lg {
    display: none;
  }
}
@media screen and (min-width: 540px) {
  .hidden--sm {
    display: none;
  }
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, transform 2s;
  transition: opacity 2s, transform 2s, -webkit-transform 2s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
  -webkit-transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, transform 2s;
  transition: opacity 2s, transform 2s, -webkit-transform 2s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.fade-in.is-in-view {
  opacity: 1;
}

.fade-in-right {
  opacity: 0;
  -webkit-transform: translateX(24px);
          transform: translateX(24px); /* 右に24pxずらす */
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-right.is-in-view {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fade-in-left {
  opacity: 0;
  -webkit-transform: translateX(-24px);
          transform: translateX(-24px); /* 左に24pxずらす */
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-left.is-in-view {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fade-in-header {
  opacity: 0;
  -webkit-transition: opacity 7s;
  transition: opacity 7s;
}
.fade-in-header.is-in-view {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */


.cta__button-wrap {
    text-align: center;
    padding: 2em 0;
}
.cta__text {
	white-space: nowrap;
	font-weight: 600 !important;
    font-size: 16px !important;
	margin-bottom: 10px;
}

.cta__button a {
    position: relative;
    display: inline-block;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 30px 1rem 10px;
    border-radius: 50px;
    background: rgb(0, 24, 255);
        border: 2px solid transparent;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}
.cta__button a:hover {
    color: rgb(0, 24, 255);
    background-color: #fff;
    border: 2px solid rgb(0, 24, 255);
}
.cta__button a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateX(0) translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cta__button a:hover::after {
    transform: translateX(3px) translateY(-50%) rotate(45deg);
    border-top-color: rgb(0, 24, 255);
    border-right-color: rgb(0, 24, 255);
}
.single_body {
	display: flex;
    gap: 4rem;
}
.single_body--left {
	flex: 7;
}
.single_body--right {
	margin-top: 80px;
	flex: 3;
	max-width: 300px;
}
.banner_fix {
	position: sticky;
	top: 140px !important;
       
}
	.side_title {
		    padding: .5em;
    overflow: hidden;
    font-weight: 700;
		position: relative;
}
.side_title::before {
	position:absolute; 
	display: block;
    box-sizing: inherit;
    height: 1px;
    content: "";
    bottom: 0;
    left: 0;
    width: 40%;
    z-index: 1;
    background: #04384c;
}
.side_title::after {
    position: absolute;
    z-index: 0;
    display: block;
    box-sizing: inherit;
    height: 1px;
	content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(200, 200, 200, .5);
}
.wp-block-categories-list {
	padding-top:1rem;

}
.wp-block-categories-list li a {
	transition: all 0.3s;
	padding: 0.75rem;
}
.wp-block-categories-list li a:hover {
	opacity: 0.7;
}
.wp-block-categories-list li {
	border-bottom: 1px solid rgba(200, 200, 200, .5);
	
}
#roadmap {
	padding-top:0.5rem;
padding-left:1rem;
	
}

.roadmap-title {
	    color: #333333;
font-weight: 700;
	padding-top: 1rem;
	padding-bottom: 0.2rem;
}
#roadmap li {
	margin-top: 0.2rem;
	margin-left: 1.5rem;
	list-style: initial;
	font-size:15px;
	line-height: 1.3rem;
	transition: all 0.3s;
	vertical-align: top ;
}

#roadmap li a:hover {
	
	opacity: 0.7;
	
}.cta__button-content {
display: none;
}
@media (max-width: 992px) {
	.single_body--right {
	margin-top: 40px;
		max-width: none;
}
	.single_body {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
    .cta__text {
    font-size:  clamp(12px, calc( 13 / 375 * 100vw) , 14px) !important;
}

.cta__button a {
     font-size:  clamp(18px, calc( 20 / 375 * 100vw) , 20px) !important;
padding: 0.8rem 30px 0.8rem 10px;
	max-width: 345px;
	
}
	
	.single_body--right {
	margin-top: 0px;
}
	.cta__button-content {
		width: 100%;
		background: rgba(255, 255, 255,0.8);
    margin: 0 calc(50% - 50vw);
		display: block;
		position: fixed;
		bottom:-20px;
		left: 50%;
		transform:translatex(-50%);
		z-index: 100;
	}
	.cta__button-content .cta-sp {
    padding-top: 12px;
		.cta__button  {
			padding-inline: 30px;
}
		.cta__button a {
	line-height: 1.5;
			
		}
	}
}

.widget.toc_widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    font-family: 'Helvetica Neue', sans-serif;
  }
  
  /* タイトル部分 */
  .widget.toc_widget .widget-title {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin-bottom: 16px;
    /* position: relative; */
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  
/*   .widget.toc_widget .widget-title::before {
    content: "";
    display: block;
    margin-right: 6px;
    width: 24px;
    height: 19px;
    vertical-align: middle;
    background: url(http://metoo.co.jp/wp-content/uploads/2025/06/icon-toc.png) no-repeat center / contain;
  } */
  
  /* リスト全体 */
  .toc_widget_list.no_bullets {
    list-style: none;
    margin: 0;
    padding-left: 0;
    counter-reset: toc-counter;
  }
  
  /* 各目次項目 */
  .toc_widget_list.no_bullets li {
    counter-increment: toc-counter;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-left: 26px;
  }
  
  /* 番号付き（01, 02...）スタイル */
  .toc_widget_list.no_bullets li::before {
    content: counter(toc-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 4px;
    color: rgb(0, 24, 255);
    font-weight: bold;
    font-size: 14px;
  }
  
  /* リンクスタイル */
  .toc_widget_list.no_bullets li a {
    color: inherit;
    text-decoration: none;
	      line-height: 1.3;
  }
  
  .toc_widget_list.no_bullets li a:hover {
    text-decoration: underline;
  }
 .p-single__content #toc_container {
  display: none;
}
#toc_container { display: none; } /* 本文の自動挿入を消す */
.sidebar .toc_widget { display: block !important; } /* ウィジェット側だけ表示 */

.banner_fix {
    max-width: 300px;
    height: fit-content !important;
	margin-bottom: 0;
}
.widget.toc_widget {
	max-width: 300px;
}
#block-33 {
/* 	top:16px !important; */
}
#toc-widget-2 {
/* 	top: 334px !important; */
	padding: 16px !important;
}
.toc_widget_list.no_bullets li {
	font-size: 15px;
	line-height: 0.8;
	margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
	.banner_fix {
		max-width: none;
}
.widget.toc_widget {
	max-width: none;
}
}