@charset "UTF-8";
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  35% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  35.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  70%, 100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  35% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  35.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  70%, 100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  color: #00000b;
  font-size: 10px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 980px) {
  html {
    min-width: 980px;
  }
}
@media screen and (max-width: 767px) {
  html {
    min-width: 100%;
  }
}

.empty-post__message {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 20px;
}

.button {
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 260px;
  margin: 0 auto;
  padding: 20px 25px;
  border-radius: 999vw;
  border: 1px solid #000;
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media screen and (max-width: 767px) {
  .button::before {
    display: none;
  }
}
.button:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .button:hover {
    color: #00000b;
  }
}
.button:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.button.hidden {
  display: none;
}

.more-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-bottom: 1px solid black;
  padding-bottom: 5px;
  width: 215px;
  position: relative;
}
.more-button:hover .more-button__text {
  letter-spacing: 0.2em;
}
.more-button__text {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .more-button__text {
    font-size: 13px;
  }
}
.more-button:hover .more-button__text {
  letter-spacing: 0.2em;
}
.more-button__grid {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  grid-template-rows: repeat(3, 4px);
  gap: 2px;
}
@media screen and (max-width: 767px) {
  .more-button__grid {
    grid-template-columns: 3px 3px 3px;
    grid-template-rows: 3px 3px 3px;
    gap: 1px;
  }
}
.more-button__box {
  background-color: #000;
}
.more-button__slant {
  width: 6px;
  height: 1px;
  background-color: #000;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  position: absolute;
  right: 0;
  bottom: 1px;
}
.more-button--nogrid .more-button__grid {
  display: none;
}
.more-button--white {
  border-bottom: 1px solid #fff;
}
.more-button--white .more-button__text {
  color: #fff;
}
.more-button--white .more-button__box,
.more-button--white .more-button__slant {
  background-color: #fff;
}
.more-button--margin {
  margin: 0 0 120px;
}
@media screen and (max-width: 767px) {
  .more-button--margin {
    margin: 0 auto 50px;
  }
}
.more-button--margin-left {
  margin-left: auto;
}
.more-button__icon {
  width: 20px;
  height: 20px;
}
.more-button__icon img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section__outer {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .section__outer {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .section__outer {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .section__outer {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .section__outer {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .section__outer {
    max-width: 1000px;
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .section__outer {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .section__outer {
    padding: 0;
  }
}
.section__title {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 6.5rem;
}
@media screen and (max-width: 1280px) {
  .section__title {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 2.8rem;
  }
}
.section__title.sm {
  font-size: 3.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 1367px) {
  .section__title.sm {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title.sm {
    font-size: 2.1rem;
  }
}
.section__title.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section__subtitle {
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section__subtitle {
    font-size: 1.4rem;
  }
}
.section__subtitle.sm {
  font-size: 2rem;
}
@media screen and (max-width: 1367px) {
  .section__subtitle.sm {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .section__subtitle.sm {
    font-size: 1.4rem;
  }
}
.section__subtitle.bg-red {
  width: 100%;
  padding: 10px;
  text-align: center;
  letter-spacing: 1px;
  background: #b01e2d;
  color: #fff;
}
@media screen and (max-width: 1600px) {
  .section__subtitle.bg-red {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1440px) {
  .section__subtitle.bg-red {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1280px) {
  .section__subtitle.bg-red {
    padding: 5px;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 1024px) {
  .section__subtitle.bg-red {
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .section__subtitle.bg-red {
    height: unset;
  }
}
.section__subtitle.bg-black {
  width: 100%;
  padding: 10px;
  text-align: center;
  letter-spacing: 1px;
  background: #000;
  color: #fff;
}
@media screen and (max-width: 1600px) {
  .section__subtitle.bg-black {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1440px) {
  .section__subtitle.bg-black {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1280px) {
  .section__subtitle.bg-black {
    padding: 5px;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 1024px) {
  .section__subtitle.bg-black {
    height: 55px;
    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;
  }
}
.section__subtitle.my-20 {
  margin: 25px 0 20px;
}
.section__container {
  width: 100%;
  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: flex-start;
  gap: 33px;
}
@media screen and (max-width: 1440px) {
  .section__container {
    max-width: 1250px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1367px) {
  .section__container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .section__container {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .section__container {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .section__container {
    gap: 5px;
    padding: 0;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.section__container.sm {
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .section__container.sm {
    gap: 15px;
  }
}
.section__container--white .section__container,
.section__container--white .section__title,
.section__container--white .section__subtitle {
  color: #fff;
}
.section__container--max-width {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .section__container--max-width {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .section__container--max-width {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .section__container--max-width {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .section__container--max-width {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .section__container--max-width {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .section__container--max-width {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .section__container--max-width {
    max-width: 100%;
  }
}
.section__container--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.section__container--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .section__container.solution {
    padding: 0 5%;
  }
}

.page-banner {
  min-height: 360px;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .page-banner {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .page-banner {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .page-banner {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .page-banner {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .page-banner {
    min-height: 260px;
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .page-banner {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner {
    max-width: 100%;
    width: 100% !important;
    min-height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 20px;
    padding: 0 5% !important;
  }
}
.page-banner--faq {
  height: auto;
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-banner--faq .page-banner__content h6 {
  font-size: 9rem;
}
@media screen and (max-width: 1280px) {
  .page-banner--faq .page-banner__content h6 {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .page-banner--faq .page-banner__content h6 {
    font-size: 5rem;
  }
}
.page-banner--lower-page {
  height: auto;
  margin-top: 90px;
  font-family: "brandon-grotesque", sans-serif;
}
.page-banner--lower-page .page-banner__content h6 {
  font-size: 9rem;
}
@media screen and (max-width: 1280px) {
  .page-banner--lower-page .page-banner__content h6 {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .page-banner--lower-page .page-banner__content h6 {
    font-size: 4rem;
  }
}
.page-banner--width-1550 {
  max-width: 1550px;
}
.page-banner--recruit {
  margin-top: -12px;
}
.page-banner--recruit-main {
  height: unset;
  margin: 80px auto 0;
  font-family: "brandon-grotesque", sans-serif;
}
@media screen and (max-width: 767px) {
  .page-banner--recruit-main {
    margin-top: 30px;
  }
}
.page-banner__content {
  width: 100%;
  padding-top: 80px;
}
@media screen and (max-width: 1280px) {
  .page-banner__content {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .page-banner__content {
    padding-top: 0;
  }
}
.page-banner__content--zero-pad {
  padding: 0;
}
.page-banner__title {
  width: 40%
}
@media screen and (max-width: 767px) {
  .page-banner__title {
    width: 100%
  }
}
.page-banner__title > h6 {
  font-size: 7.6rem;
}
@media screen and (max-width: 1367px) {
  .page-banner__title > h6 {
    font-size: 54.0708333333px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__title > h6 {
    font-size: 3rem;
  }
}
.page-banner__title > span {
  font-size: 2.5rem;
}
@media screen and (max-width: 1367px) {
  .page-banner__title > span {
    font-size: 17.7864583333px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__title > span {
    font-size: 1.8rem;
  }
}
.page-banner__title > h6, .page-banner__title > span {
  font-weight: 700;
}
.page-banner__text {
  margin-top: 40px;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .page-banner__text {
    margin-top: 20px;
    width: 100%;
  }
}
.page-banner__text > p {
  font-size: 1.6rem;
  font-weight: 500;
}
.page-banner__image {
  width: 60%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .page-banner__image {
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .page-banner__image {
    height: 100%;
  }
}
.page-banner__image--02 {
  right: -10%;
}
@media screen and (max-width: 1367px) {
  .page-banner__image--02 {
    right: -4%;
  }
}
@media screen and (max-width: 1024px) {
  .page-banner__image--02 {
    top: 10%;
    right: -12%;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__image--02 {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
  }
}
@media screen and (max-width: 1024px) {
  .page-banner__image--03 {
    top: 15%;
    right: -5%;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__image--03 {
    right: 0;
  }
}
@media screen and (max-width: 1280px) {
  .page-banner__image--05 {
    top: 15%;
    right: -5%;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__image--05 {
    right: 0;
  }
}
.page-banner__image--07 {
  right: -4%;
}
@media screen and (max-width: 1367px) {
  .page-banner__image--07 {
    right: 0;
  }
}
@media screen and (max-width: 981px) {
  .page-banner__image--07 {
    top: 30%;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-banner__image--07 {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .page-banner__image--07 {
    height: 100%;
  }
}

.breadcrumbs {
  margin: 60px auto 100px;
  padding: 0 3%;
}
@media screen and (max-width: 1600px) {
  .breadcrumbs {
    padding: 0;
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .breadcrumbs {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .breadcrumbs {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .breadcrumbs {
    max-width: 1000px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    max-width: 100%;
    margin: 30px auto 50px;
    padding: 0 5%;
  }
}
.breadcrumbs__list {
  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;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__list {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0;
  }
}
.breadcrumbs__item:not(:last-child) {
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__item:not(:last-child) {
    padding-right: 15px;
    margin-right: 15px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.breadcrumbs__item:not(:last-child)::before {
  content: "";
  width: 7px;
  height: 9px;
  background: url("./src/img/icons/breadcrumbs-arrow.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -7px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.breadcrumbs__item > a, .breadcrumbs__item > span {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__item > a, .breadcrumbs__item > span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1367px) {
  .breadcrumbs__item > a, .breadcrumbs__item > span {
    font-size: 1.2rem;
  }
}
.breadcrumbs__item--title {
  max-width: 40%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.flow {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 100px auto;
}
@media screen and (max-width: 767px) {
  .flow {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .flow {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .flow {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .flow {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .flow {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .flow {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .flow {
    margin: 50px 0;
    max-width: 100%;
  }
}
.flow__list {
  position: relative;
  margin-top: 60px;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .flow__list {
    margin: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .flow__list {
    margin: 30px 0 0;
  }
}
.flow__list::before {
  content: "";
  width: 289px;
  height: 100%;
  background-image: url("./src/img/flow/flow-deco.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 50px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .flow__list::before {
    content: none;
  }
}
.flow__list-seo {
  position: relative;
  margin-top: 60px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .flow__list-seo {
    margin-top: 30px;
  }
}
.flow__list-seo::before {
  content: "";
  width: 289px;
  height: 100%;
  background-image: url("./src/img/seo/flow-seo.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .flow__list-seo::before {
    content: none;
  }
}
.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .flow__item {
    -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;
  }
}
.flow__number {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 8rem;
  font-weight: 500;
  color: #ccccce;
  line-height: 8rem;
  font-style: italic;
}
@media screen and (max-width: 1367px) {
  .flow__number {
    font-size: 7rem;
    line-height: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .flow__number {
    font-size: 4rem;
    line-height: 4rem;
    width: 100%;
  }
}
.flow__image {
  width: auto;
  height: auto;
}
@media screen and (max-width: 1367px) {
  .flow__image {
    width: 235px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .flow__image {
    width: 80%;
    margin-bottom: 20px;
  }
}
.flow__content {
  width: 850px;
}
@media screen and (max-width: 1367px) {
  .flow__content {
    width: 58%;
  }
}
@media screen and (max-width: 767px) {
  .flow__content {
    width: 100%;
  }
}
.flow__content > h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 1367px) {
  .flow__content > h6 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .flow__content > h6 {
    margin-bottom: 15px;
  }
}
.flow__content > p {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1367px) {
  .flow__content > p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .flow__content > p {
    font-size: 1.4rem;
  }
}
.flow__content--07 {
  -ms-flex-item-align: center;
      align-self: center;
}

.header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: #fff;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 3%;
}
@media screen and (max-width: 1280px) {
  .header {
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 65px;
    padding: 10px 5%;
  }
}
.header__logo-image {
  width: 170px;
}
@media screen and (max-width: 1280px) {
  .header__logo-image {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo-image {
    width: 95px;
  }
}
.header__content, .header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.header__list {
  gap: 10px;
}
@media screen and (max-width: 1367px) {
  .header__list {
    gap: 5px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__list {
    display: none;
  }
}
.header__link {
  position: relative;
  padding: 0 7px;
  margin: 0 11.5px;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1367px) {
  .header__link {
    padding: 0 3px;
  }
}
@media screen and (max-width: 1280px) {
  .header__link {
    margin: 0 5px;
    font-size: 14px;
  }
}
.header__link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.header__button {
  position: relative;
  width: 260px;
  height: 60px;
  margin: 0 36px 0 72.5px;
  border: 1px solid #00000b;
  border-radius: 35px;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1367px) {
  .header__button {
    margin: 0 25px;
  }
}
@media screen and (max-width: 1280px) {
  .header__button {
    width: 160px;
    margin: 0 20px;
    height: 40px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .header__button {
    width: 100%;
    height: 60px;
    margin: 0;
    font-size: 15px;
  }
}
.header__button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media screen and (max-width: 767px) {
  .header__button::before {
    display: none;
  }
}
.header__button:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header__button:hover {
    color: #00000b;
  }
}
.header__button:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__button--fixed {
  background-color: #00000b;
  color: #fff;
  position: fixed;
  bottom: 22.69px;
  left: 0;
  right: 0;
  width: calc(100% - 125px);
  margin: 0 auto;
  z-index: 700;
  -webkit-transform: translateY(90px);
          transform: translateY(90px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__button--fixed:hover {
  color: #fff;
}
.header__button--fixed.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header__navigation {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #00000b;
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__navigation {
    width: 45px;
    height: 45px;
  }
}
.header__navigation-line {
  width: 15px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__navigation-line {
    height: 1px;
    width: 11.25px;
  }
}
.header__navigation-line:not(:last-child) {
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .header__navigation-line:not(:last-child) {
    margin-bottom: 4.5px;
  }
}
.header.active {
  background-color: #f1f2f5;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  background-color: #f1f2f5;
}
.header.active .header__navigation-line {
  border-radius: 2px;
  width: 11px;
}
@media screen and (max-width: 767px) {
  .header.active .header__navigation-line {
    width: 9px;
  }
}
.header.active .header__navigation-line:first-child {
  -webkit-transform: rotate(-45deg) translate(-3.5px, 3.5px);
          transform: rotate(-45deg) translate(-3.5px, 3.5px);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .header.active .header__navigation-line:first-child {
    -webkit-transform: rotate(-45deg) translate(-2px, 2.4px);
            transform: rotate(-45deg) translate(-2px, 2.4px);
  }
}
.header.active .header__navigation-line:nth-child(2) {
  opacity: 0;
}
.header.active .header__navigation-line:last-child {
  -webkit-transform: rotate(45deg) translate(-3.5px, -3.5px);
          transform: rotate(45deg) translate(-3.5px, -3.5px);
}
@media screen and (max-width: 767px) {
  .header.active .header__navigation-line:last-child {
    -webkit-transform: rotate(45deg) translate(-2px, -2px);
            transform: rotate(45deg) translate(-2px, -2px);
  }
}
.header__subitem {
  opacity: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
}
.header__subitem:hover {
  opacity: 0.5;
}
.header__icon-container {
  height: 50px;
  margin-bottom: 8px;
  font-size: 0;
  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;
}
.header__icon {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1024px) {
  .header__icon {
    width: 40px;
    height: 40px;
  }
}
.header__text {
  font-weight: 500;
  font-size: 14px;
  display: block;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .header__text {
    font-size: 12px;
  }
}
.header__sublist {
  position: fixed;
  right: 50%;
  -webkit-transform: translateX(49%);
          transform: translateX(49%);
  width: 1300px;
  padding: 35px 39px;
  top: 90px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 11, 0.1), 0 5px 5px rgba(0, 0, 11, 0.05);
          box-shadow: 0 0 5px rgba(0, 0, 11, 0.1), 0 5px 5px rgba(0, 0, 11, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .header__sublist {
    top: 70px;
    width: 100%;
  }
}
.header__item {
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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;
}
.header__item > span:nth-child(2) {
  color: #727278;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 5px;
  pointer-events: none;
}
@media screen and (max-width: 1280px) {
  .header__item > span:nth-child(2) {
    font-size: 1.2rem;
  }
}
.header__item--sub {
  position: relative;
}
.header__item--sub::before {
  content: "";
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  bottom: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 10px 7.5px;
  border-color: transparent transparent #fff transparent;
  opacity: 0;
}
@media screen and (max-width: 1280px) {
  .header__item--sub::before {
    bottom: 0;
  }
}
.header__item.active::before {
  opacity: 1;
}
.header__item.active .header__sublist {
  pointer-events: visible;
  opacity: 1;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.header__item:hover .header__link {
  color: #fff;
}
.header__item:hover .header__link::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__gray-link {
  color: #727278;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 5px;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .header__gray-link {
    font-size: 1.2rem;
  }
}

.footer {
  padding: 40px 0 20px;
  text-align: center;
  position: relative;
  font-family: "brandon-grotesque", sans-serif;
}
.footer__logo {
  margin-bottom: 10px;
}
.footer__bg {
  border-top-right-radius: 50px;
  background-color: #F1F2F5;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
  right: 2%;
  top: 0;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .footer__container {
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .footer__container {
    padding: 0 10%;
    margin: initial;
  }
}
.footer__text {
  font-size: 18px;
  font-weight: 600;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 13px;
  }
}
.footer__icons-container {
  margin: 20px 0;
}
.footer__icons {
  margin: 0 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__icons:hover {
  opacity: 0.6;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
}
.footer__links--first {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__links--link {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .footer__links--link {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
}
@media screen and (max-width: 767px) {
  .footer__links--pc {
    display: none;
  }
}
.footer__links--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__links--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .footer__links-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
  }
}
.footer__link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 60px;
}
.footer__link {
  font-size: 18px;
  font-weight: 600;
}
.footer__link--first {
  padding-right: initial;
}
.footer__link--last {
  margin: 9px 0;
}
.footer__sublink {
  font-size: 14px;
  font-weight: 500;
  font-family: initial;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer__sublink {
    margin: 10px 0;
    letter-spacing: 0.1em;
  }
}
.footer__sublink--last {
  margin-left: 50px;
}
.footer__copyright-container {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__sp-container {
  text-align: initial;
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__sp-container {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer__sublink-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .footer__width-50 {
    width: 50%;
    margin: 5px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__width-100 {
    width: 100%;
    margin: 5px 0;
  }
}
.footer__subtext {
  position: absolute;
  left: 0;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer__subtext {
    position: initial;
    left: initial;
    line-height: 2.5em;
    margin: 40px 0 30px;
  }
}
.footer__subtext > a:not(:last-child) {
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .footer__subtext > a:not(:last-child) {
    margin-right: 0;
  }
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f1f2f5;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .navigation {
    padding: 90px 62.5px 53.1px;
    display: block;
  }
}
.navigation.active {
  opacity: 1;
  pointer-events: visible;
}
.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .navigation__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    padding-bottom: 37.3472px;
    border-bottom: 1px solid #00000b;
    margin-bottom: 50px;
  }
}
.navigation__block:not(:last-child) {
  margin-right: 63px;
}
@media screen and (max-width: 767px) {
  .navigation__block:not(:last-child) {
    margin: 0 0 31.24px;
  }
}
.navigation__item {
  border-top: 1px solid #00000b;
  padding-top: 30px;
  min-width: 189.5px;
}
@media screen and (max-width: 767px) {
  .navigation__item {
    padding-top: 0;
    min-width: unset;
    border-top: 0;
  }
}
.navigation__item:not(:last-child) {
  margin-bottom: 43px;
}
@media screen and (max-width: 767px) {
  .navigation__item:not(:last-child) {
    margin-bottom: 35.5px;
  }
}
.navigation__title {
  position: relative;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-size: 24px;
  display: block;
}
@media screen and (max-width: 767px) {
  .navigation__title {
    font-size: 20px;
    padding: 4.4px 0;
  }
}
.navigation__title > a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__title::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media screen and (max-width: 767px) {
  .navigation__title::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .navigation__title--has-sub {
    border-bottom: 1px solid #00000b;
  }
}
@media screen and (max-width: 767px) {
  .navigation__title--has-sub::before {
    display: block;
    width: 1px;
    height: 10px;
    border-radius: 1px;
    -webkit-transform-origin: unset;
            transform-origin: unset;
    -webkit-transform: unset;
            transform: unset;
    right: 8.5px;
    left: auto;
    top: auto;
    margin-bottom: -10px;
    bottom: 24px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .navigation__title--has-sub::after {
    content: "";
    position: absolute;
    width: 10px;
    right: 3.5px;
    margin-bottom: -1px;
    height: 1px;
    background: #00000b;
    border-radius: 1px;
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .navigation__title:hover {
    color: #00000b;
  }
}
.navigation__title:hover > a {
  color: #fff;
}
.navigation__title:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (max-width: 767px) {
  .navigation__title:hover::before {
    -webkit-transform: unset;
            transform: unset;
    -webkit-transform-origin: unset;
            transform-origin: unset;
  }
}
@media screen and (max-width: 767px) {
  .navigation__title.active::before {
    opacity: 0;
  }
}
.navigation__title-text {
  display: block;
}
@media screen and (max-width: 767px) {
  .navigation__title-text {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .navigation__sublist-container {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .navigation__sublist-container.active {
    max-height: 475.49px;
  }
}
.navigation__sublist {
  margin-top: 13px;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .navigation__sublist {
    margin-top: 30.19px;
    padding-left: 19px;
  }
}
.navigation__subitem {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .navigation__subitem {
    font-size: 14px;
  }
}
.navigation__subitem:not(:last-child) {
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .navigation__subitem:not(:last-child) {
    margin-bottom: 27.6716px;
  }
}
.navigation__subitem::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media screen and (max-width: 767px) {
  .navigation__subitem::before {
    display: none;
  }
}
.navigation__subitem:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .navigation__subitem:hover {
    color: #00000b;
  }
}
.navigation__subitem:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.top__news {
  position: relative;
  z-index: 1;
  margin: -55px auto 0;
  width: 1641px;
  max-width: 90%;
  background-color: #fff;
  border: 1px solid #dae1ea;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  padding: 52px 50px 47px;
}
@media screen and (max-width: 1600px) {
  .top__news {
    width: 1300px;
  }
}
@media screen and (max-width: 1367px) {
  .top__news {
    width: 1200px;
  }
}
@media screen and (max-width: 1024px) {
  .top__news {
    width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .top__news {
    margin: 0 5%;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    padding: 13.0812px 20px 20px;
  }
}
.top__news-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .top__news-container {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .top__news-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
.top__news-list {
  width: 75%;
}
@media screen and (max-width: 1280px) {
  .top__news-list {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  .top__news-list {
    width: 65%;
  }
}
@media screen and (max-width: 767px) {
  .top__news-list {
    width: 100%;
    margin-bottom: 12.98px;
  }
}
.top__news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.top__news-item:not(:last-child) {
  margin-bottom: 20px;
}
.top__news-item:hover {
  opacity: 0.7;
}
.top__news-item:hover .top__news-title {
  border-bottom: 1px solid #000;
}
.top__news-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top__news-info {
    gap: 10px;
  }
}
.top__news-text {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  min-width: 150px;
  white-space: break-spaces;
  word-break: break-word;
  margin-right: 20px;
}
@media screen and (max-width: 1280px) {
  .top__news-text {
    margin-right: 0;
    min-width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .top__news-text {
    font-size: 14px;
    margin-right: 0;
    min-width: 70px;
  }
}
.top__news-date {
  width: 100%;
  max-width: 90px;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2rem;
  color: #727278;
  margin-right: 80px;
}
@media screen and (max-width: 1280px) {
  .top__news-date {
    max-width: 100px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top__news-date {
    font-size: 13px;
  }
}
.top__news-title {
  font-size: 1.6rem;
  text-align: justify;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__news-title {
    width: 100%;
    font-size: 12px;
    margin-top: 4.4px;
  }
}
.top__service {
  position: relative;
  z-index: 1;
  margin: 151px auto 80px;
  padding: 0 3% 123px;
}
@media screen and (max-width: 767px) {
  .top__service {
    margin: 44px 0 0;
    padding: 0 5% 75px;
  }
}
.top__service::before {
  content: "";
  position: absolute;
  bottom: -172px;
  left: -392px;
  width: 790.78px;
  height: 695.14px;
  background-image: url("./src/img/top/triangle-bg.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__service::before {
    width: 351.305px;
    height: 309.415px;
    left: -204.385px;
    bottom: 54.23px;
  }
}
.top__service-container {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__service-container {
    margin-bottom: 34.76px;
  }
}
.top__works-container {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__works-container {
    margin: 85.31px 0 18.3436px;
  }
}
.top__service-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 2em;
  margin: 0 0 49px;
  width: 699px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .top__service-text {
    width: 100%;
    margin: 13.2px 0 74.36px;
    font-size: 13px;
  }
}
.top__service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .top__service-list {
    display: block;
    width: 112.5%;
  }
}
.top__service-item {
  position: relative;
  width: 23.85%;
  height: 333.88px;
  border: 1px solid #dae1ea;
  -webkit-box-shadow: 0 20px 20px rgba(7, 30, 29, 0.1);
          box-shadow: 0 20px 20px rgba(7, 30, 29, 0.1);
  padding-top: 20px;
  margin-bottom: 23px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: block;
}
@media screen and (max-width: 1280px) {
  .top__service-item {
    width: 32%;
  }
}
@media screen and (max-width: 767px) {
  .top__service-item {
    width: 300px;
    height: 300px;
    margin: 0 12px 0 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 360px) {
  .top__service-item {
    width: 275px;
  }
}
.top__service-item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top__service-item:hover {
    -webkit-transform: unset;
            transform: unset;
  }
}
.top__service-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: #00000b;
  color: #fff;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 20px;
  border-bottom-right-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__service-number {
    width: 53.89px;
    height: 53.89px;
    font-size: 17.575px;
  }
}
.top__service-icon-container {
  height: 70px;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .top__service-icon-container {
    height: 62.875px;
    margin: 54.5px 0 34.76px;
  }
}
.top__service-icon {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top__service-icon {
    width: 62.875px;
    height: 62.875px;
  }
}
.top__service-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .top__service-title {
    font-size: 16.65px;
    margin-bottom: 11.44px;
  }
}
.top__service-item-text {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__service-item-text {
    font-size: 12.95px;
  }
}
.top__service-button {
  margin: 50px 0 0 592px;
}
@media screen and (max-width: 767px) {
  .top__service-button {
    margin: 0;
  }
}
.top__works {
  position: relative;
  padding: 0 3% 123px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top__works {
    padding: 0 5% 75px;
  }
}
.top__works::before {
  content: "";
  position: absolute;
  bottom: 25px;
  right: -363px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
  width: 1029.03px;
  height: 901.48px;
  background-image: url("./src/img/top/triangle-bg.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .top__works::before {
    width: 412.205px;
    height: 362.135px;
    bottom: 35.4244px;
    right: -217.1px;
  }
}
.top__works--member {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .top__works--member {
    margin-bottom: 50px;
  }
}
.top__works--member::before {
  content: none;
}
@media screen and (max-width: 767px) {
  .top__works--member .top__works-container {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__works--member .top__works-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .top__works--member .top__works-item {
    width: 100%;
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .top__works--member .top__works-image-container {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .top__works--member .top__works-date {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .top__works--member .top__works-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top__works--member .top__works-category {
    font-size: 14px;
  }
}
.top__works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .top__works-list {
    display: block;
    width: 112.5%;
  }
}
.top__works-image-container {
  width: 100%;
  height: 235.24px;
  -webkit-box-shadow: 0 10px 10px rgba(32, 33, 31, 0.15);
          box-shadow: 0 10px 10px rgba(32, 33, 31, 0.15);
  margin-bottom: 23px;
  overflow: hidden;
  border: 1px solid #dae1ea;
}
@media screen and (max-width: 767px) {
  .top__works-image-container {
    height: 131.69px;
    margin-bottom: 17.2436px;
  }
}
.top__works-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -o-object-position: top center;
     object-position: top center;
}
.top__works-item {
  width: 31.95%;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .top__works-item {
    width: 250px;
    margin-bottom: 0;
    margin-right: 24.4px;
  }
}
.top__works-item:not(:nth-child(3n)) {
  margin-right: 2%;
}
@media screen and (max-width: 767px) {
  .top__works-item:not(:nth-child(3n)) {
    margin-right: 24.4px;
  }
}
.top__works-item:hover .top__works-image {
  opacity: 0.6;
}
.top__works-header {
  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: 767px) {
  .top__works-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__works-title {
  font-size: 20px;
  line-height: 1.5em;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .top__works-title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 12px;
    margin: 8.8px 0;
  }
}
.top__works-date {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top__works-date {
    font-size: 10px;
  }
}
.top__works-categories {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .top__works-categories {
    margin: 0;
    font-size: 10px;
  }
}
.top__works-category {
  display: inline-block;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .top__works-category {
    margin-right: 17.5px;
  }
}
.top__voice {
  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;
  height: 100%;
  width: 100%;
  margin: 80px 0;
  padding: 0 3%;
}
@media screen and (max-width: 1600px) {
  .top__voice {
    max-width: 1400px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 1300px;
    margin: 80px auto;
    padding: 0;
  }
}
@media screen and (max-width: 1600px) and (max-width: 767px) {
  .top__voice {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1440px) {
  .top__voice {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .top__voice {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .top__voice {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .top__voice {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .top__voice {
    max-width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    padding: 0 5%;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.top__voice * {
  -webkit-tap-highlight-color: transparent;
}
.top__voice-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__voice-wrapper {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .top__voice-wrapper {
    padding: 0;
  }
}
@media screen and (max-width: 981px) {
  .top__voice-wrapper {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__voice-card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px auto 0;
  gap: 50px 20px;
}
@media screen and (max-width: 981px) {
  .top__voice-card-container {
    width: 100%;
    position: relative;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .top__voice-card-container {
    cursor: pointer;
    display: unset;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
@media screen and (max-width: 360px) {
  .top__voice-card-container {
    width: 275px;
  }
}
.top__voice-progress-container {
  display: none;
}
@media screen and (max-width: 767px) {
  .top__voice-progress-container {
    padding-left: 120px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
    position: absolute;
    top: -52px;
    left: 0;
    right: 0;
    font-family: "brandon-grotesque", sans-serif;
    font-size: 0.9rem;
    color: #000;
  }
}
@media screen and (max-width: 767px) {
  .top__voice-progress-container--voice {
    top: 86px;
    padding-left: 135px;
  }
}
@media screen and (max-width: 767px) {
  .top__voice-progress-container--blog {
    top: 86px;
  }
}
.top__voice-card {
  top: 0;
  width: 31%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__voice-card {
    width: 100%;
    margin-right: 20px;
  }
}
.top__voice-card:not(:last-child) {
  margin-right: 3.5%;
}
@media screen and (max-width: 1280px) {
  .top__voice-card:not(:last-child) {
    margin-right: 0.5%;
  }
}
@media screen and (max-width: 767px) {
  .top__voice-card:not(:last-child) {
    margin-right: 0;
  }
}
.top__voice-card span.bold {
  border-bottom: 1px solid transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__voice-card:hover {
  opacity: 0.7;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.top__voice-card:hover span.bold {
  border-bottom: 1px solid #000;
}
.top__voice-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1280px) {
  .top__voice-profile {
    gap: 20px;
  }
}
.top__voice-img-container {
  height: 150px;
  min-width: 150px;
  max-width: 150px;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .top__voice-img-container {
    height: 120px;
    min-width: 120px;
    max-width: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .top__voice-img-container {
    height: 105px;
    min-width: 105px;
    max-width: 105px;
  }
}
.top__voice-profile-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top__voice-profile-text {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .top__voice-profile-text {
    font-size: 1.1rem;
  }
}
.top__voice-profile-text .bold {
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .top__voice-profile-text .bold {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }
}
.top__voice-name-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .top__voice-name-container {
    gap: 0;
  }
}
.top__voice-company-name {
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .top__voice-company-name {
    font-size: 1.3rem;
  }
}
.top__voice-name {
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .top__voice-name {
    font-size: 1rem;
  }
}
.top__voice-button > * {
  margin: 80px auto;
}
@media screen and (max-width: 767px) {
  .top__voice-button > * {
    margin: 35px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .top__voice .section__container {
    margin: 0 0 92px;
    width: 300px;
  }
}
.top__about {
  margin: 40px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__about {
    margin: 45px 0 60px;
  }
}
.top__about-wrapper {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1920px;
}
@media screen and (max-width: 767px) {
  .top__about-wrapper {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .top__about-wrapper {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 200px 1fr;
    padding: 0 5%;
  }
}
.top__about-img-container {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .top__about-img-container {
    max-height: 463px;
  }
}
@media screen and (max-width: 767px) {
  .top__about-img-container {
    left: -33px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.top__about-img-wrapper--01 {
  height: 720px;
  width: 720px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .top__about-img-wrapper--01 {
    width: 500px;
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .top__about-img-wrapper--01 {
    margin: 0;
    top: 67px;
    left: 0;
    width: 200px;
    height: 200px;
  }
}
.top__about-img-wrapper--01 img {
  -o-object-position: 100% 20%;
     object-position: 100% 20%;
  height: 100%;
  width: 100%;
  border-top-right-radius: 10%;
  border-bottom-right-radius: 10%;
  border-bottom: 1px solid #fff;
}
.top__about-img-wrapper--02 {
  position: absolute;
  top: 446px;
  right: 0;
  width: 300px;
  height: 337px;
  overflow: hidden;
}
@media screen and (max-width: 1440px) {
  .top__about-img-wrapper--02 {
    top: unset;
    bottom: -40%;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__about-img-wrapper--02 {
    top: 15%;
    bottom: unset;
    width: 125px;
    height: 140px;
    right: -37%;
  }
}
.top__about-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.top__about-img-fade {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(rgba(0, 212, 255, 0)));
  background: linear-gradient(0deg, #ffffff, rgba(0, 212, 255, 0) 100%);
}
@media screen and (max-width: 767px) {
  .top__about-img-fade {
    opacity: 1;
  }
}
.top__about-text {
  width: 100%;
  max-width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 1600px) {
  .top__about-text {
    width: 100%;
    max-width: 590px;
  }
}
@media screen and (max-width: 1440px) {
  .top__about-text {
    max-width: 550px;
  }
}
@media screen and (max-width: 1367px) {
  .top__about-text {
    max-width: 520px;
  }
}
@media screen and (max-width: 1280px) {
  .top__about-text {
    max-width: 450px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .top__about-text {
    max-width: 390px;
  }
}
@media screen and (max-width: 767px) {
  .top__about-text {
    max-width: unset;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .top__about-text--red {
    font-size: 1.1rem;
  }
}
.top__about-text-container {
  margin: 153px 0 68px 130px;
  padding-right: 20px;
  width: 633px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .top__about-text-container {
    margin: 153px auto 88px 60px;
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .top__about-text-container {
    margin-top: 100px;
  }
}
@media screen and (max-width: 981px) {
  .top__about-text-container {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top__about-text-container {
    padding: 0;
    justify-self: left;
    margin: 0;
  }
}
@media screen and (max-width: 1440px) {
  .top__about-text-container .section__container .section__title {
    font-size: 3.2rem;
  }
  .top__about-text-container .section__container .section__subtitle {
    font-size: 1.3rem;
  }
}
.top__company {
  margin: 120px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 3%;
}
@media screen and (max-width: 1367px) {
  .top__company {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top__company {
    margin: 0;
    padding: 0 5%;
  }
}
.top__company-wrapper {
  margin: 120px 20px 100px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__company-wrapper {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .top__company-wrapper {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .top__company-wrapper {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .top__company-wrapper {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .top__company-wrapper {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .top__company-wrapper {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .top__company-wrapper {
    padding: 0;
    margin-bottom: 60px;
  }
}
.top__company-text-container {
  width: 100%;
}
.top__company-text {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top__company-text {
    font-size: 1.3rem;
  }
}
.top__company-image-container {
  gap: 10px;
  margin: 53px auto 0;
  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: 767px) {
  .top__company-image-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__company-image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 670px;
  max-height: 360px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__company-image-wrapper {
    max-width: unset;
    max-height: 160px;
  }
}
.top__company-image-wrapper:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__company-image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 360px;
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
  position: relative;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .top__company-image {
    height: 100%;
  }
}
.top__company-image-text {
  position: absolute;
  top: 20px;
  left: 20px;
}
.top__company-title-container {
  height: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 15px;
  position: relative;
}
.top__company-title-background {
  background: #fff;
  position: absolute;
  width: 100%;
  height: 75%;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.top__company-image-title {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
  font-size: 5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__company-image-title {
    font-size: 2.5rem;
  }
}
.top__company-image-subtitle {
  font-weight: 500;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__company-image-subtitle {
    font-size: 1.3rem;
  }
}
.top__company-button {
  margin: 80px auto 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__company-button {
    margin-top: 35px;
  }
}
.top__sdg {
  height: 660px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 3%;
}
@media screen and (max-width: 1440px) {
  .top__sdg {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .top__sdg {
    height: unset;
    padding: 30px 0 80px 5%;
  }
}
.top__sdg-background {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__sdg-background {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
.top__sdg-background-left {
  position: relative;
  left: -25px;
  height: 100%;
  width: calc(100% + 50px);
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .top__sdg-background-left {
    right: unset;
  }
}
.top__sdg-background-right {
  height: 100%;
  width: 100%;
  position: relative;
}
.top__sdg-wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__sdg-wrapper {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .top__sdg-wrapper {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1367px) {
  .top__sdg-wrapper {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .top__sdg-wrapper {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .top__sdg-wrapper {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .top__sdg-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 0;
  }
}
.top__sdg-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.top__sdg-container--left {
  background-color: #000;
}
.top__sdg-container--right {
  position: relative;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .top__sdg-container--right {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
@media screen and (max-width: 360px) {
  .top__sdg-container--right {
    left: -28px;
  }
}
.top__sdg-text-container {
  width: 100%;
  max-width: 543px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2em;
  color: #f1f2f5;
  margin-top: 18px;
}
@media screen and (max-width: 1440px) {
  .top__sdg-text-container {
    max-width: 393px;
  }
}
@media screen and (max-width: 767px) {
  .top__sdg-text-container {
    max-width: 298px;
  }
}
.top__sdg-text {
  width: 100%;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 1440px) {
  .top__sdg-text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .top__sdg-text {
    line-height: 1.7307692308em;
  }
}
.top__sdg-button {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .top__sdg-button {
    margin: 35px 0;
    max-width: 300px;
  }
}
.top__sdg-goals-container {
  background: #fff;
  position: absolute;
  height: 500px;
  width: 1035px;
  border-radius: 10px;
  overflow: hidden;
  gap: 20px;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1440px) {
  .top__sdg-goals-container {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .top__sdg-goals-container {
    height: 249px;
  }
}
.top__sdg-goals-container > div {
  margin: 0 auto 0 105px;
}
@media screen and (max-width: 1600px) {
  .top__sdg-goals-container > div {
    margin: 0 auto 0 55px;
  }
}
@media screen and (max-width: 767px) {
  .top__sdg-goals-container > div {
    margin: 0 auto 0 20.5px;
  }
}
.top__sdg-goals-background {
  position: absolute;
  top: 0;
  left: -10px;
  height: 100%;
  width: 1080px;
  background-color: #000;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  z-index: -1;
}
.top__sdg-goals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 54px;
}
@media screen and (max-width: 1440px) {
  .top__sdg-goals {
    width: 182.5px;
  }
}
.top__sdg-goals img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  justify-self: flex-start;
}
.top__sdg-tiles {
  display: grid;
  grid-template-columns: repeat(6, 90px);
  grid-template-rows: repeat(3, 90px);
  gap: 23px;
}
@media screen and (max-width: 1600px) {
  .top__sdg-tiles {
    gap: 20px;
    grid-template-columns: repeat(6, 75px);
    grid-template-rows: repeat(3, 75px);
  }
}
@media screen and (max-width: 1367px) {
  .top__sdg-tiles {
    grid-template-columns: repeat(6, 70px);
    grid-template-rows: repeat(3, 70px);
  }
}
@media screen and (max-width: 1280px) {
  .top__sdg-tiles {
    gap: 15px;
    grid-template-columns: repeat(6, 65px);
    grid-template-rows: repeat(3, 65px);
  }
}
@media screen and (max-width: 1024px) {
  .top__sdg-tiles {
    grid-template-columns: repeat(6, 50px);
    grid-template-rows: repeat(3, 50px);
  }
}
@media screen and (max-width: 767px) {
  .top__sdg-tiles {
    grid-template-columns: repeat(6, 38.5px);
    grid-template-rows: repeat(3, 38.5px);
  }
}
.top__sdg-tiles img {
  width: 100%;
  height: 100%;
}
.top__member {
  padding: 100px 3%;
  position: relative;
}
@media screen and (max-width: 1367px) {
  .top__member {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__member {
    padding: 50px 5% 0;
  }
}
.top__member-square-bg {
  background: #f1f2f5;
  width: 50%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}
@media screen and (max-width: 767px) {
  .top__member-square-bg {
    width: 60%;
    height: 65%;
  }
}
.top__member-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 420px;
  max-width: 1400px;
}
@media screen and (max-width: 1600px) {
  .top__member-container {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1367px) {
  .top__member-container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .top__member-container {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .top__member-container {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .top__member-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: initial;
    max-width: 100%;
    padding: 0;
    height: auto;
  }
}
.top__member-title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__member-image {
  height: 100%;
  width: 57%;
  margin-right: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
@media screen and (max-width: 1024px) {
  .top__member-image {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .top__member-image {
    width: 100%;
    margin-right: initial;
  }
}
.top__member-title {
  font-size: 65px;
  margin-right: 40px;
  font-weight: 500;
}
.top__member-title-jp {
  font-size: 25px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top__member-text-container {
    margin-top: 50px;
  }
}
.top__member-text {
  font-size: 18px;
  margin-bottom: 80px;
  font-weight: 500;
}
@media screen and (max-width: 1440px) {
  .top__member-text {
    margin-bottom: 0;
    font-size: 1.3rem;
  }
}
.top__member-button {
  margin: 80px auto 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top__member-button {
    margin-top: 40px;
    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;
  }
}

.sns {
  position: fixed;
  z-index: 1000;
  top: 354px;
  right: 45px;
}
@media screen and (max-width: 1440px) {
  .sns {
    right: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .sns {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .sns {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
  }
}
.sns__link {
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .sns__link {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sns__link {
    width: 30px;
    height: 30px;
  }
}
.sns__link:not(:last-child) {
  margin-bottom: 39px;
}
@media screen and (max-width: 1280px) {
  .sns__link:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .sns__link:not(:last-child) {
    margin: 0 20px 0 0;
  }
}
.sns__link:hover {
  opacity: 0.6;
}
.sns__icon {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1280px) {
  .sns__icon {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sns__icon {
    width: 30px;
    height: 30px;
  }
}
.sns__solution-item {
  position: relative;
  width: 50%;
  height: 490px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sns__solution-item {
    width: 100%;
    height: 200px;
    padding: 0 10%;
  }
}
.sns__solution-item * {
  z-index: 1;
}
.sns__solution-image {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sns__solution-image::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
}
.sns__solution-image--1 {
  background-image: url("./src/img/sns/solution1.png");
}
.sns__solution-image--2 {
  background-image: url("./src/img/sns/solution2.png");
}
.sns__solution-image--3 {
  background-image: url("./src/img/sns/solution3.png");
}
.sns__section {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sns__section {
    margin: 50px 0;
  }
}
.sns__description {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2em;
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .sns__description {
    margin: 20px 0 40px;
  }
}
.sns__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .sns__media {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .sns__media {
    max-width: 1300px;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 1440px) {
  .sns__media {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .sns__media {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .sns__media {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .sns__media {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .sns__media {
    padding: 0 5%;
    max-width: 100%;
    margin-bottom: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sns__media-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 5px;
  font-weight: 500;
  font-size: 1.6rem;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  .sns__media-text {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .sns__media-text {
    white-space: normal;
    margin: 0 0 40px;
  }
}
.sns__media-tile-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .sns__media-tile-container {
    min-width: 650px;
  }
}
@media screen and (max-width: 767px) {
  .sns__media-tile-container {
    min-width: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sns__media-tile {
  position: relative;
  height: 250px;
  width: 25%;
  max-width: 250px;
  border: 2px solid #e0e2e9;
  -webkit-box-shadow: 0px 15px 35px -5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 15px 35px -5px rgba(0, 0, 0, 0.15);
  padding: 73px 0 43px;
  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;
  -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;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sns__media-tile {
    padding: 10px 0 20px;
    width: 100%;
    height: auto;
    max-width: none;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
.sns__media-tile img {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .sns__media-tile img {
    width: 80px;
  }
}
.sns__media-tile:hover img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.sns__media-tile:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .sns__media-tile:not(:last-child) {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .sns__media-tile:not(:last-child) {
    margin: 0 0 20px;
  }
}
.sns__tile-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: #000;
  color: #fff;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 20px;
  font-weight: 700;
  border-bottom-right-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .sns__tile-number {
    width: 53.89px;
    height: 53.89px;
    font-size: 17.575px;
  }
}
.sns__tile-text {
  font-weight: 700;
  font-size: 2rem;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.sns__features {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .sns__features {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .sns__features {
    max-width: 1300px;
    margin: 100px auto 0;
  }
}
@media screen and (max-width: 1440px) {
  .sns__features {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .sns__features {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .sns__features {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .sns__features {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .sns__features {
    padding: 0 5%;
    max-width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .sns__features > .section__container {
    padding: 0;
  }
}
.sns__item-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 77px;
}
@media screen and (max-width: 767px) {
  .sns__item-container {
    row-gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sns__item {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .sns__item {
    width: 100%;
  }
}
.sns__item-image {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sns__item-title {
  position: relative;
  font-weight: 700;
  font-size: 2rem;
  margin: 60px 0 30px;
  padding-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .sns__item-title {
    font-size: 2.4rem;
    margin: 40px 0;
    padding-bottom: 13px;
  }
}
.sns__item-title::before {
  content: "";
  height: 3px;
  width: 100%;
  border-radius: 999vw;
  background: #e3e3e4;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sns__item-title::after {
  content: "";
  height: 3px;
  width: 104px;
  border-radius: 999vw;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .sns__item-title::after {
    width: 26%;
  }
}
.sns__item-title--facebook::after {
  background: #1b5def;
}
.sns__item-title--instagram::after {
  background: #d83075;
}
.sns__item-title--twitter::after {
  background: #1daeef;
}
.sns__item-title--line::after {
  background: #4cc764;
}
.sns__item-text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2em;
}
.sns__item-list {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2em;
  counter-reset: upward;
  margin-top: 30px;
}
.sns__item-list span {
  display: block;
  position: relative;
  padding-left: 20px;
}
.sns__item-list span:before {
  position: absolute;
  left: 0;
  counter-increment: upward;
  content: counter(upward) " "; /*Instead of "." */
}
.sns__price {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sns__price {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .sns__price {
    margin: 0 auto;
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .sns__price {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .sns__price {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .sns__price {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .sns__price {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .sns__price {
    padding: 0 5%;
    max-width: 100%;
  }
}
.sns__price-item {
  height: 264px;
  width: 24%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding-top: 70px;
  -webkit-box-shadow: 0px 15px 35px -5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 15px 35px -5px rgba(0, 0, 0, 0.15);
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .sns__price-item {
    margin: 0;
    width: 100%;
    max-width: 420px;
  }
}
.sns__price-item:hover {
  -webkit-transform: scale(1.05) translateZ(0);
          transform: scale(1.05) translateZ(0);
}
.sns__price-title {
  color: #fff;
  height: 70px;
  width: 100%;
  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;
  font-weight: 700;
  font-size: 2rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .sns__price-title {
    font-size: 2rem;
  }
}
.sns__price-title--facebook {
  background: #1b5def;
}
.sns__price-title--instagram {
  background: #d83075;
}
.sns__price-title--twitter {
  background: #1daeef;
}
.sns__price-title--line {
  background: #4cc764;
}
.sns__price-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  margin-left: 13%;
}
@media screen and (max-width: 1367px) {
  .sns__price-line {
    margin-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .sns__price-line {
    margin-left: 10%;
  }
}
.sns__price-line:not(:last-child) {
  margin-bottom: 30px;
}
.sns__price-line > span:nth-child(1) {
  font-size: 1.6rem;
  width: 100px;
  line-height: 1;
}
@media screen and (max-width: 1367px) {
  .sns__price-line > span:nth-child(1) {
    font-size: 1.4rem;
    width: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .sns__price-line > span:nth-child(1) {
    width: 65px;
    font-size: 1.2rem;
  }
}
.sns__price-line > span:last-child {
  font-size: 1.8rem;
  line-height: 1.2;
}
@media screen and (max-width: 1367px) {
  .sns__price-line > span:last-child {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .sns__price-line > span:last-child {
    font-size: 1.4rem;
  }
}

.mv {
  position: relative;
  height: 800px;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .mv {
    height: 700px;
  }
}
@media screen and (max-width: 1280px) {
  .mv {
    height: 600px;
  }
}
@media screen and (max-width: 1024px) {
  .mv {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    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;
    height: 390px;
  }
}
.mv::before {
  content: "";
  position: absolute;
  bottom: -405px;
  right: -28px;
  border-radius: 40px;
  width: 748px;
  height: 748px;
  z-index: -1;
  background-color: #f1f2f5;
}
@media screen and (max-width: 767px) {
  .mv::before {
    bottom: -379.84px;
    right: -117.16px;
    width: 234.32px;
    height: 424.47px;
    border-radius: 20px;
  }
}
.mv__content {
  position: relative;
  z-index: 1;
  padding-top: 240px;
  width: 1641px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .mv__content {
    width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .mv__content {
    padding-top: 210px;
  }
}
@media screen and (max-width: 1367px) {
  .mv__content {
    width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .mv__content {
    padding-top: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .mv__content {
    width: 850px;
    padding-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .mv__content {
    max-width: 100%;
    padding: 0 5%;
    margin-top: 110px;
  }
}
.mv__title {
  font-size: 70px;
  line-height: 1.7142857143em;
  margin-bottom: 1px;
}
@media screen and (max-width: 1440px) {
  .mv__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .mv__title {
    font-size: 5rem;
    line-height: 1.75em;
  }
}
@media screen and (max-width: 1024px) {
  .mv__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 28px;
    line-height: 1.5em;
    margin-bottom: 30.7472px;
  }
}
.mv__subcontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .mv__subcontent {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.mv__subtitle {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 1px solid #00000b;
  margin: 26px 5px 0 0;
}
@media screen and (max-width: 1024px) {
  .mv__subtitle {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__subtitle {
    font-size: 13px;
    margin: 0 2px 10px 0;
    line-height: 1.75em;
  }
}
.mv__background {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 73.57%;
}
@media screen and (max-width: 767px) {
  .mv__background {
    width: 90%;
    top: 65px;
    height: 220px;
  }
}
.mv__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .mv__image {
    -o-object-position: left -26px bottom 0;
       object-position: left -26px bottom 0;
  }
}
.mv__scroll {
  position: absolute;
  bottom: 0;
  right: 55px;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 14px;
  padding-left: 5px;
  height: 196.5px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (max-width: 767px) {
  .mv__scroll {
    display: none;
  }
}
.mv__scroll::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: #00000b;
  -webkit-animation: scroll 2s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scroll 2s cubic-bezier(1, 0, 0, 1) infinite;
}

.member {
  padding: 0 3%;
}
@media screen and (max-width: 767px) {
  .member {
    padding: 0 5%;
  }
}
.member__profile {
  border: 2px solid #727278;
  width: 100%;
  max-width: 1550px;
  margin: 360px auto 0;
  padding: 0 70px 40px;
  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: 1600px) {
  .member__profile {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .member__profile {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .member__profile {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .member__profile {
    max-width: 1000px;
    margin-top: 250px;
    padding: 0 35px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .member__profile {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .member__profile {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    margin-top: 80px;
    padding: 0 20px 40px;
  }
}
.member__profile-column:nth-child(1) {
  width: 100%;
  max-width: 550px;
}
@media screen and (max-width: 1280px) {
  .member__profile-column:nth-child(1) {
    max-width: 45% !important;
  }
}
@media screen and (max-width: 767px) {
  .member__profile-column:nth-child(1) {
    max-width: 100% !important;
  }
}
.member__profile-column:nth-child(2) {
  counter-reset: profile-question;
  width: 100%;
  max-width: 726px;
  padding-top: 40px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .member__profile-column:nth-child(2) {
    max-width: 49%;
  }
}
@media screen and (max-width: 1440px) {
  .member__profile-column:nth-child(2) {
    max-width: 47%;
  }
}
@media screen and (max-width: 1367px) {
  .member__profile-column:nth-child(2) {
    max-width: 45%;
  }
}
@media screen and (max-width: 1280px) {
  .member__profile-column:nth-child(2) {
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .member__profile-column:nth-child(2) {
    max-width: 100%;
    padding: 0;
    position: static;
  }
}
.member__profile-picture-container {
  height: 360px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .member__profile-picture-container {
    height: auto;
    margin-top: 30px;
  }
}
.member__profile-picture {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top-right-radius: 74px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .member__profile-picture {
    position: relative;
  }
}
.member__profile-picture img {
  width: 100%;
  aspect-ratio: 550/624;
  -o-object-fit: contain;
     object-fit: contain;
}
.member__profile-text {
  margin-top: 40px;
}
.member__profile-title {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.member__profile-name {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .member__profile-name {
    font-size: 2.5rem;
  }
}
.member__profile-name--en {
  color: #727278;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 6rem;
  line-height: 0.78em;
  background-color: #fff;
  position: absolute;
  bottom: 100.5%;
  left: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 1367px) {
  .member__profile-name--en {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 1280px) {
  .member__profile-name--en {
    font-size: 4.6rem;
    line-height: 1em;
  }
}
@media screen and (max-width: 767px) {
  .member__profile-name--en {
    font-size: 3rem;
    left: 10px;
    bottom: 99%;
  }
}
.member__profile-additional {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.member__profile-nickname, .member__profile-birthday, .member__profile-birthplace {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .member__profile-nickname, .member__profile-birthday, .member__profile-birthplace {
    font-size: 1.6rem;
  }
}
.member__profile-nickname span:nth-child(1), .member__profile-birthday span:nth-child(1), .member__profile-birthplace span:nth-child(1) {
  font-weight: 700;
}
.member__profile-message {
  position: absolute;
  top: -260px;
  width: 100%;
  height: 200px;
  max-width: 820px;
}
@media screen and (max-width: 1280px) {
  .member__profile-message {
    z-index: 10;
    top: -200px;
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .member__profile-message {
    width: 100%;
    height: auto;
    margin-top: 15px;
    position: relative;
    top: unset;
  }
}
.member__profile-message img {
  width: 100%;
  height: 100%;
}
.member__profile-question-title {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.04em;
  height: 84px;
  padding-left: 35px;
  border-bottom: 2px solid #b01e2d;
  position: relative;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.member__profile-question-title::after, .member__profile-question-title::before {
  color: #727278;
  position: absolute;
  font-weight: 700;
  font-family: "brandon-grotesque", sans-serif;
  position: absolute;
  opacity: 0.4;
}
.member__profile-question-title::before {
  content: "Q";
  font-size: 7rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .member__profile-question-title::before {
    font-size: 5rem;
  }
}
.member__profile-question-title::after {
  counter-increment: profile-question;
  content: "" counter(profile-question);
  font-size: 5rem;
  left: 60px;
}
.member__profile-answer {
  padding-top: 20px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.125em;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media screen and (max-width: 767px) {
  .member__profile-answer {
    line-height: normal;
  }
}
.member__profile-answer span:nth-child(1) {
  display: block;
  font-weight: 700;
  margin-bottom: 7px;
}
.member__favorites {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  .member__favorites {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .member__favorites {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .member__favorites {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .member__favorites {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .member__favorites {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .member__favorites {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .member__favorites {
    padding: 0;
    max-width: 100%;
    margin-top: 50px;
  }
}
.member__favorites-item-container {
  width: 100%;
  margin-top: 45px;
  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: 767px) {
  .member__favorites-item-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
  }
}
.member__favorites-item {
  width: 25.85%;
}
@media screen and (max-width: 1280px) {
  .member__favorites-item {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .member__favorites-item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.member__favorites-item:nth-child(3n+2) {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .member__favorites-item:nth-child(3n+2) {
    margin-top: 0;
  }
}
.member__favorites-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 7px;
}
@media screen and (max-width: 767px) {
  .member__favorites-image {
    height: 320px;
  }
}
.member__favorites-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.member__favorites-title {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .member__favorites-title {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 10px;
  }
}
.member__favorites-description {
  font-weight: 500;
  font-size: 1.6rem;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .member__favorites-description {
    font-size: 1.4rem;
    line-height: normal;
  }
}
.member__list {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .member__list {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .member__list {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .member__list {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .member__list {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .member__list {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .member__list {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .member__list {
    max-width: 100%;
    padding: 0;
    gap: 50px;
  }
}
.member__list-item {
  width: 32.146%;
  height: 510px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1280px) {
  .member__list-item {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .member__list-item {
    width: 100%;
    height: 400px;
  }
}
.member__list-item:not(:nth-child(3n+3)) {
  margin-right: 1.78%;
}
@media screen and (max-width: 767px) {
  .member__list-item:not(:nth-child(3n+3)) {
    margin-right: 0;
  }
}
.member__list-item:nth-child(3n+2) {
  margin-top: 80px;
}
@media screen and (max-width: 1280px) {
  .member__list-item:nth-child(3n+2) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .member__list-item:nth-child(3n+2) {
    margin: 0;
  }
}
.member__list-item:nth-child(3n+3) {
  margin-top: 160px;
}
@media screen and (max-width: 1280px) {
  .member__list-item:nth-child(3n+3) {
    margin-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .member__list-item:nth-child(3n+3) {
    margin: 0;
  }
}
.member__list-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.member__list-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-top-right-radius: 70px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.member__list-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.member__list-text {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  padding: 20px 24px 0;
}
@media screen and (max-width: 1280px) {
  .member__list-text {
    padding: 20px 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .member__list-text {
    padding: 20px 20px 0;
  }
}
.member__list-name {
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.member__list-jp {
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
}
.member__list-en {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.member__list-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 5px 0 12px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1280px) {
  .member__list-title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .member__button {
    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;
    height: 50px;
    padding: 0 25px;
    max-width: 200px;
    font-size: 1.4rem;
    margin-top: 50px;
  }
}
.member__button-wrap {
  width: 100%;
  margin: 0 auto 100px;
  max-width: 1120px;
  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: 1280px) {
  .member__button-wrap {
    max-width: 1000px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .member__button-wrap {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .member__button-wrap {
    max-width: 100%;
    gap: 20px;
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.member__btn {
  position: relative;
  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: 47.5%;
  height: 70px;
  max-width: 530px;
  border-radius: 35px;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
  font: 700 2.4rem "brandon-grotesque", sans-serif;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .member__btn {
    width: 100%;
    height: 50px;
    font-size: 1.6rem;
  }
}
.member__btn::before {
  content: "";
  width: 25px;
  height: 10px;
  background: url("./src/img/icons/ic-arrow-down-gray.svg") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .member__btn::before {
    width: 16px;
    height: 6px;
    right: 25px;
  }
}
.member__btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.member__heading {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 60px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .member__heading {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .member__heading {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .member__heading {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .member__heading {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .member__heading {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .member__heading {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .member__heading {
    padding: 0;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.member__heading-title {
  font: 700 4.8rem "brandon-grotesque", sans-serif;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .member__heading-title {
    font-size: 3rem;
    padding-bottom: 8px;
  }
}
.member__partition {
  z-index: -1;
  width: 100%;
  height: 120px;
  margin-top: -60px;
}

.company__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 60px;
  max-width: 1400px;
}
@media screen and (max-width: 1600px) {
  .company__header {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .company__header {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .company__header {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .company__header {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .company__header {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .company__header {
    padding: 0 5%;
    max-width: 100%;
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.company__header-title {
  font-weight: 700;
}
.company__header-title--en {
  font-size: 3.6rem;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .company__header-title--en {
    font-size: 2.8rem;
  }
}
.company__header-title--jap {
  font-size: 2rem;
  font-family: "brandon-grotesque", sans-serif;
}
@media screen and (max-width: 767px) {
  .company__header-title--jap {
    font-size: 1.3rem;
  }
}
.company__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 1600px) {
  .company__about {
    max-width: 1420px;
  }
}
@media screen and (max-width: 1440px) {
  .company__about {
    max-width: 1350px;
  }
}
@media screen and (max-width: 1367px) {
  .company__about {
    max-width: 1280px;
  }
}
@media screen and (max-width: 1280px) {
  .company__about {
    max-width: 1100px;
    margin-bottom: 60px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .company__about {
    max-width: 920px;
  }
}
@media screen and (max-width: 767px) {
  .company__about {
    max-width: 100%;
    padding: 0 5%;
    margin-bottom: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company__about-image {
  width: 55%;
  height: auto;
  margin-left: -5%;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 1280px) {
  .company__about-image {
    height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .company__about-image {
    width: 100%;
    height: auto;
    margin: 0 0 30px 0;
    border-radius: 10px;
  }
}
.company__about-text {
  width: 45%;
  margin-left: 60px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .company__about-text {
    width: 46%;
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .company__about-text {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
.company__about-title {
  margin-bottom: 60px;
}
@media screen and (max-width: 1600px) {
  .company__about-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .company__about-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .company__about-title {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .company__about-title {
    width: 100%;
    height: auto;
  }
}
.company__about-content {
  max-width: 600px;
}
.company__about-content > p:first-child {
  margin-bottom: 70px;
}
@media screen and (max-width: 1600px) {
  .company__about-content > p:first-child {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .company__about-content > p:first-child {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .company__about-content > p:first-child {
    margin-bottom: 15px;
  }
}
.company__about-content > p:nth-child(3) {
  margin-bottom: 60px;
}
@media screen and (max-width: 1600px) {
  .company__about-content > p:nth-child(3) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .company__about-content > p:nth-child(3) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .company__about-content > p:nth-child(3) {
    margin-bottom: 15px;
  }
}
.company__about-para {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 1024px) {
  .company__about-para {
    font-size: 1.4rem;
    line-height: 1.6em;
  }
}
.company__about-para--bold {
  font-weight: bold;
  font-size: 1.78rem;
  line-height: 2.0224719101em;
}
@media screen and (max-width: 1024px) {
  .company__about-para--bold {
    font-size: 1.6rem;
  }
}
.company__info {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .company__info {
    margin-bottom: 50px;
  }
}
.company__info--next {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .company__info--next {
    margin-bottom: 40px;
  }
}
.company__detail-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .company__detail-wrap {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .company__detail-wrap {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .company__detail-wrap {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .company__detail-wrap {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .company__detail-wrap {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .company__detail-wrap {
    padding: 0 5%;
    max-width: 100%;
  }
}
.company__detail-wrap .company__detail {
  padding: 20px 0;
  border-bottom: 2px dotted #727278;
}
@media screen and (max-width: 767px) {
  .company__detail-wrap .company__detail {
    padding: 10px 0;
  }
}
.company__detail-wrap .company__detail:first-child {
  padding-top: 0;
}
.company__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.company__detail--map {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.company__logo {
  width: 212px;
  height: 50px;
}
.company__logo--next {
  width: 312px;
}
.company__detail-head {
  width: 20%;
  color: #727278;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .company__detail-head {
    width: 35%;
    font-size: 1.6rem;
  }
}
.company__detail-data {
  width: 80%;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .company__detail-data {
    width: 65%;
    font-size: 1.4rem;
  }
}
.company__detail-data--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.company__detail-data--link::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 10px;
  background-image: url("./src/img/icons/link-external.svg");
  background-size: cover;
  background-position: center;
}
.company__detail-data--link:hover {
  opacity: 0.5;
}
.company__map-detail {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.company__map {
  width: 100%;
  height: 320px;
}
@media screen and (max-width: 767px) {
  .company__map {
    height: auto;
  }
}
.company__more-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .company__more-button {
    margin-bottom: 50px;
  }
}
.company__download {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company__download {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .company__download {
    padding: 0;
  }
}
.company__download-banner {
  left: 20%;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 300px;
  max-width: 1380px;
}
@media screen and (max-width: 767px) {
  .company__download-banner {
    left: unset;
    height: 160px;
  }
}
.company__download-bg {
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company__download-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .company__download-wrap {
    height: 160px;
  }
}
.company__download-icon {
  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;
  height: 100%;
  width: 100%;
  max-width: 280px;
  background-color: #b01e2d;
}
@media screen and (max-width: 767px) {
  .company__download-icon {
    width: 25%;
  }
}
.company__download-img {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .company__download-img {
    width: 30px;
    height: 30px;
  }
}
.company__download-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1380px;
}
@media screen and (max-width: 1440px) {
  .company__download-content {
    max-width: 1100px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media screen and (max-width: 1367px) {
  .company__download-content {
    max-width: 1060px;
  }
}
@media screen and (max-width: 1280px) {
  .company__download-content {
    max-width: 850px;
  }
}
@media screen and (max-width: 1024px) {
  .company__download-content {
    max-width: 640px;
  }
}
@media screen and (max-width: 767px) {
  .company__download-content {
    width: 75%;
    padding: 5%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company__download-text {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .company__download-text {
    font-size: 1.6rem;
  }
}
.company__download-text--small {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .company__download-text--small {
    font-size: 1.2rem;
  }
}
.company__download-btn {
  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;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #fff;
  width: 100%;
  height: 80px;
  max-width: 600px;
  margin-left: 140px;
  border-radius: 40px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-image: url("./src/img/company/company-dl-caret-black.svg");
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .company__download-btn {
    margin-left: 120px;
  }
}
@media screen and (max-width: 1440px) {
  .company__download-btn {
    margin: 0;
    width: 50%;
    padding-right: 35px;
  }
}
@media screen and (max-width: 767px) {
  .company__download-btn {
    width: 100%;
    height: 50px;
    font-size: 1rem;
    padding-right: 15px;
    background-size: 12px 12px;
  }
}
.company__download-btn:hover {
  color: #fff;
  background-color: #00000b;
  background-image: url("./src/img/company/company-dl-caret-white.svg");
}

.blog {
  padding: 100px 3%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .blog {
    padding: 50px 5% !important;
  }
}
.blog::before {
  content: "";
  position: absolute;
  bottom: 550px;
  right: -100px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
  width: 500px;
  height: 450px;
  background-image: url("./src/img/top/triangle-bg.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .blog::before {
    width: 412.205px;
    height: 362.135px;
    bottom: 352.2244px;
    right: -217.1px;
  }
}
.blog::after {
  content: "";
  position: absolute;
  bottom: -180px;
  right: 1100px;
  z-index: -1;
  width: 500px;
  height: 450px;
  background-image: url("./src/img/top/triangle-bg.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .blog::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .blog {
    padding: 0 0 100px;
  }
}
.blog--list {
  padding: 0 3%;
}
@media screen and (max-width: 767px) {
  .blog--list {
    max-width: 100%;
    padding: 0 5%;
  }
}
.blog--list::before {
  display: none;
}
.blog--list::after {
  bottom: 4%;
  left: -21%;
  right: unset;
  width: 800px;
  height: 700px;
}
.blog--detail {
  padding: 0 3%;
}
@media screen and (max-width: 767px) {
  .blog--detail {
    max-width: 100%;
    padding: 0 5% !important;
  }
}
.blog--detail::before {
  bottom: 25%;
  right: -10%;
  width: 800px;
  height: 700px;
  display: none;
}
.blog--detail::after {
  bottom: 50%;
  left: -21%;
  right: unset;
  width: 800px;
  height: 700px;
  display: none;
}
@media screen and (max-width: 1280px) {
  .blog--member {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .blog--member {
    margin: 20px 0 60px;
    padding: 0 !important;
  }
}
.blog--member::before {
  bottom: auto;
  top: -578px;
  right: -264px;
}
.blog--member::after {
  height: 593px;
  width: 650px;
  top: 95px;
  right: auto;
  left: -370px;
}
.blog__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .blog__container {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .blog__container {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .blog__container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .blog__container {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .blog__container {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .blog__container {
    max-width: 100%;
    padding: 0;
    margin: initial;
  }
}
.blog__container .section__container {
  margin-bottom: 20px;
}
.blog__container--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .blog__container--list {
    padding: 0;
    margin: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .blog__container--member {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .blog__container--member .section__container {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 767px) {
  .blog__container--member .blog__blog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .blog__container--member .blog__card {
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px;
  }
}
.blog__blog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .blog__blog-list {
    display: block;
    width: 112.5%;
  }
}
.blog__blog-list--list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .blog__blog-list--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
  }
}
.blog__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog__title {
  font-size: 65px;
  margin-right: 40px;
  font-weight: 500;
}
.blog__title-jp {
  font-size: 25px;
  font-weight: 500;
}
.blog__card-container--list {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .blog__card-container--list {
    width: 100%;
    margin-bottom: 50px;
  }
}
.blog__card {
  position: relative;
  width: 25%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 20px rgba(7, 30, 29, 0.1);
          box-shadow: 0 20px 20px rgba(7, 30, 29, 0.1);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  margin-right: 2%;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .blog__card {
    width: 290px;
    margin: 20px;
    margin-right: initial;
    height: unset;
  }
}
.blog__card:last-child {
  margin-right: initial;
}
.blog__card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media screen and (max-width: 767px) {
  .blog__card:hover {
    -webkit-transform: unset;
            transform: unset;
  }
}
.blog__card--list {
  width: 48%;
  margin-right: 0;
  max-width: unset;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .blog__card--list {
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
  }
}
.blog__card--list:not(:nth-child(2n)) {
  margin-right: 4%;
}
@media screen and (max-width: 767px) {
  .blog__card--list:not(:nth-child(2n)) {
    margin-right: 0;
  }
}
.blog__card-text-container {
  padding: 15px;
}
.blog__card-text-container--list {
  padding: 35px 38px;
}
@media screen and (max-width: 1280px) {
  .blog__card-text-container--list {
    padding: 25px 28px;
  }
}
.blog__card-img {
  overflow: hidden;
}
.blog__card-img > img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .blog__card-img > img {
    height: 180px;
  }
}
.blog__card-image {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .blog__card-image {
    height: 220px;
  }
}
.blog__card-title {
  font-size: 2rem;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.blog__card-title--list {
  font-weight: 700;
  line-height: 1.75em;
}
.blog__card-text {
  font-size: 14px;
  margin: 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.blog__card-text--tag {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 400;
}
.blog__card-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
}
.blog__more-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .blog__more-button {
    margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .blog .section__container {
    margin: 0 0 92px;
    width: 300px;
  }
}
.blog hr {
  border-top: 0;
}
.blog__date {
  font-family: "brandon-grotesque", sans-serif;
}
.blog__page-nav {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .blog__page-nav {
    margin-top: 20px;
  }
}
.blog__widget-container {
  width: 35%;
  padding-left: 50px;
}
@media screen and (max-width: 1280px) {
  .blog__widget-container {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .blog__widget-container {
    width: 100%;
    padding-left: 0;
  }
}
.blog__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  margin-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #00000b;
}
@media screen and (max-width: 1280px) {
  .blog__category-list {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .blog__category-list {
    margin-bottom: 20px;
  }
}
.blog__category-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.blog__category-head > img {
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 767px) {
  .blog__category-head > img {
    width: 18px;
    height: 18px;
  }
}
.blog__category-head > h2 {
  font-size: 2rem;
  margin-left: 5px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .blog__category-head > h2 {
    font-size: 1.6rem;
  }
}
.blog__category-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px 26px 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #00000b;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .blog__category-tag {
    padding: 15px 10px 12px 10px;
  }
}
.blog__category-tag:hover {
  opacity: 0.4;
}
.blog__category-title {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .blog__category-title {
    font-size: 1.4rem;
  }
}
.blog__category-title--en {
  font-family: "brandon-grotesque", sans-serif;
}
.blog__category-caret {
  width: 20px;
  height: 20px;
  line-height: 1.5555555556em;
}
@media screen and (max-width: 767px) {
  .blog__category-caret {
    width: 16px;
    height: 16px;
  }
}
.blog__suggestion-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #00000b;
}
.blog__tab-container {
  width: 100%;
  height: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .blog__tab-container {
    height: 60px;
  }
}
.blog__tab-container > div:first-child {
  border-right: 1px solid #00000b;
}
.blog__tab-head {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #e6e6e6;
  border-bottom: 1px solid #00000b;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.blog__tab-head--active {
  border-bottom: none;
  background-color: #fff;
}
.blog__tab-icon {
  width: 20px;
  height: 20px;
}
.blog__tab-title {
  font-size: 2rem;
  margin-left: 5px;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .blog__tab-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .blog__tab-title {
    font-size: 1.4rem;
  }
}
.blog__article-list {
  display: none;
  padding: 30px;
  padding-top: 10px;
}
@media screen and (max-width: 1280px) {
  .blog__article-list {
    padding: 20px;
  }
}
.blog__article-list > a:not(:last-child) {
  margin-bottom: 35px;
}
.blog__article-list--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.blog__article {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.blog__article:hover {
  opacity: 0.6;
}
.blog__article--detail {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .blog__article--detail {
    width: 100%;
    margin-bottom: 20px;
  }
}
.blog__article-img {
  width: 25%;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .blog__article-img {
    width: 40%;
  }
}
.blog__article-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.blog__article-content {
  width: 75%;
  padding-left: 15px;
}
@media screen and (max-width: 1280px) {
  .blog__article-content {
    width: 60%;
  }
}
.blog__article-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.625em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .blog__article-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.blog__article-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.5rem;
  padding-top: 15px;
  color: #00000b;
  font-weight: 400;
  font-family: "brandon-grotesque", sans-serif;
  border-top: 1px solid #00000b;
}
@media screen and (max-width: 767px) {
  .blog__article-category {
    font-size: 1.2rem;
    padding-top: 10px;
  }
}

.blog__detail-container {
  width: 65%;
  padding: 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .blog__detail-container {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 360px) {
  .blog__detail-container {
    margin-bottom: 40px;
  }
}
.blog__detail-main-img {
  width: 100%;
  height: 476px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .blog__detail-main-img {
    height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .blog__detail-main-img {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .blog__detail-main-img {
    height: 220px;
    margin-bottom: 20px;
  }
}
.blog__detail-main-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog__detail-sub-img {
  width: 100%;
  height: 465px;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .blog__detail-sub-img {
    height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .blog__detail-sub-img {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .blog__detail-sub-img {
    height: 220px;
    margin-bottom: 20px;
  }
}
.blog__detail-sub-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog__detail-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.8rem;
  color: #00000b;
  font-family: "brandon-grotesque", sans-serif;
}
@media screen and (max-width: 767px) {
  .blog__detail-category {
    font-size: 1.6rem;
  }
}
.blog__detail-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.blog__detail-tag {
  padding: 7px;
  border-radius: 5px;
  background-color: #f1f2f5;
}
@media screen and (max-width: 767px) {
  .blog__detail-tag {
    padding: 5px;
  }
}
.blog__detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 24px 0 28px 0;
  color: #00000b;
  letter-spacing: 0.4rem;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  .blog__detail-title {
    margin: 20px 0;
    font-size: 2rem;
  }
}
.blog__detail-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #00000b;
}
@media screen and (max-width: 767px) {
  .blog__detail-author {
    padding-bottom: 20px;
  }
}
.blog__author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.blog__author-name {
  margin-left: 12px;
  font-size: 1.8rem;
  font-weight: 500;
}
.blog__detail-para {
  margin-top: 40px;
  margin-bottom: 58px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .blog__detail-para {
    margin-top: 20px;
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 360px) {
  .blog__detail-para {
    margin-bottom: 20px;
  }
}
.blog__detail-para pre {
  overflow-x: scroll;
}
.blog__detail-para--short {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .blog__detail-para--short {
    margin-bottom: 20px;
  }
}
.blog__detail-contents {
  padding: 32px;
  border-radius: 15px;
  margin-bottom: 60px;
  border: 1px solid #00000b;
}
@media screen and (max-width: 767px) {
  .blog__detail-contents {
    padding: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 360px) {
  .blog__detail-contents {
    padding: 15px;
    margin-bottom: 30px;
  }
}
.blog__content-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog__content-head > span {
  width: 10%;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .blog__content-head > span {
    width: 15%;
    font-size: 1.8rem;
  }
}
.blog__content-head > img {
  width: 90%;
}
@media screen and (max-width: 767px) {
  .blog__content-head > img {
    width: 85%;
  }
}
.blog__content-list {
  padding: 0 25px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.4rem;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .blog__content-list {
    padding: 0;
    margin-top: 25px;
  }
}
.blog__content-list > p:first-child {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .blog__content-list > p:first-child {
    margin-top: 15px;
  }
}
.blog__content-list > p:last-child {
  margin-bottom: 0;
}
.blog__content-item {
  font-size: 1.4rem;
  padding-left: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .blog__content-item {
    font-size: 1.2rem;
    padding-left: 10px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 360px) {
  .blog__content-item {
    padding-left: 8px;
  }
}
.blog__content-list p, .blog__content-item {
  font-size: 1.4rem;
  padding-left: 20px;
}
.blog__detail-subtitle {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  line-height: 2em;
  padding: 30px 25px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: justify;
  background-color: #f1f2f5;
}
@media screen and (max-width: 767px) {
  .blog__detail-subtitle {
    padding: 20px;
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.blog__table-wrap {
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .blog__table-wrap {
    margin-bottom: 40px;
  }
}
.blog ::-webkit-scrollbar {
  width: 15px;
  height: 15px;
  background: #f1f2f5;
  border-radius: 10px;
}
.blog ::-webkit-scrollbar-thumb:horizontal {
  border-radius: 10px;
  background: #cccccc;
}
.blog__detail-table {
  font-size: 1.6rem;
  width: 1100px;
  border-collapse: collapse;
  border: 1px solid #00000b;
}
.blog__table-row {
  height: 45px;
}
.blog__table-row--last > td, .blog__table-row--last > th {
  border-bottom: none;
}
.blog__table-head {
  width: 10%;
  font-weight: 500;
  background-color: #cccccc;
  border-bottom: 1px solid #00000b;
}
.blog__table-data {
  padding: 15px 10px;
  font-weight: 400;
  border-bottom: 1px solid #00000b;
}
.blog__table-data--1 {
  width: 30%;
  border-right: 1px solid #00000b;
}
.blog__table-data--2 {
  width: 60%;
}
.blog__contact-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  padding: 30px 16px 20px 33px;
  border: 1px solid #00000b;
}
@media screen and (max-width: 1280px) {
  .blog__contact-wrap {
    padding: 30px 20px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .blog__contact-wrap {
    padding: 20px;
    margin-bottom: 34px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 360px) {
  .blog__contact-wrap {
    padding-bottom: 30px;
  }
}
.blog__contact-text {
  width: 48%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.25em;
}
@media screen and (max-width: 1280px) {
  .blog__contact-text {
    width: 38%;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .blog__contact-text {
    width: 36%;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .blog__contact-text {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
}
.blog__contact-btn {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #b01e2d;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .blog__contact-btn {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 1280px) {
  .blog__contact-btn {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .blog__contact-btn {
    width: 100%;
    padding: 15px 25px;
  }
}
@media screen and (max-width: 360px) {
  .blog__contact-btn {
    padding: 10px;
  }
}
.blog__contact-btn:hover {
  opacity: 0.6;
}
.blog__contact-btn-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  border: 1px solid #fff;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1440px) {
  .blog__contact-btn-icon {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .blog__contact-btn-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
}
.blog__contact-btn-icon > img {
  width: 18px;
  height: 12px;
}
.blog__contact-btn-text {
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.blog__contact-btn-text--jap {
  font-size: 1.4rem;
}
@media screen and (max-width: 1440px) {
  .blog__contact-btn-text--jap {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .blog__contact-btn-text--jap {
    font-size: 10px;
  }
}
.blog__contact-btn-text--en {
  font-size: 2.5rem;
  font-family: "brandon-grotesque", sans-serif;
}
@media screen and (max-width: 1440px) {
  .blog__contact-btn-text--en {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .blog__contact-btn-text--en {
    font-size: 20px;
  }
}
.blog__sns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 50px;
  border-bottom: 1px solid #00000b;
}
@media screen and (max-width: 767px) {
  .blog__sns-wrap {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 360px) {
  .blog__sns-wrap {
    padding-bottom: 30px;
  }
}
.blog__sns-wrap > a:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .blog__sns-wrap > a:not(:last-child) {
    margin-right: 5px;
  }
}
.blog__sns-btn {
  padding: 12px 20px;
  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;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .blog__sns-btn {
    padding: 10px;
  }
}
@media screen and (max-width: 360px) {
  .blog__sns-btn {
    padding: 8px;
  }
}
.blog__sns-btn--fb {
  background-color: #1b5def;
}
.blog__sns-btn--twt {
  background-color: #1daeef;
}
.blog__sns-btn--line {
  background-color: #4cc764;
}
.blog__sns-btn:hover {
  opacity: 0.6;
}
.blog__sns-icon {
  width: 20px;
  height: 20px;
  margin-right: 14px;
}
@media screen and (max-width: 767px) {
  .blog__sns-icon {
    width: 15px;
    height: 15px;
    margin-right: 10px;
  }
}
.blog__sns-text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 767px) {
  .blog__sns-text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 360px) {
  .blog__sns-text {
    font-size: 1rem;
  }
}
.blog__recommendation-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .blog__recommendation-title {
    margin-top: 25px;
  }
}
.blog__recommendation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .blog__recommendation-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.recruit {
  background: url("./src/img/recruit/recruit-image1.jpg");
  background-size: 96%;
  background-repeat: no-repeat;
  background-position: 50% 35%;
  position: relative;
  padding: 100px 3%;
}
@media screen and (max-width: 1600px) {
  .recruit {
    background-size: 92%;
  }
}
@media screen and (max-width: 767px) {
  .recruit {
    background-size: cover;
    background-position-x: center;
    padding: 50px 5%;
  }
}
.recruit::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: -3%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), color-stop(45%, rgba(9, 9, 121, 0)), to(rgba(0, 212, 255, 0)));
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(9, 9, 121, 0) 45%, rgba(0, 212, 255, 0) 100%);
}
@media screen and (max-width: 767px) {
  .recruit::after {
    background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), color-stop(70%, rgba(9, 9, 121, 0)), to(rgba(0, 212, 255, 0)));
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(9, 9, 121, 0) 70%, rgba(0, 212, 255, 0) 100%);
  }
}
.recruit__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1600px) {
  .recruit__container {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit__container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__container {
    max-width: 100%;
    margin: initial;
    padding: 0;
  }
}
.recruit__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit__title {
  font-size: 65px;
  margin-right: 40px;
  font-weight: 500;
}
.recruit__title-jp {
  font-size: 25px;
  font-weight: 500;
}
.recruit__text {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1440px) {
  .recruit__text {
    font-size: 1.3rem;
  }
}
.recruit__more-button {
  margin-top: 50px;
}

.recruit-entry__title-wrap {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit-entry__title-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .recruit-entry__title-wrap {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-entry__title-wrap {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-entry__title-wrap {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-entry__title-wrap {
    max-width: 1000px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-entry__title-wrap {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry__title-wrap {
    max-width: 100%;
  }
}
.recruit-entry__banner-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .recruit-entry__banner-wrap {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-entry__banner-wrap {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-entry__banner-wrap {
    max-width: 1000px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-entry__banner-wrap {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry__banner-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
.recruit-entry__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .recruit-entry__title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    word-break: keep-all;
  }
}
.recruit-entry__title span {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .recruit-entry__title span {
    font-size: 1.4rem;
  }
}
.recruit-entry__banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .recruit-entry__banner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.recruit-entry__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .recruit-entry__text-wrap {
    width: 100%;
    margin-top: 50px;
  }
}
.recruit-entry__banner-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .recruit-entry__banner-text {
    font-size: 1.8rem;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry__banner-text {
    font-size: 1.6rem;
    gap: 25px;
  }
}
.recruit-entry__banner-text::before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background-image: url("./src/img/recruit/icon-red-check.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1280px) {
  .recruit-entry__banner-text::before {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry__banner-text::before {
    width: 30px;
    height: 30px;
  }
}
.recruit-entry__banner-text:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .recruit-entry__banner-text:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry__banner-text:not(:last-child) {
    margin-bottom: 20px;
  }
}
.recruit-entry__image {
  position: relative;
  left: 3%;
  width: 60%;
}
@media screen and (max-width: 1367px) {
  .recruit-entry__image {
    width: 75%;
    left: 7%;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-entry__image {
    width: 85%;
    left: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-entry__image {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry__image {
    left: 6%;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-entry__image img {
    width: 100%;
  }
}
.recruit-entry__main {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .recruit-entry__main {
    margin-top: 5rem;
  }
}
.recruit-entry__heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 2em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .recruit-entry__heading {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.recruit-entry__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
.recruit-entry__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 100px 0 150px;
  gap: 60px;
}
@media screen and (max-width: 1280px) {
  .recruit-entry__navigation {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry__navigation {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 50px 0 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.recruit-entry__navigation-link {
  position: relative;
  width: 530.3px;
  height: 132.42px;
  border: 1px solid #dbdbdb;
  border-radius: 73px;
  -webkit-box-shadow: 0 5.97px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5.97px 20px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 3rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .recruit-entry__navigation-link {
    width: 100%;
    height: 70px;
    font-size: 2rem;
    background-position: right 20px center;
  }
}
.recruit-entry__navigation-link span {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .recruit-entry__navigation-link span {
    font-size: 1.6rem;
  }
}
.recruit-entry__navigation-link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media screen and (max-width: 767px) {
  .recruit-entry__navigation-link::before {
    display: none;
  }
}
.recruit-entry__navigation-link:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .recruit-entry__navigation-link:hover {
    color: #00000b;
  }
}
.recruit-entry__navigation-link:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.recruit-entry__navigation-link:hover .recruit-entry__button-arrow {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .recruit-entry__navigation-link:hover .recruit-entry__button-arrow {
    -webkit-filter: unset;
            filter: unset;
  }
}
.recruit-entry__button-arrow {
  position: absolute;
  width: 29.5px;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .recruit-entry__button-arrow {
    width: 25px;
    right: 20px;
  }
}
.recruit-entry__flow {
  position: relative;
  margin-bottom: 130px;
  padding: 0 3%;
}
@media screen and (max-width: 767px) {
  .recruit-entry__flow {
    margin-bottom: 80px;
    padding: 0 5%;
  }
}
.recruit-entry__flow::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -190px;
  z-index: -1;
  width: 537.51px;
  height: 100%;
  background-image: url("./src/img/job/triangle-bg.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .recruit-entry__flow::before {
    display: none;
  }
}
.recruit-entry__flow::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -190px;
  z-index: -1;
  width: 537.51px;
  height: 501.91px;
  background-image: url("./src/img/job/triangle-bg-2.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .recruit-entry__flow::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry__flow .recruit-entry__title-wrap {
    padding: 0;
  }
}
.recruit-entry__flow-list {
  counter-reset: cards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit-entry__flow-list {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .recruit-entry__flow-list {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-entry__flow-list {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-entry__flow-list {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-entry__flow-list {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-entry__flow-list {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry__flow-list {
    max-width: 100%;
    display: block;
    padding: 0;
  }
}
.recruit-entry__flow-item {
  position: relative;
  width: 22%;
  min-height: 385.17px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 40px;
  margin: 0 40px 40px 0;
  border: 3px solid #dae1ea;
  border-radius: 60px 10px 10px 10px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1600px) {
  .recruit-entry__flow-item {
    margin-right: 39px;
    padding: 0px 25px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-entry__flow-item {
    margin-right: 37px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-entry__flow-item {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry__flow-item {
    max-width: initial;
    width: 100%;
    height: 330px;
    margin: 0 50px 50px 0;
    padding: 0 33px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-entry__flow-item:nth-child(3), .recruit-entry__flow-item:nth-child(6) {
    margin: 0 0 40px 0;
  }
}
@media screen and (max-width: 981px) {
  .recruit-entry__flow-item:nth-child(3), .recruit-entry__flow-item:nth-child(6) {
    margin: 0 0 40px 0;
  }
}
.recruit-entry__flow-item:not(:last-child)::after {
  content: "";
  background-image: url("./src/img/entry/entry-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: -45px;
  width: 13px;
  height: 25px;
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .recruit-entry__flow-item:not(:last-child)::after {
    top: auto;
    bottom: -40px;
    right: 50%;
    left: 45%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.recruit-entry__flow-item::before {
  counter-increment: cards;
  content: "0" counter(cards);
  position: absolute;
  top: 0;
  left: 15px;
  color: #c1c1c1;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-style: italic;
}
.recruit-entry__flow-item:first-of-type .recruit-entry__flow-graphic {
  width: 127px;
  height: 150px;
}
.recruit-entry__flow-item:first-of-type .recruit-entry__flow-graphic img {
  width: 85%;
  height: 95%;
}
.recruit-entry__flow-graphic {
  width: 127px;
  height: 150px;
  margin-bottom: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 981px) {
  .recruit-entry__flow-graphic {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry__flow-graphic {
    max-width: 147px;
    height: 94px;
  }
}
.recruit-entry__flow-graphic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.recruit-entry__flow-graphic--md {
  max-width: 150px;
  width: 50%;
}
.recruit-entry__card-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.75em;
  text-align: center;
  margin-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .recruit-entry__card-title {
    font-size: 1.8rem;
  }
}
.recruit-entry__card-details {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.625em;
}
.recruit-entry__entry {
  background-color: #f1f2f5;
  padding: 100px 0 80px;
}
@media screen and (max-width: 767px) {
  .recruit-entry__entry {
    padding: 80px 0;
  }
}
.recruit-entry__entry-wrap {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .recruit-entry__entry-wrap {
    padding: 0 5%;
  }
}
.recruit-entry__entry-heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.recruit-entry__entry-text {
  font-size: 1.6rem;
  font-weight: 500;
}
.recruit-entry__button-container {
  margin: 25px 0 80px 0;
}
@media screen and (max-width: 767px) {
  .recruit-entry__button-container {
    margin-bottom: 60px;
  }
}
.recruit-entry__button {
  position: relative;
  z-index: 1;
  max-width: 90%;
  width: 530.3px;
  height: 81.28px;
  font-weight: 700;
  font-size: 2.6rem;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 40px;
  border: 1px solid #ccccce;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .recruit-entry__button {
    font-size: 2.2rem;
    height: 60px;
    width: 100%;
  }
}
.recruit-entry__button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media screen and (max-width: 767px) {
  .recruit-entry__button::before {
    display: none;
  }
}
.recruit-entry__button:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .recruit-entry__button:hover {
    color: #00000b;
  }
}
.recruit-entry__button:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.recruit-entry__button:hover .recruit-entry__button-arrow {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .recruit-entry__button:hover .recruit-entry__button-arrow {
    -webkit-filter: unset;
            filter: unset;
  }
}
.recruit-entry__button-image {
  width: 40%;
}
.recruit-entry__button-arrow {
  position: absolute;
  width: 29.5px;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .recruit-entry__button-arrow {
    width: 25px;
    right: 20px;
  }
}
.recruit-entry__form-container {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit-entry__form-container {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .recruit-entry__form-container {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-entry__form-container {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-entry__form-container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-entry__form-container {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-entry__form-container {
    max-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-entry__form-container {
    padding: 0 5%;
  }
}

.recruit-main {
  width: 100%;
}
.recruit-main__banner {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1920px;
  position: relative;
  height: 800px;
  background-image: url("./src/img/recruit/recruit-mv.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .recruit-main__banner {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .recruit-main__banner {
    height: 650px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-main__banner {
    height: 600px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-main__banner {
    height: 560px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-main__banner {
    height: 490px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__banner {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__banner {
    height: 280px;
    margin-top: 65px;
  }
}
.recruit-main__banner-list {
  position: absolute;
  bottom: 4%;
  left: 2%;
}
@media screen and (max-width: 767px) {
  .recruit-main__banner-list {
    bottom: 2%;
  }
}
.recruit-main__banner-text {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 22px;
  background-color: #fff;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.75em;
}
@media screen and (max-width: 1280px) {
  .recruit-main__banner-text {
    padding: 2px 15px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__banner-text {
    font-size: 1.2rem;
    padding: 2px 10px;
  }
}
.recruit-main__banner-text:not(:last-of-type) {
  margin-bottom: 35px;
}
@media screen and (max-width: 1280px) {
  .recruit-main__banner-text:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__banner-text:not(:last-of-type) {
    margin-bottom: 5px;
  }
}
.recruit-main section {
  position: relative;
}
.recruit-main__message {
  margin-bottom: 115px;
}
@media screen and (max-width: 767px) {
  .recruit-main__message {
    margin-bottom: 57.5px;
  }
}
.recruit-main__title-wrap {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit-main__title-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .recruit-main__title-wrap {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-main__title-wrap {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-main__title-wrap {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-main__title-wrap {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__title-wrap {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__title-wrap {
    padding: 0 5%;
    max-width: 100%;
  }
}
.recruit-main__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  width: 100%;
  max-width: 1400px;
}
@media screen and (max-width: 767px) {
  .recruit-main__title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
  }
}
.recruit-main__title span {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .recruit-main__title span {
    font-size: 1.4rem;
  }
}
.recruit-main__message-row {
  width: 100%;
  margin: 0 auto;
  max-width: 1920px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit-main__message-row {
    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;
  }
}
.recruit-main__president-img {
  width: 55%;
  height: 590px;
  max-width: 960px;
  overflow: hidden;
  border-radius: 0 44.5px 44.5px 0;
}
@media screen and (max-width: 1600px) {
  .recruit-main__president-img {
    width: 50%;
    height: 490px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-main__president-img {
    height: 420px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__president-img {
    width: 100%;
    height: 250px;
    padding: 0 5%;
    border-radius: 0;
  }
}
.recruit-main__president-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .recruit-main__president-img img {
    -o-object-position: center;
       object-position: center;
  }
}
.recruit-main__text {
  width: 100%;
  max-width: 1400px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1600px) {
  .recruit-main__text {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-main__text {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-main__text {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-main__text {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__text {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__text {
    padding: 0 5%;
    max-width: 100%;
    position: static;
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}
.recruit-main__text-wrap {
  width: 47%;
  max-width: 655px;
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1600px) {
  .recruit-main__text-wrap {
    padding-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__text-wrap {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__text-wrap {
    width: 100%;
  }
}
.recruit-main__heading {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2em;
  margin-bottom: 42px;
}
@media screen and (max-width: 1600px) {
  .recruit-main__heading {
    letter-spacing: 0;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-main__heading {
    font-size: 2.4rem;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__heading {
    font-size: 1.8rem;
    margin-bottom: 21px;
  }
}
.recruit-main__content {
  font-size: 1.6rem;
  line-height: 2em;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .recruit-main__content {
    margin-bottom: 50px;
  }
}
.recruit-main__content--pres {
  letter-spacing: 0.1em;
  margin-bottom: 90px;
}
@media screen and (max-width: 1600px) {
  .recruit-main__content--pres {
    letter-spacing: 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-main__content--pres {
    font-size: 1.4rem;
    line-height: 1.7em;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__content--pres {
    margin-bottom: 30px;
  }
}
.recruit-main__content--card {
  text-align: justify;
  letter-spacing: 0.04em;
  margin-bottom: initial;
}
@media screen and (max-width: 1024px) {
  .recruit-main__content--card {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 981px) {
  .recruit-main__content .sm-hide {
    display: none;
  }
}
.recruit-main__button-wrap {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .recruit-main__button-wrap {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.recruit-main__interview {
  padding: 90px 0 190px;
  background: #f1f2f5;
}
@media screen and (max-width: 767px) {
  .recruit-main__interview {
    padding: 30px 0 80px;
  }
}
.recruit-main__interview-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 2.5%;
}
@media screen and (max-width: 767px) {
  .recruit-main__interview-list-wrap {
    padding: 0;
  }
}
.recruit-main__interview-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1818px;
}
@media screen and (max-width: 767px) {
  .recruit-main__interview-list {
    padding: 0;
    display: block;
  }
}
.recruit-main__interview-list .previous,
.recruit-main__interview-list .next {
  margin: auto;
  top: 0;
  bottom: 0;
}
.recruit-main__interview-list .flickity-prev-next-button.previous {
  left: 4%;
}
.recruit-main__interview-list .flickity-prev-next-button.next {
  right: 4%;
  left: auto;
}
.recruit-main__interview-list .flickity-page-dots {
  position: relative;
}
.recruit-main__interview-item {
  width: 17%;
  height: 600px;
  max-width: 303px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .recruit-main__interview-item {
    height: 480px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-main__interview-item {
    height: 460px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-main__interview-item {
    height: 430px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-main__interview-item {
    height: 380px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__interview-item {
    height: 320px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__interview-item {
    width: 50%;
    height: unset;
    opacity: 0.5;
    -webkit-transition: opacity 350ms ease-in-out;
    transition: opacity 350ms ease-in-out;
    margin-right: 20px;
    z-index: -1;
  }
}
.recruit-main__interview-item.is-selected {
  opacity: 1;
  z-index: 1;
}
.recruit-main__interview-item:hover .recruit-main__interview-image {
  opacity: 0.8;
}
.recruit-main__interview-image {
  width: 100%;
  height: 100%;
  margin-bottom: 31px;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
@media screen and (max-width: 1440px) {
  .recruit-main__interview-image {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__interview-image {
    height: 545px;
    margin-bottom: 15.5px;
  }
}
@media screen and (max-width: 420px) {
  .recruit-main__interview-image {
    height: 370px;
  }
}
@media screen and (max-width: 360px) {
  .recruit-main__interview-image {
    height: 330px;
  }
}
.recruit-main__interview-image img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .recruit-main__interview-image img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.recruit-main__interview-info {
  padding-right: 10%;
}
@media screen and (max-width: 1440px) {
  .recruit-main__interview-info {
    padding-right: 8%;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__interview-info {
    padding-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__interview-info {
    padding: 0;
  }
}
.recruit-main__interview-position {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.375em;
  margin-bottom: 10px;
}
@media screen and (max-width: 1367px) {
  .recruit-main__interview-position {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-main__interview-position {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__interview-position {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__interview-position {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}
.recruit-main__name {
  font-size: 2.4rem;
  line-height: 0.7083333333em;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1440px) {
  .recruit-main__name {
    gap: 5px 32px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-main__name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__name {
    font-size: 1.8rem;
    gap: 5px 50px;
  }
}
.recruit-main__name span {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.75em;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .recruit-main__name span {
    font-size: 1.2rem;
  }
}
.recruit-main__culture {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .recruit-main__culture {
    padding: 50px 0;
  }
}
.recruit-main__culture::after {
  content: "";
  position: absolute;
  right: 0;
  top: 323px;
  background-color: #f1f2f5;
  max-width: 72.24%;
  width: 100%;
  height: 627px;
  z-index: -2;
  border-radius: 43px 0 0 43px;
}
@media screen and (max-width: 767px) {
  .recruit-main__culture::after {
    height: 313.5px;
    top: 320px;
  }
}
.recruit-main__culture-list {
  counter-reset: cards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit-main__culture-list {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .recruit-main__culture-list {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-main__culture-list {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-main__culture-list {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-main__culture-list {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__culture-list {
    gap: 10px;
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__culture-list {
    width: 100%;
    display: block;
    max-width: 100%;
  }
}
.recruit-main__culture-list .flickity-page-dots {
  position: relative;
}
.recruit-main__culture-card {
  position: relative;
  max-width: calc(33.3333333333% - 15px);
  width: 100%;
  min-height: 640px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #dae1ea;
  padding: 0 66px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1367px) {
  .recruit-main__culture-card {
    padding: 0 33px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-main__culture-card {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__culture-card {
    max-width: calc(33.3333333333% - 10px);
    padding: 0 2%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__culture-card {
    max-width: initial;
    width: 100%;
    height: 430px;
    margin-right: 50px;
    padding: 0 33px;
  }
}
.recruit-main__culture-card::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  opacity: 0.2;
  -webkit-box-shadow: 0 10px 20px 0 #040000;
          box-shadow: 0 10px 20px 0 #040000;
  mix-blend-mode: multiply;
}
.recruit-main__culture-card::after {
  counter-increment: cards;
  content: "0" counter(cards);
  position: absolute;
  top: 0;
  left: 0;
  width: 84.9px;
  height: 84.9px;
  background-color: #00000b;
  border-radius: 0 0 22.34px 0;
  color: #fff;
  font-size: 3.1rem;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  line-height: 1.3706451613em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .recruit-main__culture-card::after {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    border-radius: 0 0 11.17px 0;
  }
}
.recruit-main__culture-card:first-of-type .recruit-top__culture-graphic {
  max-width: 130px;
  width: 100%;
}
.recruit-main__culture-card:first-of-type .recruit-top__culture-graphic img {
  width: 95%;
  height: 95%;
}
.recruit-main__culture-graphic {
  max-width: 294px;
  width: 100%;
  height: 188px;
  margin-bottom: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 981px) {
  .recruit-main__culture-graphic {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__culture-graphic {
    max-width: 147px;
    height: 94px;
  }
}
.recruit-main__culture-graphic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.recruit-main__culture-graphic--md {
  max-width: 150px;
  width: 50%;
}
.recruit-main__card-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.75em;
  text-align: center;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  .recruit-main__card-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__card-title {
    font-size: 1.8rem;
  }
}
.recruit-main__job {
  padding: 93px 0 100px;
}
@media screen and (max-width: 1280px) {
  .recruit-main__job {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__job {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__job {
    padding: 50px 0;
  }
}
.recruit-main__fullwidth-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .recruit-main__fullwidth-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.recruit-main__fullwidth-item {
  position: relative;
  max-width: 50%;
  width: 100%;
  height: 604px;
  -webkit-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
@media screen and (max-width: 1600px) {
  .recruit-main__fullwidth-item {
    height: 500px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-main__fullwidth-item {
    height: 420px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__fullwidth-item {
    height: 360px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__fullwidth-item {
    max-width: 100%;
    height: 302px;
  }
}
.recruit-main__fullwidth-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit-main__fullwidth-item:hover {
  opacity: 0.8;
}
.recruit-main__fullwidth-text {
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 0;
  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;
}
.recruit-main__fullwidth-text::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #00000b;
  opacity: 0.5;
  z-index: -1;
}
.recruit-main__fullwidth-title-en {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7576190476em;
}
@media screen and (max-width: 767px) {
  .recruit-main__fullwidth-title-en {
    font-size: 3.6rem;
  }
}
.recruit-main__fullwidth-title-jp {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.7895454545em;
}
@media screen and (max-width: 767px) {
  .recruit-main__fullwidth-title-jp {
    font-size: 1.6rem;
  }
}
.recruit-main__links {
  padding: initial;
}
@media screen and (max-width: 767px) {
  .recruit-main__links {
    padding: 0 5%;
    width: 100%;
    margin: auto;
  }
}
.recruit-main__link-row {
  background-color: #f1f2f5;
  padding: 58px 0;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .recruit-main__link-row {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .recruit-main__link-row {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-main__link-row {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-main__link-row {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-main__link-row {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__link-row {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main__link-row {
    max-width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 29px;
    row-gap: 40px;
  }
}
.recruit-main__link-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .recruit-main__link-item {
    width: 100%;
  }
}
.recruit-main__link-item:nth-of-type(even) {
  border-left: 1px solid #00000b;
  border-right: 1px solid #00000b;
}
@media screen and (max-width: 767px) {
  .recruit-main__link-item:nth-of-type(even) {
    border-left: unset;
    border-right: unset;
    border-top: 1px solid #00000b;
    border-bottom: 1px solid #00000b;
    padding: 40px 0;
  }
}
.recruit-main__link-title-wrap {
  text-align: center;
  margin-bottom: 44px;
}
@media screen and (max-width: 767px) {
  .recruit-main__link-title-wrap {
    margin-bottom: 22px;
  }
}
.recruit-main__link-title {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 4.5rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .recruit-main__link-title {
    font-size: 3.5rem;
  }
}
.recruit-main__link-title--jp {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7983333333em;
}
@media screen and (max-width: 767px) {
  .recruit-main__link-title--jp {
    font-size: 1.4rem;
  }
}

.recruit-message {
  width: 100%;
}
.recruit-message__banner {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1920px;
  height: 777px;
  margin-bottom: 251px;
  background: url("./src/img/message/message01.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .recruit-message__banner {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-message__banner {
    height: 700px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-message__banner {
    height: 633px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__banner {
    height: 388.5px;
    margin-bottom: 125.5px;
  }
}
.recruit-message__banner-content {
  position: relative;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .recruit-message__banner-content {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .recruit-message__banner-content {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-message__banner-content {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-message__banner-content {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-message__banner-content {
    max-width: 1000px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-message__banner-content {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__banner-content {
    max-width: 100%;
  }
}
.recruit-message__banner-info-wrap {
  position: absolute;
  bottom: -150px;
  right: 0;
  width: 301px;
  height: 301px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 11, 0.2);
          box-shadow: 0 10px 10px rgba(0, 0, 11, 0.2);
  padding: 66px 45px;
}
@media screen and (max-width: 767px) {
  .recruit-message__banner-info-wrap {
    max-width: 250px;
    width: 90%;
    height: 150.5px;
    bottom: -75px;
    right: 3%;
    margin: 0 auto;
    padding: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 360px) {
  .recruit-message__banner-info-wrap {
    margin: auto;
    left: 0;
    right: 0;
  }
}
.recruit-message__ceo-position {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3455em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .recruit-message__ceo-position {
    font-size: 1.6rem;
  }
}
.recruit-message__name-wrap {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .recruit-message__name-wrap {
    margin-top: 22.5px;
  }
}
.recruit-message__ceo-name {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 0.7475em;
  letter-spacing: 0.05em;
  margin-bottom: 19px;
}
@media screen and (max-width: 767px) {
  .recruit-message__ceo-name {
    font-size: 2rem;
    margin-bottom: 9.5px;
  }
}
.recruit-message__ceo-name--en {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.6rem;
  line-height: 1.681875em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .recruit-message__ceo-name--en {
    font-size: 1.4rem;
  }
}
.recruit-message__ceo-name--red {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.6rem;
  line-height: 1.681875em;
  letter-spacing: 0.05em;
  color: #b01e2d;
  margin-bottom: initial;
}
.recruit-message__ceo-name--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 19px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .recruit-message__ceo-name--flex {
    margin-top: 9.5px;
    gap: 5px;
    line-height: initial;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.recruit-message__message-1 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .recruit-message__message-1 {
    margin-bottom: 50px;
  }
}
.recruit-message__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 78px;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit-message__row {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .recruit-message__row {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-message__row {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-message__row {
    gap: 4%;
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-message__row {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-message__row {
    gap: 40px;
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__row {
    max-width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 39px;
  }
}
.recruit-message__section-image {
  max-width: 648px;
  width: 100%;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1367px) {
  .recruit-message__section-image {
    width: 500px;
    height: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-message__section-image {
    width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__section-image {
    max-width: 324px;
    width: 100%;
    height: auto;
    margin: auto;
  }
}
.recruit-message__section-image--sm {
  width: 274px;
  height: 274px;
}
@media screen and (max-width: 767px) {
  .recruit-message__section-image--sm {
    width: 100%;
    height: auto;
  }
}
.recruit-message__section-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit-message__content-wrap {
  position: relative;
  width: 100%;
}
.recruit-message__content-wrap--message-1 {
  padding: 76px 0;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .recruit-message__content-wrap--message-1 {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__content-wrap--message-1 {
    padding: 100px 0 38px;
    margin-top: -100px;
  }
}
.recruit-message__content-wrap--message-1::before {
  content: "";
  position: absolute;
  width: 150vw;
  top: 0;
  bottom: 0;
  left: -37.5%;
  background-color: #f1f2f5;
  z-index: -1;
  border-radius: 43px;
}
@media screen and (max-width: 767px) {
  .recruit-message__content-wrap--message-1::before {
    width: 150%;
    left: -5.5%;
  }
}
@media screen and (max-width: 360px) {
  .recruit-message__content-wrap--message-1::before {
    left: -25%;
  }
}
.recruit-message__content-wrap--message-2 {
  padding: 76px 0;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .recruit-message__content-wrap--message-2 {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__content-wrap--message-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 100px 0 38px;
    margin-top: -100px;
  }
}
.recruit-message__content-wrap--message-2::before {
  content: "";
  position: absolute;
  width: 150vw;
  top: 0;
  bottom: 0;
  right: -37.5%;
  background-color: #f1f2f5;
  z-index: -1;
  border-radius: 43px;
}
@media screen and (max-width: 767px) {
  .recruit-message__content-wrap--message-2::before {
    width: 150%;
    right: -5.5%;
  }
}
@media screen and (max-width: 360px) {
  .recruit-message__content-wrap--message-2::before {
    right: -25%;
  }
}
.recruit-message__content-wrap.mw1200 {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .recruit-message__content-wrap.mw1200 {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-message__content-wrap.mw1200 {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__content-wrap.mw1200 {
    max-width: 100%;
    padding: 0 5%;
  }
}
.recruit-message__section-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 2em;
  margin-bottom: 36px;
  margin: 0 auto 36px;
}
@media screen and (max-width: 1024px) {
  .recruit-message__section-heading {
    font-size: 2.6rem;
    line-height: 1.6em;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__section-heading {
    width: 100%;
    margin-bottom: 18px;
  }
}
.recruit-message__section-heading--lg {
  z-index: 1;
  color: #000;
  font-size: 4rem;
  font-size: 700;
  letter-spacing: 0.04em;
  line-height: 1.75em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit-message__section-heading--lg {
    font-size: 2.8rem;
  }
}
.recruit-message__text-content {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.04em;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .recruit-message__text-content {
    font-size: 1.4rem;
  }
}
.recruit-message__text-content--bold {
  text-align: center;
  font-weight: 700;
}
.recruit-message__text-content--center {
  text-align: center;
}
.recruit-message__text-content--ls-0 {
  letter-spacing: initial;
}
.recruit-message__text-content--mb-60 {
  margin-bottom: 60px;
}
.recruit-message__message-2 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .recruit-message__message-2 {
    margin-bottom: 50px;
  }
}
.recruit-message__job-hunters {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .recruit-message__job-hunters {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-message__job-hunters {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-message__job-hunters {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-message__job-hunters {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-message__job-hunters {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__job-hunters {
    max-width: 100%;
  }
}
.recruit-message__section-banner {
  margin-bottom: 51px;
}
@media screen and (max-width: 1367px) {
  .recruit-message__section-banner {
    padding-left: 2%;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-message__section-banner {
    padding-left: 4%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__section-banner {
    margin-bottom: 25.5px;
  }
}
.recruit-message__job-hunters {
  margin-bottom: 112px;
}
@media screen and (max-width: 767px) {
  .recruit-message__job-hunters {
    margin-bottom: 56px;
  }
}
.recruit-message__job-hunters::before {
  content: "";
  position: absolute;
  left: -520px;
  bottom: -100px;
  width: 602px;
  height: 532px;
  background-image: url("./src/img/top/triangle-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .recruit-message__job-hunters::before {
    left: -280px;
    bottom: -55px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__job-hunters::before {
    left: -260px;
    bottom: -10px;
    width: 400px;
    height: 330px;
  }
}
.recruit-message__ceo-info {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .recruit-message__ceo-info {
    margin-bottom: 50px;
  }
}
.recruit-message__info-container {
  background-color: #f1f2f5;
  gap: 66px;
  padding: 49px 56px 52px;
  border-radius: 18.87px;
  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;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .recruit-message__info-container {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-message__info-container {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-message__info-container {
    width: 90%;
    gap: 5%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__info-container {
    max-width: 90%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 24.5px 5% 26px;
    gap: 25px;
  }
}
.recruit-message__other-interview {
  background-color: #f1f2f5;
  padding: 45px 3% 100px;
}
@media screen and (max-width: 1280px) {
  .recruit-message__other-interview {
    padding: 50px 3%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__other-interview {
    padding: 22.5px 0 50px;
  }
}
.recruit-message__interview-list {
  position: relative;
  height: 646px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-list {
    height: 323px;
  }
}
.recruit-message__interview-list::before, .recruit-message__interview-list::after {
  content: "";
  position: absolute;
  top: 29px;
  margin: auto;
  width: 305px;
  height: 506px;
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(rgba(0, 0, 11, 0.8)));
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 11, 0.8));
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-list::before, .recruit-message__interview-list::after {
    top: 14.5px;
    width: 152.5px;
    height: 253px;
  }
}
.recruit-message__interview-list::before {
  left: -160px;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-list::before {
    left: -120px;
  }
}
.recruit-message__interview-list::after {
  right: -160px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-list::after {
    right: -120px;
  }
}
.recruit-message__interview-item {
  display: block;
  position: relative;
  margin-right: 79px;
  -webkit-transition: opacity 350ms ease;
  transition: opacity 350ms ease;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-item {
    margin-right: 39.5px;
  }
}
.recruit-message__interview-item .recruit-message__member-img {
  width: 445px;
  height: 564px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 11, 0.2);
          box-shadow: 0 10px 10px rgba(0, 0, 11, 0.2);
  -webkit-transform: scale(89.8%);
          transform: scale(89.8%);
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-item .recruit-message__member-img {
    width: 222.5px;
    height: 282px;
  }
}
.recruit-message__interview-item.is-selected .recruit-message__member-img {
  -webkit-transform: scale(100%);
          transform: scale(100%);
}
.recruit-message__interview-item:nth-of-type(even) .recruit-message__member-img {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.recruit-message__interview-item:nth-of-type(even) .recruit-message__member-img img {
  position: relative;
  bottom: 55px;
  width: 105%;
  height: 110%;
  -o-object-position: bottom;
     object-position: bottom;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-item:nth-of-type(even) .recruit-message__member-img img {
    bottom: 27.5px;
  }
}
.recruit-message__interview-item:hover {
  opacity: 0.8;
}
.recruit-message__member-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: -webkit-transform 350ms ease;
  transition: -webkit-transform 350ms ease;
  transition: transform 350ms ease;
  transition: transform 350ms ease, -webkit-transform 350ms ease;
  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;
}
.recruit-message__member-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.recruit-message__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(0, 0, 11, 0.5)));
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 11, 0.5));
  height: 174px;
  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;
  padding-left: 31px;
}
@media screen and (max-width: 767px) {
  .recruit-message__overlay {
    height: 87px;
    padding-left: 2%;
  }
}
.recruit-message__interview-position {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.175em;
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-position {
    font-size: 1.2rem;
  }
}
.recruit-message__interview-name {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 0.7083333333em;
  letter-spacing: 0.04em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-name {
    font-size: 1.6rem;
  }
}
.recruit-message__interview-name span {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-name span {
    font-size: 1.2rem;
  }
}
.recruit-message .job__button {
  margin-top: 99px;
}
@media screen and (max-width: 767px) {
  .recruit-message .job__button {
    margin-top: 49.5px;
  }
}
.recruit-message .recruit-main__title {
  word-break: initial;
}

.contact {
  margin: 120px 0 100px;
  padding: 0 3%;
}
@media screen and (max-width: 767px) {
  .contact {
    margin: 50px 0 50px;
    padding: 0 5%;
  }
}
.contact--top {
  margin: 200px 0 100px;
}
@media screen and (max-width: 1280px) {
  .contact--top {
    margin: 80px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .contact--top {
    margin: 50px 0;
  }
}
.contact--page {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .contact--page {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .contact--page {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1367px) {
  .contact--page {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1280px) {
  .contact--page {
    max-width: 1100px;
  }
}
@media screen and (max-width: 1024px) {
  .contact--page {
    max-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .contact--page {
    max-width: 100%;
    padding: 0 5%;
  }
}
.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 2px solid #000;
  padding-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1600px) {
  .contact__container {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .contact__container {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .contact__container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .contact__container {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .contact__container {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .contact__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: initial;
    margin: initial;
    max-width: 100%;
    padding: 0;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}
.contact__content {
  margin-right: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  .contact__content {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .contact__content {
    margin-right: 0;
  }
}
.contact__text {
  font-size: 1.8rem;
  margin-top: 30px;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .contact__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 16px;
    margin-top: 1.76rem;
  }
}
.contact__card-icon {
  height: auto;
  margin-right: 20px;
}
@media screen and (max-width: 1280px) {
  .contact__card-icon {
    width: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .contact__card-icon {
    width: 40px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .contact__card-icon {
    width: 54.395px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .contact__card-details {
    text-align: center;
  }
}
.contact__card-container {
  color: white;
  background: black;
  width: 33%;
  height: 200px;
  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;
  border: 2px solid black;
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
}
@media screen and (max-width: 1280px) {
  .contact__card-container {
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .contact__card-container {
    width: 100%;
    margin: 20px 0 0;
    height: 135px;
  }
}
.contact__card-container--first {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .contact__card-container--first {
    margin-right: 0;
  }
}
.contact__card-container:hover {
  background: white;
  color: black;
}
.contact__card-container:hover .contact__card-icon {
  -webkit-filter: invert(1);
          filter: invert(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact__card-name {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .contact__card-name {
    font-size: 1.5rem;
  }
}
.contact__card-title {
  font-size: 3.5rem;
  font-weight: 500;
  font-family: "brandon-grotesque", sans-serif;
}
@media screen and (max-width: 1440px) {
  .contact__card-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1280px) {
  .contact__card-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .contact__card-title {
    font-size: 2.3rem;
  }
}
.contact__card-text {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .contact__card-text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .contact__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18.5px;
  }
}
.contact__message {
  font-size: 1.6rem;
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 1440px) {
  .contact__message {
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .contact__message {
    padding: 0;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
  }
}
.contact__form-container {
  margin-bottom: 120px;
  padding: 50px 125px 100px 75px;
  -webkit-box-shadow: 0 0 20px rgba(7, 30, 29, 0.1);
          box-shadow: 0 0 20px rgba(7, 30, 29, 0.1);
}
@media screen and (max-width: 1440px) {
  .contact__form-container {
    margin: 0 3% 100px;
    padding: 50px 100px 100px 75px;
  }
}
@media screen and (max-width: 767px) {
  .contact__form-container {
    margin: 0 0 60px;
    padding: 35px 25px;
  }
}
.contact__form-container.padding100 {
  padding-top: 100px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contact__form-container.padding100 {
    padding-top: 35px;
  }
}
.contact__progress-wrap {
  max-width: 570px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact__progress-wrap {
    max-width: 260px;
    margin-bottom: 40px;
  }
}
.contact__heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__heading {
    margin-bottom: 40px;
  }
}
.contact__progress {
  width: 100px;
  height: 100px;
  color: #727278;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  background-color: #f1f2f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__progress {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
}
.contact__progress--active {
  color: #fff;
  background-color: #00000b;
}
.contact__progress:not(:last-child)::after {
  content: "";
  height: 1px;
  width: 50px;
  right: -100%;
  position: absolute;
  background-color: #727278;
}
@media screen and (max-width: 767px) {
  .contact__progress:not(:last-child)::after {
    width: 25px;
    right: -53%;
  }
}
.contact__progress:not(:last-child)::before {
  content: "";
  width: 6px;
  height: 1px;
  top: 47%;
  right: -100%;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #727278;
}
@media screen and (max-width: 767px) {
  .contact__progress:not(:last-child)::before {
    top: 47%;
    right: -54%;
  }
}
.contact__progress-icon {
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .contact__progress-icon {
    margin-bottom: 5px;
  }
}
.contact__progress-icon--1 {
  width: 34px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .contact__progress-icon--1 {
    width: 17px;
    height: 20px;
  }
}
.contact__progress-icon--2 {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .contact__progress-icon--2 {
    width: 20px;
    height: 20px;
  }
}
.contact__progress-icon--3 {
  width: 40px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .contact__progress-icon--3 {
    width: 20px;
    height: 16px;
  }
}
.contact__confirm {
  max-width: 570px;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .contact__confirm {
    text-align: center;
    margin-bottom: 50px;
  }
}
.contact__confirm-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .contact__confirm-text {
    font-size: 1.4rem;
  }
}
.contact__confirm-text--bold {
  font-weight: 700;
}

.confirm .form__privacy,
.confirm .form__input-note,
.confirm .form__zip-button {
  display: none;
}
.confirm .form__input-file {
  background-color: transparent;
  border: 0;
}
.confirm .form__input-file > label > span.label {
  display: none !important;
}

.form__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200%;
}
@media screen and (max-width: 767px) {
  .form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form__item--note {
  margin-bottom: 65px !important;
}
@media screen and (max-width: 767px) {
  .form__item--note {
    margin-bottom: 45px !important;
  }
}
.form__item--confirm {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .form__item--confirm {
    margin-bottom: 30px !important;
  }
}
.form__item--start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form__item--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form .form__item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .form .form__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .form .form__item:first-child {
    margin-bottom: 20px;
  }
}
.form .form__item:last-child {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .form .form__item:last-child {
    margin-bottom: 30px;
  }
}
.form__label-wrap {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .form__label-wrap {
    width: 30%;
  }
}
@media screen and (max-width: 1280px) {
  .form__label-wrap {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .form__label-wrap {
    width: 100%;
    margin-bottom: 10px;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
.form__label {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00000b;
}
@media screen and (max-width: 767px) {
  .form__label {
    font-size: 1.6rem;
    margin-right: 10px;
  }
}
.form__label-req {
  color: #727278;
  padding: 1px 12px;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 5px;
  border: 2px solid #727278;
}
@media screen and (max-width: 767px) {
  .form__label-req {
    padding: 0 8px;
    padding-top: 1px;
    font-size: 1.2rem;
    border: 1px solid #727278;
  }
}
.form__label-req--red {
  color: #b01e2d;
  border: 2px solid #b01e2d;
}
@media screen and (max-width: 767px) {
  .form__label-req--red {
    border: 1px solid #b01e2d;
  }
}
.form__input-wrap {
  width: 75%;
  padding-left: 80px;
  font-size: 1.8rem;
  text-align: justify;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 2em;
}
@media screen and (max-width: 1440px) {
  .form__input-wrap {
    width: 70%;
    padding-left: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .form__input-wrap {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .form__input-wrap {
    padding: 0;
    width: 100%;
    font-size: 1.4rem;
  }
}
.form__input-wrap--note {
  position: relative;
}
.form__input-wrap.month, .form__input-wrap.day {
  padding-left: 20px;
}
.form__input-wrap textarea {
  resize: none;
}
.form__input {
  width: 100%;
  padding: 16px;
  outline: none;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  color: #00000b;
  border: 1px solid #f1f2f5;
  background-color: #f1f2f5;
}
@media screen and (max-width: 767px) {
  .form__input {
    padding: 10px;
  }
}
.form__input::-webkit-input-placeholder {
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
}
.form__input::-moz-placeholder {
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
}
.form__input:-ms-input-placeholder {
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
}
.form__input::-ms-input-placeholder {
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
}
.form__input::placeholder {
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .form__input::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .form__input::-moz-placeholder {
    font-size: 1.4rem;
  }
  .form__input:-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .form__input::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .form__input::placeholder {
    font-size: 1.4rem;
  }
}
.form__input.postal {
  width: 184.66px;
}
@media screen and (max-width: 767px) {
  .form__input.postal {
    width: 100%;
  }
}
.form__input.attachment {
  width: 194.66px;
}
@media screen and (max-width: 767px) {
  .form__input.attachment {
    width: 100%;
  }
}
.form__input-note {
  margin-top: 10px;
  position: relative;
  color: #727278;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .form__input-note {
    margin-top: 3px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .form__input-radio-wrapper {
    padding-left: 20px;
  }
}
.form__input-radio {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .form__input-radio {
    margin-bottom: 10px;
  }
}
.form__radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .form__radio-label {
    font-size: 1.4rem;
  }
}
.form__radio-label::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 35px;
  border: 1px solid #00000b;
}
@media screen and (max-width: 767px) {
  .form__radio-label::before {
    width: 15px;
    height: 15px;
    margin-right: 20px;
  }
}
.form__radio-label input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
}
.form__radio-label input[type=radio]:checked + span {
  color: #00000b;
}
.form__radio-label input[type=radio]:checked + span::after {
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  background-color: #fff;
  background-image: url("./src/img/contact/contact-radio-btn.svg");
}
@media screen and (max-width: 767px) {
  .form__radio-label input[type=radio]:checked + span::after {
    width: 17.5px;
    height: 17.5px;
  }
}
.form__privacy {
  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;
  font-size: 1.8rem;
  margin-bottom: 75px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
}
.form__privacy--entry {
  padding-top: 65px;
}
.form__privacy-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.form__privacy-checkbox::before {
  content: "";
  width: 25px;
  height: 25px;
  margin-right: 15px;
  border: 1px solid #00000b;
}
@media screen and (max-width: 767px) {
  .form__privacy-checkbox::before {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
}
.form__privacy-checkbox input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.form__privacy-checkbox input[type=checkbox]:checked + span::after {
  content: "🗸";
  font-size: 2.5rem;
  left: 1.25%;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}
.form__privacy-link {
  color: #727278;
  text-decoration: underline;
  -webkit-text-decoration-color: #727278;
          text-decoration-color: #727278;
}
.form__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .form__button-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form__button {
  width: 100%;
  height: 80px;
  width: 400px;
  color: #fff;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 700;
  border-radius: 50px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  position: relative;
  border: 1px solid #00000b;
  background-repeat: no-repeat;
  background-color: #00000b;
  background-size: 30px 10px;
  background-position: 80% 48%;
  background-image: url("./src/img/contact/contact-arrow-white.svg");
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .form__button {
    width: 287.7px;
    height: 60px;
    font-size: 1.4rem;
    background-size: 20px 10px;
    background-position: 85% 48%;
  }
}
.form__button:hover {
  color: #00000b;
  background-color: #fff;
  background-image: url("./src/img/contact/contact-arrow-black.svg");
}
@media screen and (max-width: 767px) {
  .form__button:hover {
    color: #fff;
    background-color: #00000b;
    background-image: url("./src/img/contact/contact-arrow-white.svg");
  }
}
.form__button--back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #727278;
  margin-right: 60px;
  background-image: none;
  background-color: #fff;
  border: 1px solid #727278;
}
@media screen and (max-width: 767px) {
  .form__button--back {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.form__button--back::after {
  content: "";
  height: 1px;
  width: 30px;
  left: 20%;
  position: absolute;
  background-color: #727278;
}
@media screen and (max-width: 767px) {
  .form__button--back::after {
    width: 20px;
  }
}
.form__button--back::before {
  content: "";
  width: 6px;
  height: 1.5px;
  top: 46%;
  left: 20%;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #727278;
}
@media screen and (max-width: 767px) {
  .form__button--back::before {
    height: 1px;
  }
}
.form__button--back:hover {
  color: #fff;
  background-image: none;
  background-color: #727278;
}
@media screen and (max-width: 767px) {
  .form__button--back:hover {
    color: #727278;
    background-color: #fff;
  }
}
.form__button--back:hover::before, .form__button--back:hover::after {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .form__button--back:hover::before, .form__button--back:hover::after {
    background-color: #727278;
  }
}
.form__button--top {
  color: #00000b;
  background-image: none;
  background-color: #fff;
  border: 1px solid #00000b;
}
.form__button--top::after {
  left: unset;
  right: 20%;
  background-color: #00000b;
}
.form__button--top::before {
  left: unset;
  right: 20%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #00000b;
}
.form__button--top:hover {
  color: #fff;
  background-image: none;
  background-color: #00000b;
}
@media screen and (max-width: 767px) {
  .form__button--top:hover {
    color: #00000b;
    background-color: #fff;
  }
}
.form__button--top:hover::before, .form__button--top:hover::after {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .form__button--top:hover::before, .form__button--top:hover::after {
    background-color: #00000b;
  }
}
.form__input-birth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__select {
  width: 110px;
  padding: 16px;
  outline: none;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  color: #00000b;
  border: 1px solid #f1f2f5;
  background-color: #f1f2f5;
}
@media screen and (max-width: 767px) {
  .form__select {
    padding: 10px;
    width: 100%;
  }
}
.form__select::-webkit-input-placeholder {
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
}
.form__select::-moz-placeholder {
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
}
.form__select:-ms-input-placeholder {
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
}
.form__select::-ms-input-placeholder {
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
}
.form__select::placeholder {
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .form__select::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
  .form__select::-moz-placeholder {
    font-size: 1.4rem;
  }
  .form__select:-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .form__select::-ms-input-placeholder {
    font-size: 1.4rem;
  }
  .form__select::placeholder {
    font-size: 1.4rem;
  }
}
.form__input-zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__zip-button {
  width: 88px;
  min-height: 25px;
  text-align: center;
  background-color: #00000b;
  border-radius: 5px;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}
.form__input-file {
  width: 194.66px;
  outline: none;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  color: #00000b;
  border: 1px solid #f1f2f5;
  background-color: #f1f2f5;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form__input-file {
    width: 100%;
    padding: 0;
  }
}
.form__input-file > label > input {
  opacity: 0;
  overflow: hidden;
}
.form__input-file > label > span.label {
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 190px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form__input-file > label > span.label {
    font-size: 1.4rem;
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

@media screen and (max-width: 1367px) {
  .faq {
    padding: 0 3%;
  }
}
@media screen and (max-width: 981px) {
  .faq {
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 0 5%;
  }
}
.faq--page {
  background-color: #f1f2f5;
}
.faq--page .faq__wrapper {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .faq--page .faq__wrapper {
    width: 100%;
    padding-top: 40px;
  }
}
.faq--page .faq__content {
  display: block;
  margin-top: 0;
  padding: 60px 100px 80px;
}
@media screen and (max-width: 767px) {
  .faq--page .faq__content {
    padding: 20px 0 40px;
  }
}
.faq--page .faq__content-title {
  margin-right: 30px;
}
.faq--page .faq__list {
  margin-top: 0;
}
.faq--page .faq__answer-marker {
  color: #ccccce;
}
.faq--page .faq__answer-text {
  line-height: 2.25em;
}
.faq__wrapper {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .faq__wrapper {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .faq__wrapper {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .faq__wrapper {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .faq__wrapper {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .faq__wrapper {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .faq__wrapper {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .faq__wrapper {
    max-width: 100%;
    padding: 0;
  }
}
.faq__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .faq__tabs {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.faq__tab-item {
  position: relative;
  padding: 0 7px;
  margin: 0 11.5px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .faq__tab-item {
    padding: 5px 10px;
    font-size: 14px;
    margin: 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .faq__tab-item {
    margin-left: 0;
  }
}
.faq__tab-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media screen and (max-width: 767px) {
  .faq__tab-item:not(:nth-last-child(-n+2)) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .faq__tab-item:nth-child(odd) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .faq__tab-item:nth-child(even) {
    margin-right: 0;
  }
}
.faq__tab-item:hover {
  color: #fff;
}
.faq__tab-item:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.faq__tab-item.active {
  color: #fff;
}
.faq__tab-item.active::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.faq__content {
  margin-top: 28px;
  padding: 90px 100px;
  background-color: #f1f2f5;
}
@media screen and (max-width: 1280px) {
  .faq__content {
    padding: 50px;
  }
}
@media screen and (max-width: 767px) {
  .faq__content {
    padding: 20px;
  }
}
.faq__content--service {
  padding: 80px 100px;
}
@media screen and (max-width: 767px) {
  .faq__content--service {
    padding: 40px 10%;
  }
}
.faq__content-head {
  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;
}
@media screen and (max-width: 767px) {
  .faq__content-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.faq__content-title {
  font-size: 3.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .faq__content-title {
    font-size: 2.2rem;
  }
}
.faq__content-subtitle {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
.faq__list {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .faq__list {
    margin-top: 15px;
  }
}
.faq__list:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .faq__list:not(:last-child) {
    margin-bottom: 40px;
  }
}
.faq__item {
  background-color: #fff;
  cursor: pointer;
}
.faq__item:not(:last-child) {
  margin-bottom: 10px;
}
.faq__question {
  position: relative;
  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;
  padding: 30px 60px 30px 30px;
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 15px 35px 15px 15px;
  }
}
.faq__question::before, .faq__question::after {
  content: "";
  position: absolute;
  right: 0;
  width: 15px;
  height: 1px;
  margin: 0 30px;
  background-color: #727278;
  border-radius: 1px;
}
@media screen and (max-width: 767px) {
  .faq__question::before, .faq__question::after {
    margin: 0 15px;
  }
}
.faq__question::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.faq__question.toggle::after {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.faq__answer {
  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;
  height: 0;
  padding-right: 60px;
  padding-left: 30px;
  border-top: 2px dotted #99999d;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding: 0 15px;
  }
}
.faq__answer.show {
  height: 100%;
  padding: 30px 60px 30px 30px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
@media screen and (max-width: 767px) {
  .faq__answer.show {
    padding: 15px;
  }
}
.faq__question-marker, .faq__answer-marker {
  margin-right: 44px;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .faq__question-marker, .faq__answer-marker {
    margin-right: 15px;
    font-size: 1.8rem;
  }
}
.faq__question-text {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .faq__question-text {
    font-size: 1.4rem;
  }
}
.faq__answer-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .faq__answer-text {
    font-size: 1.3rem;
    line-height: 2em;
  }
}
.faq__answer-text .big {
  color: #b01e2d;
}

@-webkit-keyframes tabs {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes tabs {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.other {
  margin: 100px 0;
}
@media screen and (max-width: 767px) {
  .other {
    margin: 50px 0;
  }
}
.other__wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 76px 0 120px;
  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;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .other__wrapper {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .other__wrapper {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .other__wrapper {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .other__wrapper {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .other__wrapper {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .other__wrapper {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .other__wrapper {
    max-width: 100%;
    padding: 0 5%;
  }
}
.other__title {
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 3.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .other__title {
    font-size: 2.2rem;
  }
}
.other__title--web {
  -ms-flex-item-align: center;
      align-self: center;
}
.other__subtitle {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .other__subtitle {
    font-size: 1.2rem;
  }
}
.other__list {
  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;
  width: 100%;
  padding: 30px 0;
  overflow: hidden;
}
@media screen and (max-width: 1367px) {
  .other__list {
    padding: 20px 0;
  }
}
@media screen and (max-width: 1280px) {
  .other__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .other__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow: unset;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.other__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 12.5%;
  height: 166px;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1280px) {
  .other__item {
    width: calc(25% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .other__item {
    width: calc(50% - 10px);
    height: 130px;
  }
}
.other__item:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .other__item:not(:last-child) {
    margin-right: initial;
  }
}
@media screen and (max-width: 767px) {
  .other__item:nth-child(odd) {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1280px) {
  .other__item:not(:nth-last-child(-n+4)) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .other__item:not(:nth-last-child(-n+2)) {
    margin-bottom: 10px;
  }
}
.other__item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .other__item:hover {
    -webkit-transform: unset;
            transform: unset;
  }
}
.other__item.active {
  background: rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.other__icon {
  height: 50px;
}
.other__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.other__text {
  margin-top: 16px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .other__text {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}

.service__section--problem {
  background-image: url("./src/img/service/bg-problem.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 0 210px;
  border-radius: 60px 60px 0 0;
}
@media screen and (max-width: 767px) {
  .service__section--problem {
    border-radius: 30px 30px 0 0;
    padding: 30px 0 50px;
  }
}
.service__section--solution, .service__section--listing {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .service__section--solution, .service__section--listing {
    padding-top: 50px;
  }
}
.service__section--w1400 {
  background-color: #fff;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .service__section--w1400 {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .service__section--w1400 {
    max-width: 1300px;
  }
}
@media screen and (max-width: 767px) {
  .service__section--w1400 {
    margin-top: 50px;
  }
}
.service__problem {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .service__problem {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .service__problem {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .service__problem {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .service__problem {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .service__problem {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .service__problem {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .service__problem {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .service__problem.p-0 {
    padding: 0 5%;
  }
}
.service__problem-cardlist {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .service__problem-cardlist {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .service__problem-cardlist {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .service__problem-cardlist {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .service__problem-cardlist {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .service__problem-cardlist {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .service__problem-cardlist {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .service__problem-cardlist {
    max-width: 100%;
    padding: 0 5%;
  }
}
.service__problem-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
.service__problem-list--07 {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .service__problem-list--07 {
    gap: 20px;
  }
}
.service__problem-item {
  width: 32%;
  height: 190px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .service__problem-item {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .service__problem-item {
    width: 100%;
    height: 100px;
    padding: 3%;
  }
}
.service__problem-item:not(:nth-last-child(-n+3)) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .service__problem-item:not(:nth-last-child(-n+3)) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .service__problem-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.service__problem-item > p {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__problem-item > p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1367px) {
  .service__problem-item > p {
    font-size: 1.6rem;
  }
}
.service__problem-item--web {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .service__problem-item--web {
    width: 100%;
  }
}
.service__problem-item--seo {
  width: 32.5%;
}
@media screen and (max-width: 767px) {
  .service__problem-item--seo {
    width: 100%;
  }
}
.service__problem-item.space-betweeen {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service__problem-item.h-100 {
  height: 100%;
  padding: 0;
}
.service__problem-item--07 {
  width: 24%;
  height: 210px;
}
@media screen and (max-width: 1024px) {
  .service__problem-item--07 {
    width: 100%;
    height: auto;
    padding: 20px;
    margin: 0 !important;
  }
}
.service__problem-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .service__problem-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.service__solution-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .service__solution-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}
.service__solution-item {
  width: 50%;
  height: 490px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .service__solution-item {
    width: 100%;
    height: 400px;
    padding: 0 10%;
  }
}
.service__solution-item--01 {
  background-image: url("./src/img/service/solution-img01.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.service__solution-item--02 {
  background-image: url("./src/img/service/solution-img02.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.service__solution-title {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__solution-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1367px) {
  .service__solution-title {
    margin-bottom: 30px;
  }
}
.service__solution-title > h4, .service__solution-title > span {
  color: #fff;
}
.service__solution-title > h4 {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 8rem;
  font-weight: 400;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .service__solution-title > h4 {
    font-size: 4.5rem;
  }
}
.service__solution-title > span {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .service__solution-title > span {
    font-size: 1.5rem;
  }
}
.service__solution-text > p {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1367px) {
  .service__solution-text > p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .service__solution-text > p {
    font-size: 1.3rem;
  }
}
.service__listing {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .service__listing {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .service__listing {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .service__listing {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .service__listing {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .service__listing {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .service__listing {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .service__listing {
    max-width: 100%;
  }
}
.service__listing-heading {
  font-size: 20px;
  font-weight: 700;
  margin-top: 60px;
  position: relative;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .service__listing-heading {
    margin-top: 30px;
  }
}
.service__listing-heading::before {
  content: "";
  width: 12px;
  height: 11px;
  background-image: url("./src/img/icons/black-caret.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.service__listing-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .service__listing-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 0;
  }
}
.service__listing-item {
  width: 33.3333333333%;
  min-height: 190px;
  border: 1px solid #e0e2e9;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  padding-block: 30px;
}
@media screen and (max-width: 767px) {
  .service__listing-item {
    width: 100%;
    padding: 30px 20px 30px;
  }
}
.service__listing-item:not(:last-child) {
  margin-right: 22px;
}
@media screen and (max-width: 767px) {
  .service__listing-item:not(:last-child) {
    margin: 0 0 20px 0;
  }
}
.service__listing-number {
  width: 60px;
  height: 60px;
  background-color: #b01e2d;
  border-bottom-right-radius: 20px;
  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;
  position: absolute;
  top: 0;
  left: 0;
}
.service__listing-number > span {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.service__listing-content > h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-inline: 60px;
}
@media screen and (max-width: 767px) {
  .service__listing-content > h6 {
    padding-inline: 40px;
  }
}
.service__listing-content > p {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 1367px) {
  .service__listing-content > p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .service__listing-content > p {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .service__listing-content > p {
    padding: 0;
  }
}
.service__listing-text {
  font-size: 1.6rem;
}
.service__listing-image-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
.service__listing-image {
  width: 22.5%;
  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;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__listing-image {
    width: 49%;
    margin-bottom: 20px;
  }
}
.service__listing-image > img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .service__listing-image > img {
    margin-bottom: 10px;
  }
}
.service__listing-image > span {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .service__listing-image > span {
    font-size: 1.1rem;
  }
}
.service__listing-image--web {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .service__listing-image--web {
    width: 100%;
  }
}
.service__price-description {
  font-size: 16px;
}
.service--consulting .service__solution-item {
  position: relative;
}
.service--consulting .service__solution-item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #00000b;
  opacity: 0.5;
}
.service--consulting .service__solution-title,
.service--consulting .service__solution-text {
  position: relative;
  z-index: 1;
}
.service__solution-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #727278;
}
.service__solution-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__case-list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .service__case-list {
    max-width: 1250px;
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 1367px) {
  .service__case-list {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .service__case-list {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .service__case-list {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .service__case-list {
    max-width: 100%;
  }
}
.service__case-item {
  width: calc(50% - 30px);
  position: relative;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .service__case-item {
    padding-left: 20px;
    margin-bottom: 30px;
    width: 100%;
  }
}
.service__case-item:not(:nth-last-child(-n+2)) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .service__case-item:not(:nth-last-child(-n+2)) {
    margin-bottom: 30px;
  }
}
.service__case-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
}
.service__case-marker::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #b01e2d;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.service__case-marker::after {
  content: "";
  display: block;
  width: 1px;
  background: #727278;
  position: absolute;
  top: 17px;
  bottom: 0;
  left: 4px;
}
.service__case-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .service__case-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10.5px;
  }
}
@media screen and (-ms-high-contrast: none) and (max-width: 767px), screen and (-ms-high-contrast: active) and (max-width: 767px) {
  .service__case-wrapper {
    padding-bottom: 41px;
  }
}
.service__case-image {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .service__case-image {
    width: 130px;
    height: 130px;
    margin: 0 0 20px 0;
  }
}
.service__case-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service__case-feature {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
.service__case-text, .service__price-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .service__case-text, .service__price-text {
    font-size: 1.3rem;
  }
}
.service__case-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #b01e2d;
  line-height: 1.7777777778em;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .service__case-subtitle {
    font-size: 1.4rem;
  }
}
.service__service-wrapper {
  position: relative;
  border: 1px solid transparent;
}
.service__service-wrapper .voice__progress-container {
  top: 47px;
}
.service__service-list {
  margin-top: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1440px) {
  .service__service-list {
    max-width: 1250px;
    margin: 68px auto 0;
  }
}
@media screen and (max-width: 1367px) {
  .service__service-list {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .service__service-list {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .service__service-list {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .service__service-list {
    max-width: 100%;
    margin-top: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
.service__service-item {
  width: calc(16.6666666667% - 20px);
  height: 218px;
  background-color: #fff;
  border: 1px solid #e0e2e9;
  -webkit-box-shadow: 0 10px 10px rgba(4, 4, 61, 0.1);
          box-shadow: 0 10px 10px rgba(4, 4, 61, 0.1);
  mix-blend-mode: multiply;
  margin-right: 20px;
  padding: 40px 0 25px;
}
@media screen and (max-width: 767px) {
  .service__service-item {
    width: 150px;
    height: 150px;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-right: 0;
    padding: 10px 0;
  }
}
.service__service-item:not(:nth-last-child(-n+6)) {
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .service__service-item:not(:nth-last-child(-n+6)) {
    margin-bottom: 0;
  }
}
.service__service-item:nth-child(6n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .service__service-item:nth-child(6n) {
    margin-right: 0px;
  }
}
.service__service-item > p {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2em;
}
@media screen and (max-width: 1367px) {
  .service__service-item > p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 981px) {
  .service__service-item > p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .service__service-item > p {
    font-size: 1.3rem;
  }
}
.service__service-image {
  width: 100px;
  height: 93px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .service__service-image {
    height: 80px;
  }
}
.service__service-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .service__service-image img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
  }
}
.service__price-wrapper {
  padding-top: 60px;
}
@media screen and (max-width: 1440px) {
  .service__price-wrapper {
    max-width: 1250px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1367px) {
  .service__price-wrapper {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .service__price-wrapper {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .service__price-wrapper {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .service__price-wrapper {
    max-width: 100%;
    padding-top: 30px;
  }
}
.service__price-list {
  margin: 40px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service__price-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 0 50px;
  }
}
.service__price-list .service__price-item:nth-child(1) {
  max-width: 450px;
  width: 32.2%;
}
@media screen and (max-width: 767px) {
  .service__price-list .service__price-item:nth-child(1) {
    width: 100%;
  }
}
.service__price-list .service__price-item:nth-child(2) {
  max-width: 890px;
  width: 63.6%;
}
@media screen and (max-width: 767px) {
  .service__price-list .service__price-item:nth-child(2) {
    width: 100%;
  }
}
.service__price-title {
  padding-left: 28px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8em;
  position: relative;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .service__price-title {
    font-size: 1.5rem;
    margin-bottom: 19px;
    padding-left: 20px;
  }
}
.service__price-title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 11px;
  background: url("./src/img/service2-arrow.png") no-repeat;
}
.service__price-rate {
  width: 100%;
  -webkit-box-shadow: 0 10px 10px rgba(4, 4, 63, 0.1);
          box-shadow: 0 10px 10px rgba(4, 4, 63, 0.1);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .service__price-rate {
    margin-bottom: 40px;
  }
}
.service__price-rate-item {
  width: 100%;
  background-color: #fff;
}
.service__price-rate-item h4 {
  background-color: #b01e2d;
  height: 70px;
  color: #fff;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .service__price-rate-item h4 {
    font-size: 1.4rem;
    height: 40px;
  }
}
.service__price-rate-item > p {
  padding: 30px 28px;
}
@media screen and (max-width: 767px) {
  .service__price-rate-item > p {
    padding: 15px 14px;
  }
}
.service__price-rate-item:nth-child(2) > h4 {
  background-color: #841622;
}
.service__price-rate-item:last-child > h4 {
  background-color: #580f17;
}
.service__price-support {
  width: 100%;
}
.service__price-support li {
  border-bottom: 1.5px dotted #99999d;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .service__price-support li {
    padding: 10px 0 5px;
  }
}
.service__card {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: calc(25% - 20px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__card {
    width: 100%;
    margin: 10px 0;
  }
}
.service__card-imagewrap {
  width: 100%;
}
.service__card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__card-wrapper {
  padding: 15px 10px 20px;
}
.service__card-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .service__card-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1367px) {
  .service__card-title {
    font-size: 1.6rem;
  }
}
.service__card-description {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

.rumors__qna {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .rumors__qna {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .rumors__qna {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .rumors__qna {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .rumors__qna {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__qna {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__qna {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__qna {
    padding: 0 5%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.rumors__qna .rumors__text:nth-child(2) {
  margin: 40px 0 50px;
}
@media screen and (max-width: 767px) {
  .rumors__qna .rumors__text:nth-child(2) {
    margin: 20px 0;
  }
}
.rumors__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6em;
  text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
@media screen and (max-width: 767px) {
  .rumors__title {
    font-size: 1.8rem;
  }
}
.rumors__title--arrow {
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .rumors__title--arrow {
    padding-left: 15px;
  }
}
.rumors__title--arrow::before {
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("./src/img/service/rumors-triangle-black.svg") no-repeat center;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .rumors__title--arrow::before {
    width: 8px;
    height: 8px;
  }
}
.rumors__title--problem {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .rumors__title--problem {
    margin-top: 20px;
  }
}
.rumors__text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
  text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
@media screen and (max-width: 767px) {
  .rumors__text {
    font-size: 1.4rem;
    line-height: 1.5em;
  }
}
.rumors__text--18 {
  font-size: 1.8rem;
  line-height: 1.7777777778em;
}
@media screen and (max-width: 767px) {
  .rumors__text--18 {
    font-size: 1.6rem;
  }
}
.rumors__text--red {
  color: #b01e2d;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .rumors__text--red {
    font-size: 1.4rem;
  }
}
.rumors__text--keywords {
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .rumors__text--keywords {
    margin: 20px 0 0 !important;
  }
}
.rumors__influence {
  padding: 60px 0;
  background-color: #f1f2f5;
}
@media screen and (max-width: 1367px) {
  .rumors__influence {
    padding: 60px 3%;
  }
}
@media screen and (max-width: 767px) {
  .rumors__influence {
    padding: 30px 0 10px;
  }
}
.rumors__influence-wrap {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .rumors__influence-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .rumors__influence-wrap {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .rumors__influence-wrap {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .rumors__influence-wrap {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__influence-wrap {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__influence-wrap {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__influence-wrap {
    padding: 0 5%;
    max-width: 100%;
  }
}
.rumors__influence-wrap .rumors__text {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .rumors__influence-wrap .rumors__text {
    margin: 20px 0;
  }
}
.rumors__influence-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0 30px;
}
@media screen and (max-width: 767px) {
  .rumors__influence-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.rumors__influence-visual--left {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .rumors__influence-visual--left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.rumors__influence-visual--right {
  width: 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .rumors__influence-visual--right {
    width: 100%;
  }
}
@media screen and (max-width: 420px) {
  .rumors__influence-visual--right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .rumors__influence-visual--right .rumors__influence-graph:first-child {
    margin-bottom: 30px;
  }
}
.rumors__influence-bubble {
  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: 100%;
  height: 90px;
  border-radius: 7px;
  margin-bottom: 30px;
  background-color: #b01e2d;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .rumors__influence-bubble {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__influence-bubble {
    height: unset;
    padding: 10px;
    padding-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
}
.rumors__influence-bubble::after {
  content: "";
  height: 15px;
  width: 17px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("./src/img/service/rumors-triangle-red.svg") no-repeat center;
  background-size: 100%;
}
.rumors__influence-speech {
  color: #fff;
  margin-right: 35px;
  font: 700 1.8rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  line-height: 1.7777777778em;
}
@media screen and (max-width: 1280px) {
  .rumors__influence-speech {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__influence-speech {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .rumors__influence-speech {
    margin: 0;
    font-size: 1.6rem;
    text-align: center;
  }
}
.rumors__influence-percent {
  color: #fff;
  font: 700 7rem "brandon-grotesque", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .rumors__influence-percent {
    line-height: 1em;
  }
}
.rumors__influence-percent span:last-child {
  font-size: 4rem;
}
.rumors__influence-percent--graph {
  color: #00000b;
}
@media screen and (max-width: 1280px) {
  .rumors__influence-percent--graph {
    font-size: 5rem;
  }
  .rumors__influence-percent--graph span:last-child {
    font-size: 2rem;
  }
}
.rumors__influence-image {
  width: 100%;
  height: auto;
}
.rumors__influence-graph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .rumors__influence-graph {
    width: 48%;
  }
}
@media screen and (max-width: 420px) {
  .rumors__influence-graph {
    width: 100%;
  }
}
.rumors__influence-graph-speech {
  height: 96px;
  width: 300px;
  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;
  background: url("./src/img/service/rumors-speech-white.svg") no-repeat center;
  background-size: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1440px) {
  .rumors__influence-graph-speech {
    width: 100%;
  }
}
@media screen and (max-width: 420px) {
  .rumors__influence-graph-speech {
    height: auto;
    padding: 10px 0 0;
  }
}
.rumors__influence-graph-text {
  text-align: center;
  font: 700 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  line-height: 1.75em;
  padding-bottom: 14px;
}
@media screen and (max-width: 1280px) {
  .rumors__influence-graph-text {
    font-size: 1.2rem;
  }
}
.rumors__influence-graph-text--circle {
  padding-bottom: 0;
  margin: 20px 0 -20px;
  line-height: 2em;
}
@media screen and (max-width: 1280px) {
  .rumors__influence-graph-text--circle {
    line-height: 2.5em;
  }
}
@media screen and (max-width: 767px) {
  .rumors__influence-graph-text--circle {
    margin: 20px 0 -10px;
  }
}
.rumors__influence-graph-data {
  width: 300px;
  height: 300px;
  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;
  background: url("./src/img/service/rumors-circle-red.svg") no-repeat center;
  background-size: 100%;
}
@media screen and (max-width: 1440px) {
  .rumors__influence-graph-data {
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width: 1367px) {
  .rumors__influence-graph-data {
    width: 260px;
    height: 260px;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__influence-graph-data {
    width: 200px;
    height: 200px;
  }
}
.rumors__influence-graph-data--black {
  background: url("./src/img/service/rumors-circle-black.svg") no-repeat center;
}
.rumors__influence-graph-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #fff;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1367px) {
  .rumors__influence-graph-circle {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__influence-graph-circle {
    width: 140px;
    height: 140px;
  }
}
.rumors__result {
  padding: 60px 0 100px;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .rumors__result {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .rumors__result {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .rumors__result {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .rumors__result {
    max-width: 1200px;
    padding: 60px 0 100px;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__result {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__result {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__result {
    max-width: 100%;
    padding: 30px 5%;
  }
}
.rumors__result .rumors__text:nth-child(2) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .rumors__result .rumors__text:nth-child(2) {
    margin-top: 20px;
  }
}
.rumors__result .rumors__text:nth-child(4),
.rumors__result .rumors__text:nth-child(5) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .rumors__result .rumors__text:nth-child(4),
  .rumors__result .rumors__text:nth-child(5) {
    margin-bottom: 20px;
  }
}
.rumors__result-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .rumors__result-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.rumors__result-container--left {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .rumors__result-container--left {
    width: 100%;
  }
}
.rumors__result-container--right {
  width: 41%;
  height: 480px;
  padding: 52px 44px;
  border-radius: 32px;
  background-color: #727278;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .rumors__result-container--right {
    height: 440px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__result-container--right {
    height: 390px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__result-container--right {
    width: 100%;
    height: auto;
    padding: 20px;
    margin: 20px 0 0;
    border-radius: 18px;
  }
}
.rumors__result-list {
  width: 100%;
  margin: 30px 0;
  max-width: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1367px) {
  .rumors__result-list {
    gap: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__result-list {
    gap: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .rumors__result-list {
    gap: 10px;
    margin: 20px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.rumors__result-list--right {
  margin: 0;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .rumors__result-list--right {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .rumors__result-list--right {
    gap: 15px;
  }
}
.rumors__result-list--nobg {
  margin: 0;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1600px) {
  .rumors__result-list--nobg {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__result-list--nobg {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__result-list--nobg {
    gap: 8px;
    margin: 0;
  }
}
.rumors__result-list--measures {
  max-width: 580px;
}
@media screen and (max-width: 1024px) {
  .rumors__result-list--measures {
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.rumors__result-item {
  width: 130px;
  height: -webkit-fill-available;
  min-height: 130px;
  color: #fff;
  text-align: center;
  line-height: 1.2em;
  padding: 10px 9px 0;
  font: 700 1.4rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  background-color: #727278;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1367px) {
  .rumors__result-item {
    width: 19%;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__result-item {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .rumors__result-item {
    height: auto;
    font-size: 1rem;
    padding: 10px 0 5px;
  }
}
@media screen and (max-width: 360px) {
  .rumors__result-item {
    padding: 10px;
    height: 100px;
  }
}
.rumors__result-item--big {
  padding: 0;
  width: unset;
  height: unset;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .rumors__result-item--big {
    font-size: 1rem;
  }
}
.rumors__result-item--red {
  padding: 10px 9px 0;
  line-height: 1.2em;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #b01e2d), to(#F2544C));
  background: linear-gradient(to right, #b01e2d 20%, #F2544C 100%);
}
@media screen and (max-width: 1367px) {
  .rumors__result-item--red {
    width: 24%;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__result-item--red {
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  .rumors__result-item--red {
    padding: 5px 0;
  }
}
@media screen and (max-width: 360px) {
  .rumors__result-item--red {
    padding: 10px;
    height: 100px;
  }
}
.rumors__result-item--nobg {
  width: unset;
  background-color: unset;
  line-height: 2.5em;
}
@media screen and (max-width: 1024px) {
  .rumors__result-item--nobg {
    width: 33%;
  }
}
@media screen and (max-width: 767px) {
  .rumors__result-item--nobg {
    width: unset;
  }
}
.rumors__result-icon {
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 767px) {
  .rumors__result-icon {
    width: 50px;
    height: 50px;
  }
}
.rumors__result-icon--big {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 1024px) {
  .rumors__result-icon--big {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__result-icon--big {
    width: 50px;
    height: 50px;
  }
}
.rumors__result-icon--measures {
  width: 95px;
  height: 75px;
}
@media screen and (max-width: 767px) {
  .rumors__result-icon--measures {
    width: 50px;
    height: 50px;
  }
}
.rumors__result-graph {
  width: 490px;
  position: absolute;
  bottom: 52px;
}
@media screen and (max-width: 1600px) {
  .rumors__result-graph {
    width: 83%;
  }
}
@media screen and (max-width: 767px) {
  .rumors__result-graph {
    width: 100%;
    position: unset;
    margin: -20px 0 0;
  }
}
.rumors__measures {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .rumors__measures {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .rumors__measures {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .rumors__measures {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .rumors__measures {
    max-width: 1200px;
    padding: 100px 0;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__measures {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__measures {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__measures {
    max-width: 100%;
    padding: 30px 5%;
  }
}
.rumors__measures .rumors__text:nth-child(2) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .rumors__measures .rumors__text:nth-child(2) {
    margin-top: 20px;
  }
}
.rumors__measures-box {
  width: 100%;
  height: 450px;
  margin-top: 40px;
  padding: 40px 58px;
  border: 1px solid #e0e2e9;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .rumors__measures-box {
    height: 380px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__measures-box {
    height: auto;
    padding: 20px;
    margin-top: 30px;
  }
}
.rumors__measures-box .rumors__text {
  line-height: 1.7em;
}
.rumors__measures-box .rumors__text:nth-child(2) {
  margin-top: 10px;
}
.rumors__measures-box--last {
  padding: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  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: 767px) {
  .rumors__measures-box--last {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.rumors__measures-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 767px) {
  .rumors__measures-title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.rumors__measures-number {
  color: #727278;
  margin-right: 20px;
  font: 700 3.6rem "brandon-grotesque", sans-serif;
}
@media screen and (max-width: 767px) {
  .rumors__measures-number {
    line-height: 1em;
    margin-right: 10px;
  }
}
.rumors__measures-diagrams {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .rumors__measures-diagrams {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.rumors__measures-img {
  width: 31%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .rumors__measures-img {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
  }
}
.rumors__measures-img::after {
  content: "";
  width: 32px;
  height: 35px;
  position: absolute;
  top: 50%;
  right: -100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("./src/img/common/triangle-gray-str.png") no-repeat center;
  background-size: 100%;
}
@media screen and (max-width: 1280px) {
  .rumors__measures-img::after {
    right: -25%;
  }
}
@media screen and (max-width: 767px) {
  .rumors__measures-img::after {
    top: unset;
    width: 18px;
    height: 20px;
    right: 50%;
    bottom: -20px;
    -webkit-transform: translate(0, 50%) rotate(90deg);
            transform: translate(0, 50%) rotate(90deg);
  }
}
.rumors__measures-img img {
  width: 100%;
}
.rumors__measures-img--icon {
  width: 13%;
}
@media screen and (max-width: 767px) {
  .rumors__measures-img--icon {
    width: 50%;
    margin: 0;
  }
}
.rumors__measures-img--icon::after {
  display: none;
}
.rumors__measures-container--left {
  width: 54%;
  padding: 40px 58px;
}
@media screen and (max-width: 767px) {
  .rumors__measures-container--left {
    width: 100%;
    padding: 20px;
  }
}
.rumors__measures-container--right {
  width: 46%;
  height: auto;
  padding: 45px 38px;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #b01e2d), to(#F2544C));
  background: linear-gradient(to right, #b01e2d 20%, #F2544C 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .rumors__measures-container--right {
    width: 100%;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.rumors__measures-graph {
  position: absolute;
  width: 560px;
  height: auto;
  right: 5%;
}
@media screen and (max-width: 1600px) {
  .rumors__measures-graph {
    width: 87%;
    bottom: 5%;
  }
}
@media screen and (max-width: 1440px) {
  .rumors__measures-graph {
    width: 85%;
    bottom: 2%;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__measures-graph {
    height: 415px;
    bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__measures-graph {
    width: 85%;
    bottom: 30%;
    height: 220px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__measures-graph {
    width: 100%;
    height: auto;
    position: unset;
  }
}
.rumors__keywords {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 100px 0;
}
@media screen and (max-width: 767px) {
  .rumors__keywords {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .rumors__keywords {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .rumors__keywords {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .rumors__keywords {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__keywords {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__keywords {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__keywords {
    max-width: 100%;
    padding: 0 5% 30px;
  }
}
.rumors__keywords .rumors__text:nth-child(3) {
  margin: 50px 0 30px;
}
@media screen and (max-width: 767px) {
  .rumors__keywords .rumors__text:nth-child(3) {
    margin: 20px 0;
  }
}
.rumors__keywords .rumors__text:nth-child(5) {
  margin: 10px 0 40px;
}
@media screen and (max-width: 767px) {
  .rumors__keywords .rumors__text:nth-child(5) {
    margin: 20px 0;
  }
}
.rumors__keywords .rumors__text:nth-child(8) {
  margin: 10px 0 40px;
}
@media screen and (max-width: 767px) {
  .rumors__keywords .rumors__text:nth-child(8) {
    margin: 20px 0;
  }
}
.rumors__keywords-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1367px) {
  .rumors__keywords-wrap {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .rumors__keywords-wrap {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.rumors__keywords-wrap--first {
  margin-bottom: 20px;
}
.rumors__keywords-item {
  width: 480px;
}
@media screen and (max-width: 1367px) {
  .rumors__keywords-item {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .rumors__keywords-item {
    width: 100%;
  }
}
.rumors__keywords-head {
  font: 700 1.8rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  line-height: 1.7777777778em;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
  position: relative;
}
.rumors__keywords-head::before {
  z-index: 2;
  content: "";
  height: 3px;
  width: 100px;
  border-radius: 5px;
  background-color: #b01e2d;
  position: absolute;
  left: 0;
  bottom: 0;
}
.rumors__keywords-head::after {
  z-index: 1;
  content: "";
  height: 3px;
  width: 100%;
  border-radius: 5px;
  background-color: #e3e3e4;
  position: absolute;
  left: 0;
  bottom: 0;
}
.rumors__keywords-box {
  background: #f1f2f5;
  height: 280px;
  padding: 25px;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .rumors__keywords-box {
    height: auto;
    margin: 20px 0 0;
  }
}
.rumors__keywords-box--h240 {
  height: 240px;
}
@media screen and (max-width: 1024px) {
  .rumors__keywords-image {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .rumors__keywords-image {
    width: 100%;
    height: auto;
  }
}
.rumors__flow {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .rumors__flow {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .rumors__flow {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .rumors__flow {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .rumors__flow {
    max-width: 1200px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__flow {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__flow {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__flow {
    max-width: 100%;
    margin-bottom: 0;
  }
}
.rumors__price {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 100px auto;
}
@media screen and (max-width: 767px) {
  .rumors__price {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .rumors__price {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .rumors__price {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .rumors__price {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__price {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__price {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__price {
    margin: 0;
    max-width: 100%;
    padding: 0 5% 30px;
  }
}
.rumors__price .rumors__price-list:nth-child(2) {
  margin: 60px 0 40px;
}
@media screen and (max-width: 767px) {
  .rumors__price .rumors__price-list:nth-child(2) {
    margin: 20px 0;
  }
}
.rumors__price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .rumors__price-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.rumors__price-item {
  width: 31%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .rumors__price-item {
    width: 100%;
  }
}
.rumors__price-head {
  width: 100%;
  height: 60px;
  color: #fff;
  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;
  font: 700 2rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  background-color: #b01e2d;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .rumors__price-head {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .rumors__price-head {
    height: 50px;
  }
}
.rumors__price-head--black {
  background-color: #00000b;
}
.rumors__price-data {
  min-height: 125px;
  padding: 20px;
  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;
  row-gap: 28px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #727278;
}
@media screen and (max-width: 767px) {
  .rumors__price-data {
    row-gap: 5px;
    height: auto;
  }
}
.rumors__price-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rumors__price-label {
  color: #727278;
  margin: 0 40px 0 0;
  font: 700 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 1024px) {
  .rumors__price-label {
    margin: 0 20px 0 0;
  }
}
.rumors__price-example {
  height: 212px;
  padding: 28px 0;
  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;
  position: relative;
}
.rumors__price-text {
  font: 700 1.8rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
.rumors__price-text--small {
  font-size: 1.6rem;
  line-height: 2.25em;
}
@media screen and (max-width: 1280px) {
  .rumors__price-text--small {
    font-size: 1.2rem;
  }
}
.rumors__price-image--first {
  position: absolute;
  left: 7%;
}
@media screen and (max-width: 767px) {
  .rumors__price-image--first {
    top: 15%;
    width: 50%;
  }
}
.rumors__price-text-wrap--first {
  position: absolute;
  right: 7%;
  top: 34%;
}
@media screen and (max-width: 1280px) {
  .rumors__price-text-wrap--first {
    top: 38%;
  }
}
@media screen and (max-width: 767px) {
  .rumors__price-text-wrap--first {
    top: 35%;
    right: 8%;
  }
}
.rumors__price-note {
  margin-top: 20px;
  font: 500 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
.rumors__case {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 100px;
}
@media screen and (max-width: 767px) {
  .rumors__case {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .rumors__case {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .rumors__case {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .rumors__case {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__case {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__case {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__case {
    max-width: 100%;
    padding: 0 5% 30px;
  }
}
.rumors__case-list .rumors__case-item:first-child {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .rumors__case-list .rumors__case-item:first-child {
    margin-top: 30px;
  }
}
.rumors__case-item {
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .rumors__case-item {
    margin-top: 30px;
  }
}
.rumors__case-content {
  padding-left: 38px;
}
@media screen and (max-width: 767px) {
  .rumors__case-content {
    padding-left: 20px;
  }
}
.rumors__case-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .rumors__case-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.rumors__case-image {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .rumors__case-image {
    width: 130px;
    height: 130px;
    margin: 0 0 20px 0;
  }
}
.rumors__case-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}
.rumors__case-text {
  font: 700 1.8rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  position: relative;
}
.rumors__case-text--red {
  color: #b01e2d;
  padding-left: 20px;
}
.rumors__case-text--red::after {
  content: "";
  width: 6px;
  height: 8px;
  position: absolute;
  left: 2%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("./src/img/service/rumors-caret-gray.svg") no-repeat center;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .rumors__case-text--red::after {
    top: 20%;
    margin-left: 8px;
  }
}
@media screen and (max-width: 560px) {
  .rumors__case-text--red::after {
    left: 10%;
    margin: 0;
  }
}
.rumors__consultation {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .rumors__consultation {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .rumors__consultation {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .rumors__consultation {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .rumors__consultation {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__consultation {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__consultation {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__consultation {
    max-width: 100%;
    padding: 30px 5%;
  }
}
.rumors__consultation .rumors__text:nth-child(3) {
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .rumors__consultation .rumors__text:nth-child(3) {
    margin: 20px 0;
  }
}
.rumors__agents {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .rumors__agents {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .rumors__agents {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .rumors__agents {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .rumors__agents {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .rumors__agents {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .rumors__agents {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .rumors__agents {
    padding: 0 5%;
    max-width: 100%;
  }
}
.rumors__agents .rumors__text:nth-child(3) {
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .rumors__agents .rumors__text:nth-child(3) {
    margin: 20px 0;
  }
}
.rumors__center {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}
@media screen and (max-width: 1600px) {
  .rumors__banner {
    width: 100%;
    height: auto;
  }
}

.meo {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .meo {
    margin-top: 30px;
  }
}
.meo__wrapper {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 90px 0 0;
}
@media screen and (max-width: 767px) {
  .meo__wrapper {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .meo__wrapper {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .meo__wrapper {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .meo__wrapper {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .meo__wrapper {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .meo__wrapper {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .meo__wrapper {
    padding: 0 5%;
    max-width: 100%;
    padding-top: 45px;
  }
}
.meo__section {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.meo__section:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .meo__section:not(:last-child) {
    margin-bottom: 30px;
  }
}
.meo__section--mb30 {
  margin-bottom: 30px;
}
.meo__section-head {
  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;
}
@media screen and (max-width: 767px) {
  .meo__section-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.meo__section-head .section__title {
  margin-right: 20px;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .meo__section-head .section__title {
    margin-right: 0;
    font-size: 2.1rem;
  }
}
.meo__section-head .section__subtitle {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .meo__section-head .section__subtitle {
    margin-top: 10px;
    font-size: 1.6rem;
  }
}
.meo__section-head .center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.meo__section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .meo__section-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.meo__section-content--align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.meo__section-shadow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e2e9;
}
@media screen and (max-width: 767px) {
  .meo__section-shadow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
}
.meo__section-shadow--align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.meo__col {
  width: auto;
}
@media screen and (max-width: 767px) {
  .meo__col {
    width: 100%;
  }
}
.meo__col--half {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .meo__col--half {
    width: 100%;
  }
}
.meo__col--full {
  width: 100%;
}
.meo__col--price {
  width: 65%;
  margin-left: auto;
}
@media screen and (max-width: 1367px) {
  .meo__col--price {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .meo__col--price {
    width: 100%;
  }
}
.meo__col--img {
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .meo__col--img {
    margin-left: 0;
  }
}
.meo__col--p20 {
  width: 100%;
  padding: 20px;
}
.meo__col.mr-30 {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .meo__col.mr-30 {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .meo__col.w-auto {
    width: auto;
  }
}
.meo__text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .meo__text {
    margin-top: 20px;
  }
}
.meo__text--td {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .meo__text--td {
    margin-top: 10px;
  }
}
.meo__text--td p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .meo__text--td p {
    font-size: 1.2rem !important;
  }
}
.meo__text-span {
  width: 20px;
  height: 20px;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("./src/img/service-8/arrow.svg");
}
.meo__text-block {
  width: 150px;
  font-size: 1.8rem;
  padding: 10px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .meo__text-block {
    font-size: 1.6rem;
  }
}
.meo__text p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .meo__text p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .meo__text p.text-justify {
    text-align: justify;
  }
}
.meo__text p.ml20 {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .meo__text p.ml20 {
    margin-left: 0;
  }
}
.meo__text h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .meo__text h3 {
    font-size: 1.5rem;
  }
}
.meo__text h3.red {
  color: #b01e2d;
}
@media screen and (max-width: 767px) {
  .meo__text h3.text-justify {
    text-align: justify;
  }
}
.meo__text .margin {
  margin-top: -30px;
  margin-left: 125px;
}
@media screen and (max-width: 767px) {
  .meo__text .margin {
    margin-top: -15px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .meo__text .consult-br {
    display: none;
  }
}
.meo__text .bold {
  font-weight: 700;
}
.meo__text .md-bold {
  font-weight: 500;
}
.meo__text .bg-red {
  background-color: #b01e2d;
  color: #fff;
}
.meo__text .bg-black {
  background-color: #000;
  color: #fff;
}
.meo__text.mt-50 {
  margin-top: 50px;
}
.meo__text.mt-10 {
  margin-top: 10px;
}
.meo__text.mt-0 {
  margin-top: 0;
}
.meo__text.space-center {
  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;
}
.meo__text.flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .meo__text.flex-d {
    -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;
  }
}
.meo__content-title {
  position: relative;
  padding-left: 30px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .meo__content-title {
    font-size: 1.6rem;
  }
}
.meo__content-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 11px;
  background: url("./src/img/common/triangle-black.png") no-repeat center;
}
.meo__content-title--simple {
  padding-left: 0;
}
.meo__content-title--simple::before {
  content: none;
}
.meo__img {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .meo__img {
    margin-left: 0;
    margin-top: 10px;
  }
}
.meo__img--voice {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .meo__img--voice {
    margin-right: 0;
  }
}
.meo__img--step {
  margin-bottom: 20px;
}
.meo__img--reason {
  margin-top: 20px;
}
.meo__img--table {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 767px) {
  .meo__img--table {
    width: 20px;
    height: 20px;
    margin: 10px auto 0 auto;
  }
}
.meo__img.price {
  width: 100%;
  height: 180px;
  padding: 20px;
  border-top: 1px solid #727278;
}
@media screen and (max-width: 767px) {
  .meo__img.mtop20-sp {
    margin-top: 20px;
  }
}
.meo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.meo__img .border {
  border: 1px solid #727278;
}
.meo__img-w460 {
  width: 460px;
  margin: 30px 0 0 30px;
}
@media screen and (max-width: 1280px) {
  .meo__img-w460 {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .meo__img-w460 {
    width: 100%;
    margin: 0;
  }
}
.meo__img .w340 {
  width: 340px;
}
@media screen and (max-width: 1367px) {
  .meo__img .w340 {
    width: 200px;
  }
}
@media screen and (max-width: 981px) {
  .meo__img .w340 {
    width: 100%;
  }
}
.meo__img .w360 {
  width: 360px;
}
@media screen and (max-width: 1367px) {
  .meo__img .w360 {
    width: 200px;
  }
}
@media screen and (max-width: 981px) {
  .meo__img .w360 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .meo__img.sp-w100 {
    width: 100%;
  }
}
.meo__card-list {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .meo__card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.meo__card-item {
  position: relative;
  width: 33.33%;
  height: 160px;
  border: 1px solid #dae1ea;
  -webkit-box-shadow: 0 20px 20px rgba(7, 30, 29, 0.1);
          box-shadow: 0 20px 20px rgba(7, 30, 29, 0.1);
  padding-top: 20px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .meo__card-item {
    width: 100%;
    min-height: 100px;
    padding-top: 0;
  }
}
@media screen and (max-width: 360px) {
  .meo__card-item {
    width: 275px;
  }
}
.meo__card-item:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .meo__card-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.meo__card-item--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 20%;
  height: auto;
  min-height: 430px;
  padding: 40px 30px;
}
@media screen and (max-width: 1600px) {
  .meo__card-item--vertical {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 1280px) {
  .meo__card-item--vertical {
    min-height: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .meo__card-item--vertical {
    min-height: 565px;
  }
}
@media screen and (max-width: 767px) {
  .meo__card-item--vertical {
    width: 100%;
    height: auto;
    min-height: auto;
  }
}
.meo__card-item--vertical:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .meo__card-item--vertical:not(:last-child) {
    margin-right: 0;
  }
}
.meo__card-item--vertical .meo__card-text h4,
.meo__card-item--vertical .meo__card-text p {
  text-align: left !important;
}
.meo__card-item--vertical .meo__card-text h4 {
  margin-bottom: 10px;
}
.meo__card-item--vertical .meo__card-text p {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .meo__card-item--vertical .meo__card-text p {
    font-size: 1.4rem;
  }
}
.meo__card-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: #b01e2d;
  color: #fff;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 20px;
  border-bottom-right-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .meo__card-number {
    width: 53.89px;
    height: 53.89px;
    font-size: 17.575px;
  }
}
.meo__card-text {
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .meo__card-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    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;
    margin-top: 0;
  }
}
.meo__card-text h4 {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .meo__card-text h4 {
    font-size: 1.6rem;
  }
}
.meo__card-text p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .meo__card-text p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .meo__card-text p {
    font-size: 1.6rem;
  }
}
.meo__card-icon {
  -ms-flex-item-align: center;
      align-self: center;
  height: 80px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .meo__card-icon {
    height: 50px;
  }
}
.meo__card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.meo__voice {
  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;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .meo__voice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}
.meo__voice--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .meo__voice--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.meo__voice--reverse .meo__img--voice {
  width: 30%;
  margin-left: 50px;
  margin-right: 0;
}
@media screen and (max-width: 1367px) {
  .meo__voice--reverse .meo__img--voice {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .meo__voice--reverse .meo__img--voice {
    width: 85%;
    margin-left: 0;
  }
}
.meo__voice-text {
  position: relative;
  padding: 60px 30px;
}
@media screen and (max-width: 767px) {
  .meo__voice-text {
    margin-top: 20px;
  }
}
.meo__voice-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./src/img/common/speech-red.png") no-repeat center;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .meo__voice-text::before {
    background-image: url("./src/img/common/speech-red-up.png");
  }
}
.meo__voice-text--white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 80px;
  height: 100%;
  width: 65%;
}
@media screen and (max-width: 1367px) {
  .meo__voice-text--white {
    width: 80%;
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .meo__voice-text--white {
    width: 100%;
    margin-top: 0;
    padding: 0;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}
.meo__voice-text--white::before {
  height: 100%;
  background-image: url("./src/img/common/speech-white.png");
  background-size: 105% 100% !important;
}
@media screen and (max-width: 767px) {
  .meo__voice-text--white::before {
    width: 100%;
    height: 100%;
    background-image: url("./src/img/common/speech-white-up.png");
  }
}
.meo__voice-text--white p {
  color: #000 !important;
}
.meo__voice-text p {
  margin-left: 30px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1367px) {
  .meo__voice-text p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .meo__voice-text p {
    margin-left: 0;
    font-size: 1.6rem;
    text-align: center;
  }
}
.meo__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .meo__step {
    -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;
  }
}
.meo__step--col3 {
  margin-top: 60px;
}
.meo__step--col3 .meo__step-item {
  width: 33.33%;
  height: 245px;
}
@media screen and (max-width: 1367px) {
  .meo__step--col3 .meo__step-item {
    width: 28%;
  }
}
@media screen and (max-width: 1280px) {
  .meo__step--col3 .meo__step-item {
    width: 26%;
  }
}
@media screen and (max-width: 767px) {
  .meo__step--col3 .meo__step-item {
    width: 100%;
    height: auto;
  }
}
.meo__step--col3 .meo__step-item:not(:last-child) {
  margin-right: 100px;
}
@media screen and (max-width: 1024px) {
  .meo__step--col3 .meo__step-item:not(:last-child) {
    margin-right: 70px;
  }
}
@media screen and (max-width: 767px) {
  .meo__step--col3 .meo__step-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.meo__step-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 50%;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .meo__step-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    height: auto;
  }
}
.meo__step-item:not(:last-child) {
  margin-right: 150px;
}
@media screen and (max-width: 767px) {
  .meo__step-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 75px;
  }
}
.meo__step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 35px;
  background: url("./src/img/common/triangle-gray-str.png") no-repeat center;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .meo__step-item:not(:last-child)::after {
    right: -30%;
  }
}
@media screen and (max-width: 767px) {
  .meo__step-item:not(:last-child)::after {
    top: initial;
    bottom: -50px;
    right: 50%;
    -webkit-transform: rotate(90deg) translate(0, -50%);
            transform: rotate(90deg) translate(0, -50%);
  }
}
.meo__step-img {
  position: absolute;
  left: 0;
  width: 290px;
}
@media screen and (max-width: 767px) {
  .meo__step-img {
    position: relative;
    left: initial;
    width: 85%;
    margin: 30px auto 0;
  }
}
.meo__step-img--col3 {
  position: relative;
  width: 120px;
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .meo__step-img--col3 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .meo__step-img--col3 {
    display: block;
    margin-right: auto;
  }
}
.meo__step-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.meo__step-text {
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .meo__step-text {
    width: 260px;
  }
}
@media screen and (max-width: 1024px) {
  .meo__step-text {
    width: 185px;
  }
}
@media screen and (max-width: 767px) {
  .meo__step-text {
    width: unset;
  }
}
.meo__step-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .meo__step-title {
    width: 100%;
  }
}
.meo__step-title--small {
  -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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.meo__step-title--small span {
  margin-right: 0 !important;
  font-size: 3rem !important;
}
.meo__step-title--small h4 {
  font-size: 1.8rem !important;
  word-break: keep-all;
}
.meo__step-title span {
  margin-right: 10px;
  color: #727278;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .meo__step-title span {
    font-size: 3rem !important;
  }
}
.meo__step-title h4 {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .meo__step-title h4 {
    font-size: 1.6rem !important;
  }
}
.meo__step-info {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
.meo__reason {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .meo__reason {
    -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;
  }
}
.meo__reason-example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .meo__reason-example {
    -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;
  }
}
.meo__reason-example.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .meo__reason-example.align-start {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.meo__reason-item {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: calc(50% - 70px);
}
@media screen and (max-width: 767px) {
  .meo__reason-item {
    width: 100%;
  }
}
.meo__reason-item:first-child {
  margin-right: 70px;
}
@media screen and (max-width: 767px) {
  .meo__reason-item:first-child {
    margin-right: 0;
  }
}
.meo__reason-item:last-child {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .meo__reason-item:last-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .meo__reason-item:not(:last-child) {
    margin-bottom: 35px;
  }
}
.meo__reason-item--full {
  width: 100%;
}
.meo__reason-head {
  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;
}
@media screen and (max-width: 767px) {
  .meo__reason-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.meo__reason-head span {
  margin-right: 20px;
  color: #b01e2d;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .meo__reason-head span {
    font-size: 2.4rem;
  }
}
.meo__reason-head h4 {
  margin-top: 5px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .meo__reason-head h4 {
    font-size: 1.6rem;
  }
}
.meo__reason-content {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .meo__reason-table-wrap {
    width: 100%;
    overflow-x: auto;
  }
}
.meo__reason-table {
  display: table;
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.meo__reason-table tr:not(:first-child, :last-child) {
  border-bottom: 2px dotted #727278;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .meo__reason-table tr:not(:first-child, :last-child) td,
  .meo__reason-table tr:not(:first-child, :last-child) th.side {
    border-bottom: 2px dotted #727278;
  }
}
.meo__reason-table th,
.meo__reason-table td {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .meo__reason-table th,
  .meo__reason-table td {
    padding: 10px;
    white-space: nowrap;
  }
}
.meo__reason-table th {
  width: 33.33%;
  background-color: #fff;
  color: #fff;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .meo__reason-table th {
    width: 50%;
    font-size: 1.4rem;
  }
}
.meo__reason-table th:not(:last-child) {
  border-right: 1px solid #fff;
}
.meo__reason-table th.red {
  background-color: #b01e2d;
}
.meo__reason-table th.gray {
  background-color: #727278;
}
.meo__reason-table th.orange {
  padding: 20px 30px;
  background-color: #f7a074;
  border-right: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .meo__reason-table th.orange {
    padding: 10px 15px;
  }
}
.meo__reason-table th.side {
  width: 100px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .meo__reason-table th.side {
    height: 165px;
    -webkit-writing-mode: tb-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: tb-lr;
    border-bottom: 2px dotted #727278;
  }
}
@media screen and (max-width: 767px) {
  .meo__reason-table th.side {
    width: 50px;
  }
}
.meo__reason-table td {
  text-align: center;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .meo__reason-table td {
    border-bottom: 2px dotted #727278;
  }
}
.meo__reason-table td:not(:last-child) {
  border-right: 1px solid #727278;
}
.meo__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .meo__point {
    padding: 60px 40px;
  }
}
.meo__point-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .meo__point-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.meo__point-item:not(:last-child) {
  margin-bottom: 30px;
}
.meo__point-num {
  position: relative;
  min-width: 80px;
  padding-left: 50px;
  color: #b01e2d;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .meo__point-num {
    min-width: 40px;
    font-size: 2rem;
  }
}
.meo__point-num::before {
  content: "POINT";
  position: absolute;
  top: 6px;
  left: 0;
  color: #727278;
  font-size: 1.4rem;
  font-weight: 700;
}
.meo__point-info {
  margin-left: 50px !important;
  font-size: 1.8rem !important;
}
@media screen and (max-width: 767px) {
  .meo__point-info {
    margin-left: 0 !important;
    font-size: 1.4rem !important;
  }
}
.meo__outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .meo__outline {
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.meo__outline-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 33.33%;
}
@media screen and (max-width: 767px) {
  .meo__outline-item {
    width: 100%;
  }
}
.meo__outline-item:not(:last-child) {
  margin-right: 100px;
}
@media screen and (max-width: 767px) {
  .meo__outline-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.meo__outline-item.plus::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -65px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: url("./src/img/common/plus-gray-str.png") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .meo__outline-item.plus::before {
    width: 18px;
    height: 18px;
    top: initial;
    left: 50%;
    right: initial;
    bottom: -45px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.meo__outline-item.next::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -65px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: url("./src/img/common/triangle-gray-str.png") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .meo__outline-item.next::before {
    width: 18px;
    height: 18px;
    top: initial;
    bottom: -45px;
    left: 50%;
    right: initial;
    -webkit-transform: translate(-50%, 0) rotate(90deg);
            transform: translate(-50%, 0) rotate(90deg);
  }
}
.meo__outline-item.middle {
  -ms-flex-item-align: center;
      align-self: center;
}
.meo__outline-title {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .meo__outline-title {
    font-size: 1.6rem;
  }
}
.meo__outline-title::before, .meo__outline-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 1px;
}
.meo__outline-title::before {
  width: 100%;
  background-color: #e3e3e4;
}
.meo__outline-title::after {
  width: 25%;
  background-color: #b01e2d;
}
.meo__outline-text {
  width: 100%;
}
.meo__outline-text p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .meo__outline-text p {
    font-size: 1.3rem;
  }
}
.meo__outline-text li {
  font-size: 1.6rem;
  margin-left: 15px;
  font-weight: 500;
  list-style-type: disc;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .meo__outline-text li {
    font-size: 1.3rem;
  }
}
.meo__outline-block {
  width: 100%;
  padding: 25px 0;
  background-color: #b01e2d;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .meo__outline-block {
    margin: 20px auto;
    padding: 20px 0;
    font-size: 1.6rem;
  }
}
.meo__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .meo__price {
    -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;
    margin-top: 15px;
  }
}
.meo__price-item {
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 50%;
  min-height: 420px;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media screen and (max-width: 1367px) {
  .meo__price-item {
    min-height: 400px;
  }
}
@media screen and (max-width: 1280px) {
  .meo__price-item {
    min-height: 440px;
  }
}
@media screen and (max-width: 1024px) {
  .meo__price-item {
    min-height: 420px;
  }
}
@media screen and (max-width: 767px) {
  .meo__price-item {
    width: 100%;
    min-height: auto;
    padding-bottom: 40px;
  }
}
.meo__price-item:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 1367px) {
  .meo__price-item:not(:last-child) {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .meo__price-item:not(:last-child) {
    margin-right: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .meo__price-item:not(:last-child) {
    margin-right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .meo__price-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.meo__price-title {
  width: 100%;
  padding: 25px 0;
  background-color: #00000b;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .meo__price-title {
    padding: 20px 10px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .meo__price-title {
    padding: 13px 0;
  }
}
.meo__price-title.red {
  background-color: #b01e2d;
}
.meo__price-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.meo__price-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding: 10px 30px;
  border-bottom: 2px dotted #727278;
}
@media screen and (max-width: 1280px) {
  .meo__price-info {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .meo__price-info {
    padding: 10px 15px;
  }
}
.meo__price-info:first-child {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .meo__price-info:first-child {
    padding-top: 20px;
  }
}
.meo__price-info:nth-child(5) {
  border-bottom: none;
}
.meo__price-label {
  width: 40%;
  margin-top: 2px;
  margin-right: 20px;
  color: #727278;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1367px) {
  .meo__price-label {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .meo__price-label {
    font-size: 1.2rem;
  }
}
.meo__price-text {
  width: 60%;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1367px) {
  .meo__price-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .meo__price-text {
    font-size: 1.4rem;
  }
}
.meo__example-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e2e9;
  margin-top: 0;
  padding: 50px 30px;
  width: 100%;
}
@media screen and (max-width: 981px) {
  .meo__example-item {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .meo__example-item {
    margin-top: 20px;
  }
}
.meo__example-item.item-wrap {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  padding: 0;
}
.meo__example-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .meo__example-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.meo__example-head {
  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;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .meo__example-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.meo__example-head:nth-child(2) {
  width: auto;
}
.meo__example-head h4 {
  margin-top: 5px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .meo__example-head h4 {
    font-size: 1.6rem;
  }
}
.meo__example-arrow {
  border: solid #727278;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(-45deg) skew(10deg, 10deg);
  -webkit-transform: rotate(-45deg) skew(10deg, 10deg);
}
@media screen and (max-width: 767px) {
  .meo__example-arrow {
    -webkit-transform: rotate(45deg) skew(10deg, 10deg);
    transform: rotate(45deg) skew(10deg, 10deg);
  }
}
.meo__example-arrow.margin {
  margin: 0 30px;
}
@media screen and (max-width: 767px) {
  .meo__example-arrow.margin {
    margin: 20px 0;
  }
}
.meo__example-arrow.m-reason {
  margin: 15px 30px 0 30px;
}
@media screen and (max-width: 767px) {
  .meo__example-arrow.m-reason {
    margin: 50px 0 0;
  }
}
.meo .pl40 {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .meo .pl40 {
    padding-left: 0;
  }
}
.meo .pr40 {
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .meo .pr40 {
    padding-right: 0;
  }
}
.meo .mt-30 {
  margin-top: 30px;
}
.meo .m-0 {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .meo .sp-width {
    width: 100%;
  }
}
.meo .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.meo .seo {
  background-color: #f1f2f5;
  padding: 40px 100px;
}
@media screen and (max-width: 767px) {
  .meo .seo {
    padding: 20px;
  }
}
.meo .space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.meo__section.seo .meo__outline-item {
  width: 100%;
}
.meo__section.seo .meo__outline-item.next::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  left: 44%;
}
@media screen and (max-width: 767px) {
  .meo__section.seo .meo__outline-item.next::before {
    bottom: -31px;
    left: 48%;
  }
}

.seo__solution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .seo__solution {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .seo__solution {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .seo__solution {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .seo__solution {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .seo__solution {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .seo__solution {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .seo__solution {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.seo__solution-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 5px;
  font-weight: 500;
  font-size: 1.6rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .seo__solution-text {
    white-space: normal;
    margin: 0 0 40px;
  }
}
.seo__solution-tile-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.seo__solution-tile-container::after {
  content: "";
  position: absolute;
  top: 14px;
  width: calc(100% - 270px);
  height: 5px;
  background-color: #b01e2d;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .seo__solution-tile-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.seo__solution-tile {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 250px;
  width: 25%;
  max-width: 270px;
  border: 2px solid #e0e2e9;
  -webkit-box-shadow: 0px 15px 35px -5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 15px 35px -5px rgba(0, 0, 0, 0.15);
  padding: 50px 30px 38px;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .seo__solution-tile {
    padding: 50px 15px 38px;
  }
}
@media screen and (max-width: 767px) {
  .seo__solution-tile {
    padding: 50px 0 30px;
    width: 100%;
    max-width: none;
  }
}
.seo__solution-tile--red {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.seo__solution-tile:hover .seo__tile-img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.seo__solution-tile:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .seo__solution-tile:not(:last-child) {
    margin: 0 0 5px;
  }
}
.seo__tile-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: #b01e2d;
  color: #fff;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 20px;
  font-weight: 700;
  border-bottom-right-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .seo__tile-number {
    width: 53.89px;
    height: 53.89px;
    font-size: 17.575px;
  }
}
.seo__tile-title {
  font-weight: 700;
  font-size: 2rem;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  margin: 38px auto 12px;
}
.seo__tile-title--red {
  font-size: 2.4rem;
  color: #b01e2d;
}
.seo__tile-text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.875em;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  text-align: justify;
}
.seo__tile-img {
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.seo__tile-img--red {
  width: 111px;
}
.seo__intro {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .seo__intro {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .seo__intro {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .seo__intro {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .seo__intro {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .seo__intro {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .seo__intro {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .seo__intro {
    max-width: 100%;
    padding: 0 5%;
  }
}
.seo__intro-container {
  margin: 100px auto;
}
@media screen and (max-width: 767px) {
  .seo__intro-container {
    margin: 50px auto;
  }
}
.seo__intro-title-text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2em;
  margin-top: 33px;
}
@media screen and (max-width: 767px) {
  .seo__intro-title-text {
    margin-top: 15px;
  }
}
.seo__intro-title-text--strength {
  margin-top: 23px;
}
@media screen and (max-width: 767px) {
  .seo__intro-title-text--strength {
    margin-top: 15px;
  }
}
.seo__intro-title-text--2nd {
  margin-top: 0;
}
.seo__steps-content {
  position: relative;
  text-align: center;
  width: calc(100% - 45px);
}
@media screen and (max-width: 767px) {
  .seo__steps-content {
    width: 100%;
  }
}
.seo__steps-content:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .seo__steps-content:not(:last-child) {
    margin: 0 0 20px;
  }
}
.seo__steps-tile-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px auto 48px;
}
@media screen and (max-width: 767px) {
  .seo__steps-tile-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 30px auto;
  }
}
.seo__steps-tile {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 572px;
  border: 2px solid #e0e2e9;
  border-radius: 20px;
  -webkit-box-shadow: 0px 15px 35px -5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 15px 35px -5px rgba(0, 0, 0, 0.15);
  padding: 30px 25px 37px;
  background-color: #fff;
}
@media screen and (max-width: 1440px) {
  .seo__steps-tile {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}
@media screen and (max-width: 1280px) {
  .seo__steps-tile {
    height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .seo__steps-tile {
    padding: 20px;
    width: 100%;
    height: auto;
    min-height: unset;
    max-width: none;
  }
  .seo__steps-tile:not(:last-child) {
    margin-bottom: 40px;
  }
}
.seo__steps-tile p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.1em;
  text-align: left;
}
.seo__steps-title {
  margin-bottom: 19px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .seo__steps-title {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1280px) {
  .seo__steps-title {
    font-size: 1.6rem;
  }
}
.seo__img-res {
  width: calc(100% - 45px);
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .seo__img-res {
    width: 100%;
    height: 250px;
  }
}
@media screen and (max-width: 1280px) {
  .seo__img-res {
    height: 250px;
  }
}
.seo__img-res img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.seo__img-arrow {
  position: absolute;
  top: 12px;
  right: -6%;
  width: 8px;
}
@media screen and (max-width: 767px) {
  .seo__img-arrow {
    display: none;
  }
}
.seo__table-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .seo__table-container {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .seo__table-container {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .seo__table-container {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .seo__table-container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .seo__table-container {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .seo__table-container {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .seo__table-container {
    padding: 0 5%;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.seo__table-info {
  width: 564px;
}
@media screen and (max-width: 767px) {
  .seo__table-info {
    width: 100%;
    margin-bottom: 20px;
  }
}
.seo__table-info p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
}
.seo__table-title {
  padding-left: 28px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8em;
  position: relative;
  margin-bottom: 57px;
}
@media screen and (max-width: 767px) {
  .seo__table-title {
    font-size: 1.5rem;
    margin-bottom: 28.5px;
    padding-left: 20px;
  }
}
.seo__table-title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 11px;
  background: url("./src/img/service2-arrow.png") no-repeat;
}
.seo__table {
  width: 750px;
  border-collapse: collapse;
}
@media screen and (max-width: 1280px) {
  .seo__table {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .seo__table {
    width: 100%;
    margin-left: 0;
  }
}
.seo__table th {
  background-color: #727278;
  color: #fff;
  border: 2px solid #dae1ea;
  padding: 12px;
  font-size: 1.4rem;
  font-weight: 700;
}
.seo__table th:nth-child(2) {
  background-color: #000;
}
.seo__table-tbody tr:first-child {
  color: #b01e2d;
}
.seo__table-tbody tr:nth-child(-n+3) {
  font-weight: 700 !important;
}
.seo__table-tbody tr:not(:nth-child(-n+3)) {
  background-color: #f1f2f5;
}
.seo__table-tbody td {
  border: 2px solid #dae1ea;
  font-size: 1.6rem;
  text-align: center;
  padding: 8px;
}
.seo__voice {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .seo__voice {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .seo__voice {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .seo__voice {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .seo__voice {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .seo__voice {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .seo__voice {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .seo__voice {
    padding: 0 5%;
    max-width: 100%;
    margin-top: 50px;
  }
}
.seo__voice-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .seo__voice-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.seo__voice-content--align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.seo__col {
  width: auto;
}
@media screen and (max-width: 767px) {
  .seo__col {
    width: 100%;
  }
}
.seo__col--half {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .seo__col--half {
    width: 100%;
  }
}
.seo__col--full {
  width: 100%;
}
.seo__col--price {
  width: 65%;
  margin-left: auto;
}
@media screen and (max-width: 1367px) {
  .seo__col--price {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .seo__col--price {
    width: 100%;
  }
}
.seo__col--img {
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .seo__col--img {
    margin-left: 0;
  }
}
.seo__text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .seo__text {
    margin-top: 20px;
  }
}
.seo__text--td {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .seo__text--td {
    margin-top: 10px;
  }
}
.seo__text--td p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .seo__text--td p {
    font-size: 1.2rem !important;
  }
}
.seo__text p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .seo__text p {
    font-size: 1.4rem;
  }
}
.seo__card-list {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .seo__card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.seo__card-item {
  position: relative;
  height: auto;
  min-height: 400px;
  border-radius: 20px;
  padding: 40px 30px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding-top: 20px;
  margin-bottom: 60px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1280px) {
  .seo__card-item {
    min-height: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .seo__card-item {
    min-height: 480px;
  }
}
@media screen and (max-width: 767px) {
  .seo__card-item {
    width: 100%;
    height: auto;
    min-height: auto;
    margin: 0 12px 0 0;
    padding-top: 0;
  }
  .seo__card-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.seo__card-item .seo__card-text h4,
.seo__card-item .seo__card-text p {
  text-align: center;
}
.seo__card-item .seo__card-text h4 {
  margin-bottom: 20px;
}
.seo__card-item .seo__card-text p {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .seo__card-item .seo__card-text p {
    font-size: 1.4rem;
  }
}
.seo__card-item-wrapper {
  position: relative;
  width: 33.3%;
  min-height: 400px;
}
@media screen and (max-width: 767px) {
  .seo__card-item-wrapper {
    width: 100%;
    min-height: auto;
    height: auto;
  }
}
.seo__card-item-wrapper:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .seo__card-item-wrapper:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.seo__card-text {
  width: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .seo__card-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    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;
  }
}
.seo__card-text h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .seo__card-text h4 {
    font-size: 1.6rem;
  }
}
.seo__card-text p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .seo__card-text p {
    font-size: 1.6rem;
  }
}
.seo__card-icon {
  -ms-flex-item-align: center;
      align-self: center;
  height: 80px;
  width: 180px;
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .seo__card-icon {
    width: 150px;
    height: auto;
  }
}
.seo__outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .seo__outline {
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.seo__outline-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .seo__outline-item {
    width: 100%;
  }
}
.seo__outline-title {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .seo__outline-title {
    font-size: 1.6rem;
  }
}
.seo__outline-title::before, .seo__outline-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 1px;
}
.seo__outline-title::before {
  width: 100%;
  background-color: #e3e3e4;
}
.seo__outline-title::after {
  width: 25%;
  background-color: #b01e2d;
}
.seo__outline-text {
  width: 100%;
}
.seo__outline-text p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .seo__outline-text p {
    font-size: 1.3rem;
  }
}
.seo__outline-text p::before {
  content: "・";
}
.seo__way {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .seo__way {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .seo__way {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .seo__way {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .seo__way {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .seo__way {
    margin-top: 50px;
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .seo__way {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .seo__way {
    padding: 0 5%;
    max-width: 100%;
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .seo__way-parent {
    width: 800px;
  }
}
.seo__way-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 57px auto 0;
}
.seo__way-text-vertical {
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 2px solid #727278;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .seo__way-text-vertical {
    padding-right: 15px;
    font-size: 1.4rem;
  }
}
.seo__way-inside-wrap {
  min-width: 120px;
  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;
}
@media screen and (max-width: 767px) {
  .seo__way-inside-wrap {
    min-width: 80px;
  }
}
.seo__way-text-inside {
  font-size: 1.6rem;
  line-height: 1em;
  font-weight: 700;
  color: #727278;
  margin: 0 32px;
}
@media screen and (max-width: 767px) {
  .seo__way-text-inside {
    font-size: 1.4rem;
    margin: 0 15px;
  }
}
.seo__way-info {
  display: block;
}
.seo__way-info img {
  width: 100%;
}
.seo__way-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0 25px;
  border-bottom: 2px solid #727278;
  margin: 0 30px 0 182px;
}
@media screen and (max-width: 767px) {
  .seo__way-info-wrap {
    margin: 30px 0;
  }
}
.seo__way-info-wrap p {
  font-size: 1.6rem;
  font-weight: 700;
  color: #727278;
}
@media screen and (max-width: 767px) {
  .seo__way-info-wrap p {
    font-size: 1.2rem;
  }
}
.seo__strength {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .seo__strength {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .seo__strength {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .seo__strength {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .seo__strength {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .seo__strength {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .seo__strength {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .seo__strength {
    padding: 0 5%;
    max-width: 100%;
  }
}
.seo__strength-container {
  margin-top: 50px;
}
.seo__strength-title {
  font-size: 1.6rem;
  font-weight: 500;
}
.seo__strength-title--18 {
  font-size: 1.8rem;
}
.seo__strength-subtitle {
  margin-top: 20px;
}
.seo__strength-wrap {
  position: relative;
  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;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .seo__strength-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.seo__strength-wrap-info {
  width: 600px;
}
@media screen and (max-width: 767px) {
  .seo__strength-wrap-info {
    width: 100%;
  }
}
.seo__strength-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .seo__strength-boxes {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px auto 0;
  }
}
.seo__strength-box {
  width: 48.33%;
  height: 60px;
  margin-bottom: 20px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .seo__strength-box {
    width: 100%;
  }
}
.seo__strength-box p {
  font-size: 1.8rem;
  font-weight: 700;
}
.seo__strength-box.gray {
  background-color: #f1f2f5;
}
.seo__strength-box.red {
  background-color: #b01e2d;
}
.seo__strength-arrow {
  width: 30px;
  height: 30px;
  margin: 0 85px -40px;
}
@media screen and (max-width: 767px) {
  .seo__strength-arrow {
    position: relative;
    margin: 20px auto 30px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (max-width: 767px) {
  .seo__sched-main {
    width: 100%;
    margin-top: -30px;
    overflow-x: auto;
  }
}
.seo__sched-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.seo__sched-text-vertical {
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 2px solid #727278;
  padding-right: 30px;
}
.seo__sched-inside-wrap {
  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: 0 38px 0 0;
}
.seo__sched-inside-wrap p:not(:last-child) {
  margin-bottom: 90px;
}
.seo__sched-text-inside {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .seo__sched-text-inside {
    font-size: 1.4rem;
  }
}
.seo__sched-text-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.seo__sched-text-wrap img {
  width: 50px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .seo__sched-text-wrap img {
    width: 35px;
  }
}
.seo__sched-text-wrap:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .seo__sched-text-wrap:not(:last-child) {
    margin-bottom: 30px;
  }
}
.seo__sched-info {
  display: block;
}
.seo__sched-info img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .seo__sched-info img {
    width: 700px;
  }
}
.seo__sched-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 0 200px;
}
@media screen and (max-width: 767px) {
  .seo__sched-info-wrap {
    margin: 0 0 0 120px;
    padding-bottom: 20px;
    width: 700px;
  }
}
.seo__sched-info-wrap p {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .seo__sched-info-wrap p {
    font-size: 1.4rem;
  }
}
.seo__res {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .seo__res {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .seo__res {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .seo__res {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .seo__res {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .seo__res {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .seo__res {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .seo__res {
    padding: 0 5%;
    max-width: 100%;
    margin-top: 40px;
  }
}
.seo__res-container {
  position: relative;
  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: 767px) {
  .seo__res-container {
    -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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.seo__infogprahic {
  position: relative;
  width: 40em;
  margin: 0.5em auto;
  padding: 1em;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  background-color: #fff;
  height: 40em;
}
.seo__infogprahic span {
  display: none;
}
.seo__circle {
  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;
  -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;
  background-image: url("./src/img/seo/seo-venn.svg");
  background-repeat: no-repeat;
  padding: 60px 0;
  width: 410px;
  height: 410px;
}
@media screen and (max-width: 1280px) {
  .seo__circle {
    gap: 60px;
    width: 335px;
    height: 335px;
    padding: 40px 0;
  }
}
.seo__circle-d {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 410px;
  padding: 0 40px;
}
@media screen and (max-width: 1280px) {
  .seo__circle-d {
    gap: 50px;
    width: 270px;
    padding: 0 10px;
  }
}
.seo__circle-title {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .seo__circle-title {
    font-size: 1.2rem;
  }
}
.seo__circle-title.center {
  text-align: center;
}
.seo__circle-title.left {
  text-align: left;
}
.seo__circle-title.right {
  text-align: right;
}
.seo__circle-text {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .seo__circle-text {
    font-size: 1.2rem;
  }
}
.seo__circle-text.center {
  text-align: center;
  width: 170px;
}
.seo__circle-text.left {
  text-align: left;
}
.seo__circle-text.right {
  text-align: right;
}
.seo__plus {
  width: 50px;
}
@media screen and (max-width: 1280px) {
  .seo__plus {
    width: 40px;
    margin: 20px auto;
  }
}
.seo__triangle {
  width: 32px;
}
@media screen and (max-width: 1280px) {
  .seo__triangle {
    width: 25px;
    margin: 20px auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.seo__info {
  min-width: 276px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .seo__info {
    min-width: 250px;
  }
}
.seo__info-content {
  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;
}
.seo__info-content:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  .seo__info-content:not(:last-child) {
    margin-bottom: 30px;
  }
}
.seo__info-img {
  width: 80px;
  margin-right: 23px;
}
@media screen and (max-width: 1280px) {
  .seo__info-img {
    width: 50px;
    margin: 15px;
  }
}
.seo__info-text {
  font-size: 1.8rem;
  line-height: 1.7777777778em;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .seo__info-text {
    font-size: 1.4rem;
  }
}
.seo__red {
  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;
}
.seo__red-box {
  width: 382px;
  background-color: #b01e2d;
  border-radius: 20px;
  padding: 30px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1280px) {
  .seo__red-box {
    width: 100%;
    padding: 20px;
  }
}
.seo__box-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75em;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .seo__box-text {
    font-size: 1.6rem;
  }
}
.seo__box-img {
  width: 110px;
  margin-bottom: 23px;
}
@media screen and (max-width: 1280px) {
  .seo__box-img {
    width: 70px;
    margin-bottom: 15px;
  }
}
.seo__plan {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .seo__plan {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .seo__plan {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .seo__plan {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .seo__plan {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .seo__plan {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .seo__plan {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .seo__plan {
    padding: 0 5%;
    max-width: 100%;
    margin-top: 40px;
  }
}
.seo__plan-container {
  margin: 63px auto 100px;
}
@media screen and (max-width: 767px) {
  .seo__plan-container {
    margin: 30px auto 50px;
  }
}
.seo__plan-img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .seo__plan-img {
    width: 800px;
    margin-bottom: 20px;
  }
}
.seo__details {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .seo__details {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .seo__details {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .seo__details {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .seo__details {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .seo__details {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .seo__details {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .seo__details {
    padding: 0 5%;
    max-width: 100%;
    margin: 0 0 40px;
  }
}
.seo__details-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 1440px) {
  .seo__details-container {
    margin-top: 0;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}
@media screen and (max-width: 767px) {
  .seo__details-container {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1440px) {
  .seo__details-info {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .seo__details-info {
    margin: 0;
    padding-top: 30px;
  }
}
.seo__details-title {
  padding-left: 28px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8em;
  position: relative;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .seo__details-title {
    font-size: 1.5rem;
    margin-bottom: 19px;
    padding-left: 20px;
  }
}
.seo__details-title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 11px;
  background: url("./src/img/service2-arrow.png") no-repeat;
}
.seo__details-title span.dusky {
  color: #4154a3;
}
.seo__details-title span.orange {
  color: #f7a074;
}
.seo__details-text {
  font-size: 1.6rem;
  line-height: 2em;
  margin-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .seo__details-text {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.seo__details-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 30px);
  min-height: 480px;
  border-radius: 30px;
  border: 2px solid #f1f2f5;
  overflow: hidden;
  height: auto;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
@media screen and (max-width: 1440px) {
  .seo__details-box {
    margin-left: 50%;
  }
}
@media screen and (max-width: 1280px) {
  .seo__details-box {
    margin-left: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .seo__details-box {
    margin-left: 15%;
  }
}
@media screen and (max-width: 767px) {
  .seo__details-box {
    min-height: unset;
    margin-left: 0;
    margin-bottom: 20px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    overflow-x: auto;
    width: unset;
    border-radius: 0;
    padding-bottom: 10px;
  }
}
.seo__details-box--orange {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.seo__details-1 {
  min-width: 180px;
  color: #fff;
  background-color: #4154a3;
  padding: 40px;
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .seo__details-1 {
    min-width: 130px;
    padding: 20px;
    font-size: 1.4rem;
  }
}
.seo__details-orange {
  min-width: 180px;
  color: #fff;
  background-color: #f7a074;
  padding: 40px;
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .seo__details-orange {
    min-width: 130px;
    padding: 20px;
    font-size: 1.4rem;
  }
}
.seo__details-orange:not(:last-child) {
  border: 1px solid #fff;
}
.seo__details-orange-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.seo__details-2 {
  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: 180px;
  height: 100%;
  background-color: #f1f2f5;
  font-size: 1.6rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .seo__details-2 {
    min-width: 130px;
    padding: 20px;
    font-size: 1.4rem;
  }
}
.seo__details-2-container {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.seo__details-2-container.border {
  border-top: 1px solid #727278;
}
.seo__details-2-wrap {
  height: 100%;
  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;
}
.seo__details-2-wrap:not(:last-child) {
  border-bottom: 1px solid #727278;
}
.seo__details-dot {
  height: 100%;
  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;
}
.seo__details-dot:not(:last-child) {
  border-bottom: 2px dotted #727278;
}
.seo__details-3 {
  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;
  width: 308px;
  height: 100%;
  padding: 10px 40px;
  font-size: 1.6rem;
  line-height: 2.25em;
  font-weight: 500;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .seo__details-3 {
    min-width: 250px;
    padding: 5 20px;
    font-size: 1.4rem;
  }
}

.web__top {
  margin-top: 120px;
}
@media screen and (max-width: 1600px) {
  .web__top {
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1440px) {
  .web__top {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .web__top {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .web__top {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .web__top {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .web__top {
    max-width: 100%;
    margin-top: 60px;
  }
}
.web__content {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .web__content {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .web__content {
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1440px) {
  .web__content {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .web__content {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .web__content {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .web__content {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .web__content {
    padding: 0 5%;
    max-width: 100%;
  }
}
.web__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.web__item {
  width: 32.5%;
  height: 170px;
  background-color: #fff;
  border: 1px solid #e0e2e9;
  -webkit-box-shadow: 0 10px 20px rgba(7, 30, 29, 0.1);
          box-shadow: 0 10px 20px rgba(7, 30, 29, 0.1);
  margin-bottom: 20px;
  padding: 50px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1280px) {
  .web__item {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .web__item {
    width: 49%;
    padding: 15px;
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.web__item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 1;
}
.web__item-icon {
  height: 80px;
  padding-right: 40px;
}
@media screen and (max-width: 1367px) {
  .web__item-icon {
    height: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .web__item-icon {
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .web__item-icon {
    padding: 0;
    margin-bottom: 20px;
  }
}
.web__item-text {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1367px) {
  .web__item-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1280px) {
  .web__item-text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .web__item-text {
    font-size: 1.3rem;
  }
}
.web__problem {
  background-image: url("./src/img/service-problem-bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-top: 120px;
  width: 100%;
  height: 767px;
}
@media screen and (max-width: 1280px) {
  .web__problem {
    width: 100%;
    height: 100%;
    margin-top: 50px;
  }
}
.web__content-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 82px;
}
@media screen and (max-width: 767px) {
  .web__content-text {
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 41px;
  }
}
.web__content-text--p40 {
  padding: 20px 0 0 40px;
}
@media screen and (max-width: 767px) {
  .web__content-text--p40 {
    padding: 0;
  }
}
.web__title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .web__title {
    font-size: 2.1rem;
    margin: 0;
  }
}
.web__subtitle {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .web__subtitle {
    font-size: 1.6rem;
  }
}
.web__problem-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
.web__problem-item {
  width: 24%;
  height: 190px;
  background-color: #fff;
  border: 1px solid #e0e2e9;
  -webkit-box-shadow: 0 10px 20px rgba(7, 30, 29, 0.1);
          box-shadow: 0 10px 20px rgba(7, 30, 29, 0.1);
  margin-bottom: 20px;
  padding: 40px;
  text-align: center;
  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;
}
.web__problem-highlight {
  font-size: 1.8rem;
  font-weight: 700;
  color: #b01e2d;
}
.web__problem-highlight span.black {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
}
.web__solution-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .web__solution-wrap {
    max-width: 1400px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .web__solution-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
.web__solution-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .web__solution-list {
    margin-top: 30px;
    display: block;
  }
}
.web__solution-item {
  position: relative;
  width: 33.3%;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .web__solution-item {
    width: 100%;
    height: 150px;
  }
}
.web__solution-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.web__solution-item::before {
  content: "";
  width: 640px;
  height: 100%;
  background-color: #00000b;
  opacity: 0.5;
  position: absolute;
  top: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .web__solution-item::before {
    width: 100%;
  }
}
.web__solution-details {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .web__solution-details {
    padding: 0 10%;
  }
}
.web__solution-num {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 8rem;
  font-weight: 400;
  color: #fff;
  font-style: italic;
}
@media screen and (max-width: 1367px) {
  .web__solution-num {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .web__solution-num {
    font-size: 4.5rem;
  }
}
.web__solution-text {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1367px) {
  .web__solution-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .web__solution-text {
    font-size: 1.5rem;
  }
}
.web__works {
  margin-top: 100px;
}
.web__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1280px) {
  .web__flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .web__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.web__works-left {
  position: relative;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .web__works-left {
    width: 100%;
  }
}
.web__works-right {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .web__works-right {
    width: 100%;
  }
}
.web__works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .web__works-list {
    display: block;
  }
}
.web__works-item {
  width: 48%;
  border: 1px solid #dae1ea;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .web__works-item {
    width: 100%;
  }
}
.web__works-item img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.web__works-details {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .web__works-details {
    padding: 0;
  }
}
.web__works-details h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8em;
  margin-top: 30px;
}
.web__works-details p {
  font-size: 1.6rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .web__works-details p {
    font-size: 1.3rem;
  }
}
.web__button {
  margin-left: 25%;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .web__button {
    margin-left: 0;
    padding-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .web__price {
    margin-top: 0;
  }
}
.web__price-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .web__price-title {
    font-size: 1.8rem;
    margin-top: 10px;
  }
}
.web__price-title::before {
  content: "";
  display: inline-block;
  background: url("./src/img/icons/service-arrow.svg") no-repeat;
  width: 13px;
  height: 13px;
  margin-right: 10px;
}
.web__price-list-wrap {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .web__price-list-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0 30px;
    padding-bottom: 10px;
  }
}
.web__price-list-wrap::-webkit-scrollbar {
  height: 10px;
}
.web__price-list-wrap::-webkit-scrollbar-track {
  background: #f1f2f5;
  border-radius: 10px;
}
.web__price-list-wrap::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 10px;
}
.web__price-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (max-width: 767px) {
  .web__price-list {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-backface-visibility: unset;
            backface-visibility: unset;
  }
}
.web__price-item {
  background: -webkit-gradient(linear, left top, right top, from(#e0e2e9), color-stop(50%, #e0e2e9), color-stop(50%, #e0e2e9), to(#e0e2e9));
  background: linear-gradient(to right, #e0e2e9 0%, #e0e2e9 50%, #e0e2e9 50%, #e0e2e9 100%);
  border: 1px solid #fff;
  height: 120px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 40px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (max-width: 1600px) {
  .web__price-item {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .web__price-item {
    border-radius: 0;
    min-width: 120px;
    height: auto;
    -webkit-backface-visibility: unset;
            backface-visibility: unset;
  }
}
.web__price-item.active {
  padding: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#b01e2d), color-stop(50%, #b01e2d), color-stop(50%, #ffffff), to(#ffffff));
  background: linear-gradient(to bottom, #b01e2d 0%, #b01e2d 50%, #ffffff 50%, #ffffff 100%);
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(7, 30, 29, 0.1);
          box-shadow: 0 10px 20px rgba(7, 30, 29, 0.1);
  z-index: 1;
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}
@media screen and (max-width: 767px) {
  .web__price-item.active {
    padding: 0;
    background: none;
    border-radius: unset;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: none;
            transform: none;
  }
}
.web__price-item.active .web__price-num {
  color: #fff;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .web__price-item.active .web__price-num {
    margin-bottom: 0;
    color: #00000b;
  }
}
.web__price-item.active .web__price-details {
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .web__price-item.active .web__price-details {
    margin-top: 10px;
    font-weight: 500;
  }
}
.web__price-item--10 {
  width: 180px;
}
.web__price-item--15 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 220px;
}
.web__price-item--30 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 352px;
}
@media screen and (max-width: 1024px) {
  .web__price-item--30 {
    width: 320px;
  }
}
.web__price-item--35 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 360px;
}
@media screen and (max-width: 1024px) {
  .web__price-item--35 {
    width: 340px;
  }
}
.web__price-item--5 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 170px;
}
@media screen and (max-width: 1024px) {
  .web__price-item--5 {
    width: 200px;
  }
}
.web__price-item--5s {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 170px;
}
@media screen and (max-width: 1024px) {
  .web__price-item--5s {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .web__price-item--5s {
    border-radius: 0;
  }
}
.web__price-num {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .web__price-num {
    font-size: 1.8rem;
  }
}
.web__price-details {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 10px;
  text-align: center;
}
.web__price-description {
  font-size: 1.6rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .web__price-description {
    font-size: 1.3rem;
  }
}
.web__price-table-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .web__price-table-list {
    padding-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}
.web__price-table-item {
  position: relative;
  width: 33%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .web__price-table-item {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
.web__price-table-item.active {
  -webkit-box-shadow: 0 10px 20px rgba(7, 30, 29, 0.1);
          box-shadow: 0 10px 20px rgba(7, 30, 29, 0.1);
  z-index: 1;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  border-radius: 10px;
}
.web__price-table-item.active .web__price-table-header {
  background-color: #b01e2d;
}
.web__price-table-item.active .web__price-table-data {
  background-color: #fff;
}
.web__price-table-header {
  background-color: #750e20;
  min-height: 135px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #fff;
  font-weight: 700;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .web__price-table-header {
    min-height: 105px;
  }
}
.web__price-table-header .big {
  font-size: 4rem;
  font-style: italic;
  font-family: "brandon-grotesque", sans-serif;
}
@media screen and (max-width: 767px) {
  .web__price-table-header .big {
    font-size: 3rem;
  }
}
.web__price-table-header .big span {
  font-size: 1.8rem;
  font-style: normal;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .web__price-table-header .big span {
    font-size: 1.3rem;
  }
}
.web__price-table-text {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1367px) {
  .web__price-table-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 981px) {
  .web__price-table-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .web__price-table-text {
    font-size: 1.1rem;
  }
}
.web__price-table-data {
  background-color: #f1f2f5;
  min-height: 205px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  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;
  padding: 40px 40px 40px 60px;
}
@media screen and (max-width: 1600px) {
  .web__price-table-data {
    padding: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .web__price-table-data {
    padding: 20px;
    min-height: 160px;
  }
}
@media screen and (max-width: 767px) {
  .web__price-table-data {
    min-height: 150px;
    padding: 20px 20px 20px 30px;
  }
}
.web__price-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}
.web__price-table-col1 {
  width: 30%;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 1367px) {
  .web__price-table-col1 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .web__price-table-col1 {
    width: 32%;
  }
}
@media screen and (max-width: 767px) {
  .web__price-table-col1 {
    width: 48%;
    font-size: 1.3rem;
  }
}
.web__price-table-col2 {
  width: 50%;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 1367px) {
  .web__price-table-col2 {
    width: 56%;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .web__price-table-col2 {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .web__price-table-col2 {
    width: 52%;
    font-size: 1.2rem;
  }
}
.web__price-table-col2 .big {
  font-size: 2.2rem;
}
@media screen and (max-width: 1367px) {
  .web__price-table-col2 .big {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .web__price-table-col2 .big {
    font-size: 1.6rem;
  }
}
.web__price-table-col2 .big span {
  font-size: 1.6rem;
}
@media screen and (max-width: 1367px) {
  .web__price-table-col2 .big span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .web__price-table-col2 .big span {
    font-size: 1.2rem;
  }
}
.web__flow {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .web__flow {
    margin-bottom: 0;
    margin-top: -40px;
  }
}
.web__faq {
  margin-top: 20px;
}

.sdgs {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sdgs {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .sdgs {
    max-width: 1300px;
  }
}
.sdgs__spiel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1600px) {
  .sdgs__spiel-header {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .sdgs__spiel-header {
    max-width: 1250px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1367px) {
  .sdgs__spiel-header {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .sdgs__spiel-header {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .sdgs__spiel-header {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .sdgs__spiel-header {
    padding: 0;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.sdgs__spiel-header span:nth-child(1) {
  font-size: 3.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sdgs__spiel-header span:nth-child(1) {
    font-size: 2.8rem;
  }
}
.sdgs__spiel-header span:nth-child(2) {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .sdgs__spiel-header span:nth-child(2) {
    margin-left: 0;
    font-size: 1.8rem;
  }
}
.sdgs__spiel-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 60px 0 0;
  padding-bottom: 60px;
}
@media screen and (max-width: 1440px) {
  .sdgs__spiel-row {
    max-width: 1250px;
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 1367px) {
  .sdgs__spiel-row {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .sdgs__spiel-row {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .sdgs__spiel-row {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .sdgs__spiel-row {
    margin: 0;
    padding: 0;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.sdgs__spiel-text {
  margin-top: 100px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .sdgs__spiel-text {
    margin-top: 0;
    font-size: 1.4rem;
  }
}
.sdgs__spiel-text > span {
  display: block;
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .sdgs__spiel-text > span {
    margin-bottom: 0;
  }
}
.sdgs__spiel-text > span:nth-child(1) {
  margin-bottom: 20px;
}
.sdgs__spiel-image {
  width: 640px;
  height: 452px;
  margin-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1367px) {
  .sdgs__spiel-image {
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .sdgs__spiel-image {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
}
.sdgs__spiel-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sdgs__list {
  position: relative;
}
@media screen and (max-width: 1600px) {
  .sdgs__list {
    max-width: 1300px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1440px) {
  .sdgs__list {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .sdgs__list {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .sdgs__list {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .sdgs__list {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .sdgs__list {
    padding: 0;
    max-width: 100%;
  }
}
.sdgs__list::after {
  content: "";
  width: 800px;
  height: 700px;
  background-image: url("./src/img/top/triangle-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -650px;
  bottom: 0;
  z-index: -1;
}
.sdgs__list-header {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.75em;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sdgs__list-header {
    margin: 30px 0;
    font-size: 2rem;
  }
}
.sdgs__list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sdgs__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.57%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sdgs__list-item {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sdgs__list-item:not(:first-child) {
  padding-top: 60px;
}
.sdgs__list-item:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 30px;
  left: 0;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23727278FF' stroke-width='4' stroke-dasharray='2%2c 8' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
}
.sdgs__list-item-image {
  min-width: 160px;
  height: 160px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .sdgs__list-item-image {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.sdgs__list-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sdgs__list-item-text {
  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;
}
.sdgs__list-item-text span:nth-child(1) {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .sdgs__list-item-text span:nth-child(1) {
    font-size: 1.8rem;
  }
}
.sdgs__list-item-text span:nth-child(2) {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .sdgs__list-item-text span:nth-child(2) {
    font-size: 1.4rem;
  }
}

.privacy__content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .privacy__content {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1280px) {
  .privacy__content {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .privacy__content {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .privacy__content {
    max-width: 100%;
    padding: 0 5%;
  }
}
.privacy__title {
  font-weight: 700;
  font-size: 3.4rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .privacy__title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
.privacy__title::before, .privacy__title::after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 999vw;
}
.privacy__title::before {
  width: 100%;
  border-bottom: 2px solid #e3e3e4;
}
.privacy__title::after {
  width: 110px;
  border-bottom: 2px solid #b01e2d;
}
.privacy__text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2em;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media screen and (max-width: 767px) {
  .privacy__text {
    line-height: normal;
  }
}
.privacy__text--fz18 {
  font-size: 1.8rem;
}
.privacy__text--fz24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .privacy__text--fz24 {
    font-size: 2rem;
  }
}
.privacy__text ul {
  list-style-type: disc;
  padding-left: 20px;
}
.privacy__personal {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .privacy__personal {
    padding-bottom: 30px;
  }
}

.news {
  position: relative;
  padding-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 0 5% 90px;
  }
}
.news::before {
  content: "";
  position: absolute;
  bottom: -215px;
  left: -392px;
  width: 790.78px;
  height: 695.14px;
  z-index: -1;
  background-image: url("./src/img/top/triangle-bg.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .news::before {
    width: 351.305px;
    height: 309.415px;
    left: -204.385px;
    bottom: -110px;
  }
}
.news__content {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  border: 1px solid #dae1ea;
  -webkit-box-shadow: 0 20px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 20px 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  padding: 105px;
}
@media screen and (max-width: 1280px) {
  .news__content {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .news__content {
    max-width: 850px;
    padding: 105px 80px;
  }
}
@media screen and (max-width: 767px) {
  .news__content {
    max-width: 100%;
    padding: 20px 20px 40px;
    -webkit-box-shadow: 0 10px 5px rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 5px rgba(0, 0, 0, 0.05);
  }
}
.news__categories {
  width: 100%;
  padding: 26px;
  background-color: #f1f2f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .news__categories {
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news__category-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 35px;
}
@media screen and (max-width: 767px) {
  .news__category-label {
    margin: 0 0 10px;
  }
}
.news__category-icon {
  width: 20px;
  margin-right: 10px;
}
.news__category-text {
  font-weight: 700;
  font-size: 16px;
}
.news__category-select {
  width: 244px;
  height: 48px;
  background-color: #fff;
  border: 1px solid #00000b;
  padding: 0 30px 0 17px;
  font-weight: 700;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 20px;
  color: #00000b;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  max-width: 100%;
  background-image: url("./src/img/icons/ic-arrow-down.svg");
  background-size: 8.67px 5.33px;
  background-position: center right 17px;
  background-repeat: no-repeat;
}
.news__list {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .news__list {
    margin-bottom: 30px;
  }
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px 0;
  margin-top: 30px;
  border-bottom: 1px solid #727278;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 0;
    margin-top: 10px;
    gap: 0;
  }
}
.news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .news__meta {
    gap: 0;
  }
}
.news__category {
  width: 181px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .news__category {
    width: auto;
    margin-top: 0;
  }
}
.news__category span {
  min-width: 110px;
  padding: 2px 20px;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 20px;
  border: 1px solid #00000b;
  border-radius: 34px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news__category span {
    min-width: 100px;
    margin-right: 15px;
    font-size: 16px;
  }
}
.news__date {
  font-size: 20px;
  color: #727278;
  font-family: "brandon-grotesque", sans-serif;
  line-height: 1.6em;
  padding-top: 3px;
}
@media screen and (max-width: 767px) {
  .news__date {
    margin-right: 0;
    padding-top: 0;
    font-size: 16px;
  }
}
.news__title {
  font-size: 16px;
  line-height: 2.125em;
  padding-top: 3px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .news__title {
    font-size: 14px;
    line-height: 1.7em;
    margin-top: 10px;
  }
}
.news__detail-title {
  word-break: break-word;
  margin: 22px 0 40px;
  padding-bottom: 17px;
  font-size: 25px;
  letter-spacing: 0.04em;
  line-height: 1.8em;
  border-bottom: 1px solid #727278;
}
@media screen and (max-width: 767px) {
  .news__detail-title {
    font-size: 20px;
  }
}
.news__detail-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .news__detail-image {
    margin-bottom: 20px;
  }
}
.news__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 2.25em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .news__text {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.news__box {
  background-color: #f1f2f5;
  border-radius: 15px;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 2em;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .news__box {
    font-size: 18px;
    padding: 15px 20px;
    margin-bottom: 15px;
  }
}
.news__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .news__sns {
    padding-bottom: 40px;
  }
}
.news__sns > a:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .news__sns > a:not(:last-child) {
    margin-right: 5px;
  }
}
.news__all .more-button {
  margin: 0 auto;
}

.job__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 100px;
  gap: 60px;
}
@media screen and (max-width: 1280px) {
  .job__navigation {
    max-width: 1000px;
    margin: 0 auto 100px;
  }
}
@media screen and (max-width: 1024px) {
  .job__navigation {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .job__navigation {
    max-width: 100%;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
    padding: 0 5%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.job__navigation-link {
  position: relative;
  width: 530.3px;
  height: 73.85px;
  border: 1px solid #dbdbdb;
  border-radius: 73px;
  -webkit-box-shadow: 0 5.97px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5.97px 20px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 2.4rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
  background-image: url("./src/img/icons/ic-arrow-down-gray.svg");
  background-size: 24.57px 12.74px;
  background-position: right 47px center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .job__navigation-link {
    max-width: 100%;
    height: 50px;
    font-size: 20px;
    background-position: right 20px center;
  }
}
.job__navigation-link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media screen and (max-width: 767px) {
  .job__navigation-link::before {
    display: none;
  }
}
.job__navigation-link:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .job__navigation-link:hover {
    color: #00000b;
  }
}
.job__navigation-link:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.job__container {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .job__container {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .job__container {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .job__container {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .job__container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .job__container {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .job__container {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .job__container {
    max-width: 100%;
  }
}
.job__block:not(:last-child) {
  margin-bottom: 173px;
}
@media screen and (max-width: 767px) {
  .job__block:not(:last-child) {
    margin-bottom: 90px;
  }
}
.job__image-group {
  position: relative;
  z-index: 1;
  margin-bottom: 138px;
}
@media screen and (max-width: 767px) {
  .job__image-group {
    margin: 30px 0 90px;
  }
}
.job__image-group::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -58px;
  background-color: #f1f2f5;
  width: 44.33%;
  height: 352.07px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: -1;
}
@media screen and (max-width: 1367px) {
  .job__image-group::before {
    right: -4%;
  }
}
@media screen and (max-width: 767px) {
  .job__image-group::before {
    width: 50%;
    height: 40vw;
    bottom: -40px;
  }
}
.job__image-group--left {
  margin-top: 87px;
}
@media screen and (max-width: 767px) {
  .job__image-group--left {
    margin: 60px 0 30px;
  }
}
.job__image-group--left::before {
  bottom: auto;
  top: -58px;
  left: 0;
  right: auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media screen and (max-width: 767px) {
  .job__image-group--left::before {
    top: -40px;
  }
}
.job__image-group-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .job__image-group-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.job__image-container {
  position: relative;
  width: 717px;
  height: 430px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .job__image-container {
    width: 95%;
    height: 50vw;
    border-radius: 10px;
  }
}
.job__image-container:nth-child(odd) {
  z-index: 10;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .job__image-container:nth-child(odd) {
    margin: 0 0 0 auto;
  }
}
.job__image-container:nth-child(even) {
  margin-left: -32px;
}
@media screen and (max-width: 767px) {
  .job__image-container:nth-child(even) {
    margin: -20px 0 0;
  }
}
.job__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.job__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  padding: 0 100px;
}
@media screen and (max-width: 1600px) {
  .job__content {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1367px) {
  .job__content {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .job__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
}
.job__main {
  width: 821px;
  padding-right: 80px;
  border-right: 1px solid #00000b;
}
@media screen and (max-width: 1280px) {
  .job__main {
    width: 70%;
    padding-right: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .job__main {
    width: 67%;
  }
}
@media screen and (max-width: 767px) {
  .job__main {
    width: 100%;
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid #00000b;
  }
}
.job__list {
  padding-left: 80px;
}
@media screen and (max-width: 1280px) {
  .job__list {
    padding-left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .job__list {
    padding: 20px 0 0;
  }
}
.job__heading {
  font-size: 2.4rem;
  line-height: 2em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .job__heading {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.job__text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .job__text {
    font-size: 12px;
  }
}
.job__list-heading {
  font-size: 2.6rem;
  margin-bottom: 5px;
  border-bottom: 2px solid #b01e2d;
}
@media screen and (max-width: 1024px) {
  .job__list-heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .job__list-heading {
    font-size: 2rem;
    width: 65%;
  }
}
.job__item {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .job__item {
    padding-left: 20px;
  }
}
.job__item:not(:last-child) {
  margin-bottom: 11px;
}
.job__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #f1f2f5;
}
@media screen and (max-width: 767px) {
  .job__item::before {
    width: 5px;
    height: 5px;
    top: 9px;
  }
}
.job__title {
  font-size: 3rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .job__title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.job__employees {
  position: relative;
}
.job__employees::after {
  content: "";
  position: absolute;
  bottom: -74px;
  left: -389px;
  z-index: -1;
  width: 859.66px;
  height: 822.82px;
  background-image: url("./src/img/job/triangle-bg.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .job__employees::after {
    display: none;
  }
}
.job__employees--right::after {
  left: auto;
  right: -470px;
  bottom: -49px;
  width: 924.96px;
  height: 808.54px;
  background-image: url("./src/img/job/triangle-bg-2.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
.job__employees-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7%;
}
@media screen and (max-width: 1280px) {
  .job__employees-list {
    gap: 2%;
  }
}
@media screen and (max-width: 767px) {
  .job__employees-list {
    -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: 15px;
  }
}
.job__employees-item {
  position: relative;
  width: 31%;
  height: 760px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 11, 0.2);
          box-shadow: 0 10px 10px rgba(0, 0, 11, 0.2);
}
@media screen and (max-width: 767px) {
  .job__employees-item {
    height: 428px;
    max-width: 100%;
    width: 338px;
  }
}
.job__employees-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 156px);
  z-index: 1;
}
.job__employees-item:hover .job__employees-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.job__employees-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.job__employee-content {
  position: absolute;
  z-index: 1;
  left: 30px;
  color: #fff;
  bottom: 18px;
}
@media screen and (max-width: 1280px) {
  .job__employee-content {
    left: 0;
    width: 100%;
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .job__employee-content {
    left: 20px;
  }
}
.job__employee-position {
  font-weight: 700;
  font-size: 1.43rem;
  letter-spacing: 0.04em;
}
.job__employee-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
}
.job__name-jp {
  font-weight: bold;
  font-size: 2.15rem;
  letter-spacing: 0.04em;
  margin-right: 9px;
}
.job__name-en {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
  font-size: 1.13rem;
}
.job__button-container {
  background-color: #f1f2f5;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .job__button-container {
    padding: 50px 0;
  }
}
.job__button {
  position: relative;
  z-index: 1;
  max-width: 90%;
  width: 530.3px;
  min-height: 81.28px;
  font-weight: 700;
  font-size: 2.6rem;
  text-align: center;
  margin: 0 auto;
  padding-inline: 80px;
  background-color: #fff;
  border-radius: 40px;
  border: 1px solid #ccccce;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .job__button {
    font-size: 22px;
    min-height: 60px;
    padding-inline: 10px;
  }
}
.job__button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media screen and (max-width: 767px) {
  .job__button::before {
    display: none;
  }
}
.job__button:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .job__button:hover {
    color: #00000b;
  }
}
.job__button:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.job__button:hover .job__button-arrow {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .job__button:hover .job__button-arrow {
    -webkit-filter: unset;
            filter: unset;
  }
}
.job__button--red {
  width: 576.5px;
  height: 75px;
  background-color: #b01e2d;
  color: #fff;
  border: 0;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .job__button--red {
    font-size: 16px;
    height: 50px;
  }
}
.job__button-arrow {
  position: absolute;
  width: 29.5px;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .job__button-arrow {
    width: 25px;
    right: 20px;
  }
}

.entry__fab {
  position: fixed;
  z-index: 999;
  right: 0;
  top: 100px;
  background-color: #b01e2d;
  width: 197.5px;
  height: 93px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding: 0 23px;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1280px) {
  .entry__fab {
    top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .entry__fab {
    height: 60px;
    top: 65px;
    font-size: 12px;
    width: 150px;
  }
}
.entry__fab::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media screen and (max-width: 767px) {
  .entry__fab::before {
    display: none;
  }
}
.entry__fab:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .entry__fab:hover {
    color: #00000b;
  }
}
.entry__fab:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.entry__fab-text {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}
.entry__fab-slant {
  width: 6px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  position: absolute;
  right: 0;
  bottom: 1px;
}
.entry__section {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 640px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url("./src/img/entry/entry-mv.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1600px) {
  .entry__section {
    height: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .entry__section {
    height: 420px;
  }
}
@media screen and (max-width: 767px) {
  .entry__section {
    height: 360px;
    padding: 0 5%;
  }
}
.entry__section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 11, 0.5);
}
.entry__section-title {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 11rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  .entry__section-title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .entry__section-title {
    font-size: 6rem;
  }
}
.entry__button-group {
  gap: 30px;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .entry__button-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }
}
.entry__subbutton {
  position: relative;
  z-index: 1;
  width: 273px;
  min-height: 47.5px;
  background-color: #f1f2f5;
  font-weight: 700;
  font-size: 1.69rem;
  text-align: center;
  border-radius: 25px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .entry__subbutton {
    font-size: 12px;
    height: 40px;
  }
}
.entry__subbutton::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
@media screen and (max-width: 767px) {
  .entry__subbutton::before {
    display: none;
  }
}
.entry__subbutton:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .entry__subbutton:hover {
    color: #00000b;
  }
}
.entry__subbutton:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.recruit-application {
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .recruit-application {
    margin: 60px 0;
  }
}
.recruit-application__detail-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .recruit-application__detail-wrap {
    padding: 0 3%;
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-application__detail-wrap {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-application__detail-wrap {
    padding: 0 5%;
  }
}
.recruit-application__detail-wrap .recruit-application__detail {
  padding: 30px 0;
  border-bottom: 2px dotted #a7a7a9;
}
@media screen and (max-width: 767px) {
  .recruit-application__detail-wrap .recruit-application__detail {
    padding: 10px 0;
  }
}
.recruit-application__detail-wrap .recruit-application__detail:first-child {
  border-top: 2px dotted #a7a7a9;
}
.recruit-application__detail-wrap .recruit-application:first-child {
  padding-top: 0;
}
.recruit-application__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recruit-application__detail-head {
  width: 20%;
  color: #727277;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .recruit-application__detail-head {
    width: 35%;
    font-size: 1.4rem;
  }
}
.recruit-application__detail-data {
  width: 80%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .recruit-application__detail-data {
    width: 65%;
    font-size: 1.4rem;
  }
}

.recruit-interview {
  width: 100%;
  position: relative;
}
.recruit-interview__banner {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .recruit-interview__banner {
    margin-bottom: 50px;
  }
}
.recruit-interview__banner-container {
  width: 100%;
  position: relative;
  height: 925px;
}
@media screen and (max-width: 1600px) {
  .recruit-interview__banner-container {
    height: 750px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-interview__banner-container {
    height: 720px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-interview__banner-container {
    height: 680px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-interview__banner-container {
    height: 580px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__banner-container {
    height: 490px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__banner-container {
    height: 250px;
    background-position: center center;
  }
}
.recruit-interview__banner-text {
  z-index: 2;
  position: absolute;
  top: 15%;
  left: 5%;
  width: 1000px;
  height: 400px;
}
@media screen and (max-width: 1600px) {
  .recruit-interview__banner-text {
    width: 820px;
    height: auto;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-interview__banner-text {
    width: 780px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-interview__banner-text {
    width: 740px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-interview__banner-text {
    width: 650px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__banner-text {
    width: 530px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__banner-text {
    left: 0;
    top: 22%;
    width: 65%;
    padding-left: 5%;
  }
}
.recruit-interview__banner-text img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.recruit-interview__banner-bg {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.recruit-interview__banner-bg img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .recruit-interview__banner-bg img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.recruit-interview__content {
  position: relative;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 1024px) {
  .recruit-interview__content {
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__content {
    gap: 30px;
    padding-bottom: 30px;
  }
}
.recruit-interview__item {
  margin: 0 auto;
  max-width: 1400px;
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 100px;
}
@media screen and (max-width: 1600px) {
  .recruit-interview__item {
    gap: 50px;
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-interview__item {
    gap: 50px;
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-interview__item {
    max-width: 1200px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-interview__item {
    gap: 30px;
    max-width: 1070px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__item {
    max-width: 880px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__item {
    gap: 0;
    margin: 0;
    padding: 0 5%;
    max-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit-interview__item-picwrap {
  width: 604px;
  height: 403px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .recruit-interview__item-picwrap {
    width: 550px;
    height: auto;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-interview__item-picwrap {
    width: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__item-picwrap {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__item-picwrap {
    width: 100%;
    height: 100%;
  }
}
.recruit-interview__item-pic {
  width: 604px;
  height: 100%;
}
@media screen and (max-width: 1600px) {
  .recruit-interview__item-pic {
    width: 550px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-interview__item-pic {
    width: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__item-pic {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__item-pic {
    width: 100%;
  }
}
.recruit-interview__item-info {
  width: 100%;
  position: relative;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .recruit-interview__item-info {
    z-index: -1;
    width: auto;
    margin-right: 0;
    margin-top: -10px;
    padding: 30px 20px 20px;
    -ms-flex-item-align: center;
        align-self: center;
    border-radius: 10px;
    background-color: #f1f2f5;
  }
}
.recruit-interview__item-info::before {
  content: "";
  position: absolute;
  width: 1013px;
  height: 459px;
  bottom: -95px;
  right: -70px;
  z-index: -1;
  border-radius: 43px;
  background-color: #f1f2f5;
}
@media screen and (max-width: 1600px) {
  .recruit-interview__item-info::before {
    width: 900px;
    height: 400px;
    right: 0;
    bottom: -60px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-interview__item-info::before {
    bottom: -80px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-interview__item-info::before {
    width: 800px;
    height: 390px;
    bottom: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__item-info::before {
    width: 620px;
    height: 380px;
    right: 0;
    bottom: -60px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__item-info::before {
    display: none;
  }
}
.recruit-interview__item-title {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .recruit-interview__item-title {
    font-size: 1.6rem;
  }
}
.recruit-interview__item-name {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .recruit-interview__item-name {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__item-name {
    font-size: 2.6rem;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.recruit-interview__item-name span {
  color: #b01e2d;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .recruit-interview__item-name span {
    font-size: 1.4rem;
  }
}
.recruit-interview__item-story {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.05em;
  text-align: justify;
  width: 670px;
  word-wrap: break-word;
}
@media screen and (max-width: 1600px) {
  .recruit-interview__item-story {
    width: 600px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-interview__item-story {
    width: 540px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-interview__item-story {
    width: 490px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__item-story {
    width: 440px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__item-story {
    width: 100%;
    font-size: 1.3rem;
    line-height: normal;
  }
}
.recruit-interview__item-story--second, .recruit-interview__item-story--first {
  width: 100%;
}
.recruit-interview__item-story--07 {
  width: 100%;
  max-width: none;
}
.recruit-interview .job__button {
  margin-top: 99px;
}
@media screen and (max-width: 767px) {
  .recruit-interview .job__button {
    margin-top: 49.5px;
  }
}
.recruit-interview__text-wrap {
  width: 1400px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1600px) {
  .recruit-interview__text-wrap {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-interview__text-wrap {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-interview__text-wrap {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-interview__text-wrap {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__text-wrap {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__text-wrap {
    max-width: 100%;
    position: static;
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}
.recruit-interview__text-wrap--second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.recruit-interview__text {
  width: 44%;
  max-width: 616px;
}
@media screen and (max-width: 767px) {
  .recruit-interview__text {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__text .recruit-interview__text-redtitle:first-child {
    margin-bottom: 30px;
  }
}
.recruit-interview__text-title-container {
  border-bottom: 3px solid #b01e2d;
  position: relative;
}
.recruit-interview__text-question {
  font-size: 7rem;
  position: absolute;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  color: #99999d;
  z-index: -1;
  opacity: 50%;
  top: -12px;
}
@media screen and (max-width: 1024px) {
  .recruit-interview__text-question {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__text-question {
    top: -30px;
    font-size: 5rem;
  }
}
.recruit-interview__text-question span {
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .recruit-interview__text-question span {
    font-size: 4rem;
  }
}
.recruit-interview__text-title {
  font-weight: 700;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .recruit-interview__text-title {
    width: 100%;
    font-size: 2.6rem;
    margin-bottom: 18px;
  }
}
.recruit-interview__text-title--first {
  margin-bottom: 36px;
  font-size: 3rem;
}
@media screen and (max-width: 1280px) {
  .recruit-interview__text-title--first {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__text-title--first {
    font-size: 1.8rem;
    line-height: 1.6em;
    margin-bottom: 20px;
  }
}
.recruit-interview__text-title--second {
  font-size: 2.5rem;
  padding: 20px 0 20px 40px;
}
@media screen and (max-width: 1280px) {
  .recruit-interview__text-title--second {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__text-title--second {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__text-title--second {
    font-size: 1.6rem;
    padding: 0 0 0 40px;
  }
}
.recruit-interview__text-subtitle {
  margin: 20px 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .recruit-interview__text-subtitle {
    margin: 10px 0;
  }
}
.recruit-interview__image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .recruit-interview__image {
    padding: 0 5%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.recruit-interview__image--second {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.recruit-interview__picture {
  width: 50%;
  max-height: 640px;
  overflow: hidden;
  border-top-left-radius: 43px;
  border-bottom-left-radius: 43px;
}
@media screen and (max-width: 767px) {
  .recruit-interview__picture {
    width: 100%;
    border-radius: 0;
    margin-bottom: 10px;
  }
}
.recruit-interview__picture--second {
  border-top-left-radius: 0;
  border-top-right-radius: 43px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 43px;
}
@media screen and (max-width: 767px) {
  .recruit-interview__picture--second {
    border-radius: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1600px) {
  .recruit-interview__picture-img {
    margin-left: -20%;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-interview__picture-img {
    margin-left: -30%;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-interview__picture-img {
    margin-left: -40%;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-interview__picture-img {
    margin-left: -50%;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__picture-img {
    margin-left: -75%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__picture-img {
    margin: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__picture-img--second {
    margin-right: -68%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__picture-img--second {
    margin: 0;
    width: 100%;
    height: 100%;
  }
}
.recruit-interview__schedule {
  background-color: #f1f2f5;
  margin-bottom: 5%;
  padding: 3%;
}
@media screen and (max-width: 1280px) {
  .recruit-interview__schedule {
    margin-bottom: 0;
    padding: 50px 3%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__schedule {
    padding: 50px 5% 30px;
    margin-top: 30px;
  }
}
.recruit-interview__schedule .recruit-main__title-wrap {
  margin: 0 auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media screen and (max-width: 767px) {
  .recruit-interview__schedule .recruit-main__title-wrap {
    padding: 0;
  }
}
.recruit-interview__schedule-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  max-width: 730px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .recruit-interview__schedule-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.recruit-interview__schedule-line {
  height: 100%;
  max-height: 695px;
}
@media screen and (max-width: 767px) {
  .recruit-interview__schedule-line {
    width: 40px;
    height: 695px;
    -o-object-fit: none;
       object-fit: none;
    -o-object-position: left center;
       object-position: left center;
  }
}
.recruit-interview__schedule-content--first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 32px;
  gap: 52px;
}
.recruit-interview__schedule-content--second {
  margin-top: 45px;
  display: grid;
  grid-template-rows: repeat(6, 114px);
}
.recruit-interview__schedule-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recruit-interview__schedule-wrapper {
    width: 100%;
    gap: 10px;
  }
}
.recruit-interview__schedule-time {
  position: relative;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .recruit-interview__schedule-time {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__schedule-time img {
    height: 58px;
    width: 100%;
  }
}
.recruit-interview__schedule-hour {
  position: absolute;
  font-size: 2.4rem;
  top: 10px;
  left: 40px;
}
@media screen and (max-width: 767px) {
  .recruit-interview__schedule-hour {
    font-size: 2rem;
    top: 14px;
    left: 12px;
  }
}
.recruit-interview__schedule-text {
  font-size: 2.4rem;
}
@media screen and (max-width: 1280px) {
  .recruit-interview__schedule-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__schedule-text {
    font-size: 1.8rem;
  }
}
.recruit-interview__schedule-par {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .recruit-interview__schedule-par {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__schedule-par {
    font-size: 1.3rem;
  }
}
.recruit-interview__schedule-picwrap {
  position: relative;
}
.recruit-interview__message {
  padding-bottom: 100px;
}
@media screen and (max-width: 1367px) {
  .recruit-interview__message {
    padding: 0 3% 84px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-interview__message {
    padding: 50px 3%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__message {
    padding: 50px 5%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__message .recruit-main__title-wrap {
    padding: 0;
  }
}
.recruit-interview__message-picwrap {
  width: 42%;
  max-width: 575px;
  background-color: #f1f2f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .recruit-interview__message-picwrap {
    height: auto;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-interview__message-picwrap {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__message-picwrap {
    width: 100%;
  }
}
.recruit-interview__message-img {
  height: 100%;
  width: 100%;
}
.recruit-interview__message-container {
  max-width: 1400px;
  margin: 0 auto;
  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: 1600px) {
  .recruit-interview__message-container {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .recruit-interview__message-container {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .recruit-interview__message-container {
    gap: 50px;
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .recruit-interview__message-container {
    gap: 40px;
    max-width: 1010px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-interview__message-container {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__message-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    gap: 20px;
  }
}
.recruit-interview__message-text {
  width: 53%;
  max-width: 740px;
  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;
}
@media screen and (max-width: 767px) {
  .recruit-interview__message-text {
    gap: 10px;
    width: 100%;
  }
}
.recruit-interview__message-title {
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin: 5% 0 0;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .recruit-interview__message-title {
    margin: 0;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-interview__message-title {
    font-size: 2rem;
    margin-top: 0;
  }
}

.application-banner {
  position: relative;
  width: 100%;
  height: 515px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 3%;
}
@media screen and (max-width: 767px) {
  .application-banner {
    height: 300px;
    padding: 0 5%;
  }
}
.application-banner:after {
  content: "";
  background-color: #f1f2f5;
  opacity: 0.5;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.application-banner--designer {
  background-image: url("./src/img/recruit/recruit-designer.jpg");
}
.application-banner--director {
  background-image: url("./src/img/recruit/recruit-director.jpg");
}
.application-banner__content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .application-banner__content {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .application-banner__content {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .application-banner__content {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .application-banner__content {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .application-banner__content {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .application-banner__content {
    max-width: 100%;
  }
}
.application-banner__content h2 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .application-banner__content h2 {
    font-size: 2.4rem;
  }
}
.application-banner__content p {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .application-banner__content p {
    font-size: 1.8rem;
  }
}

.work {
  position: relative;
}
.work::before {
  content: "";
  position: absolute;
  bottom: 620px;
  left: -392px;
  width: 790.78px;
  height: 695.14px;
  background-image: url("./src/img/top/triangle-bg.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .work::before {
    width: 351.305px;
    height: 309.415px;
    left: -204.385px;
    bottom: 54.23px;
  }
}
.work-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .work-wrapper {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .work-wrapper {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .work-wrapper {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .work-wrapper {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .work-wrapper {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .work-wrapper {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .work-wrapper {
    max-width: 100%;
  }
}
.work-category-title {
  font-size: 4rem;
  margin: -130px 0 60px;
}
@media screen and (max-width: 1280px) {
  .work-category-title {
    margin: -90px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .work-category-title {
    font-size: 2.2rem;
    margin: -20px 0 30px;
  }
}
.work-contents {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .work-contents {
    margin-bottom: 35px;
    padding-bottom: 35px;
  }
}
.work-content__items {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 2%;
}
@media screen and (max-width: 767px) {
  .work-content__items {
    gap: 35px 0;
  }
}
.work-item {
  width: 32%;
}
@media screen and (max-width: 981px) {
  .work-item {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .work-item {
    width: 100%;
  }
}
.work-item:hover .work-item__img {
  margin: 5px 0 -5px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1568627451);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1568627451);
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.work-item:hover .work-item__txts {
  opacity: 0.6;
}
.work-item__img {
  position: relative;
  height: 235px;
  background-color: #cccccc;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1568627451);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1568627451);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .work-item__img {
    height: 180px;
  }
}
.work-item__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
.work-item__txts {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.work-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .work-item__title {
    margin-top: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.work-item__title h2 {
  margin-right: 10px;
  font: 700 2rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .work-item__title h2 {
    margin-right: 0;
    font-size: 1.7rem;
  }
}
.work-item__date {
  padding-top: 8px;
  font-size: 1.4rem;
  font-family: "brandon-grotesque", sans-serif;
}
@media screen and (max-width: 767px) {
  .work-item__date {
    padding-top: 4px;
    font-size: 1.2rem;
  }
}
.work-item__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 18px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .work-item__category {
    margin-top: 12px;
  }
}
.work-item__category p,
.work-item__category a {
  height: 30px;
  padding: 2px 10px;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 5px;
  background-color: #f1f2f5;
  cursor: pointer;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media screen and (max-width: 767px) {
  .work-item__category p,
  .work-item__category a {
    font-size: 1.4rem;
    padding: 4px 5px;
  }
}
.work-item__category p.active, .work-item__category p:hover,
.work-item__category a.active,
.work-item__category a:hover {
  background-color: #000;
  color: #fff;
}
.work-pagenavi {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .work-pagenavi {
    margin-top: 35px;
  }
}
.work-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 50px;
}
@media screen and (max-width: 767px) {
  .work-tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
}
.work-tags__item {
  width: 47.8%;
}
@media screen and (max-width: 767px) {
  .work-tags__item {
    width: 100%;
  }
}
.work-tags__title {
  margin-bottom: 30px;
  font: 700 2.4rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .work-tags__title {
    margin-bottom: 20px;
    font-size: 2.1rem;
  }
}
.work__search-label {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .work__search-label {
    font-size: 21px;
    margin-bottom: 18px;
  }
}
.work__keyword-search {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .work__keyword-search {
    margin-bottom: 30px;
  }
}
.work__search-wrap {
  position: relative;
}
.work__search-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 23px;
  width: 30px;
  height: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("./src/img/works/works-search.svg");
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .work__search-wrap::before {
    left: 20px;
    width: 20px;
    height: 20px;
  }
}
.work__search-field {
  width: 100%;
  height: 60px;
  border: 1px solid #b3b3b3;
  border-radius: 30px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #00000b;
  padding: 0 30px 0 83px;
}
@media screen and (max-width: 767px) {
  .work__search-field {
    height: 40px;
    font-size: 16px;
    padding: 0 20px 0 60px;
  }
}
.work__search-field::-webkit-input-placeholder {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #b3b3b3;
}
.work__search-field::-moz-placeholder {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #b3b3b3;
}
.work__search-field:-ms-input-placeholder {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #b3b3b3;
}
.work__search-field::-ms-input-placeholder {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #b3b3b3;
}
.work__search-field::placeholder {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #b3b3b3;
}
@media screen and (max-width: 767px) {
  .work__search-field::-webkit-input-placeholder {
    font-size: 16px;
  }
  .work__search-field::-moz-placeholder {
    font-size: 16px;
  }
  .work__search-field:-ms-input-placeholder {
    font-size: 16px;
  }
  .work__search-field::-ms-input-placeholder {
    font-size: 16px;
  }
  .work__search-field::placeholder {
    font-size: 16px;
  }
}
.work__search-keywords {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .work__search-keywords {
    font-size: 21px;
    margin-bottom: 25px;
  }
}

.works-detail {
  position: relative;
  background-color: #fff;
}
.works-detail::before {
  content: "";
  position: absolute;
  bottom: 1420px;
  left: -392px;
  width: 790.78px;
  height: 695.14px;
  background-image: url("./src/img/top/triangle-bg.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .works-detail::before {
    width: 351.305px;
    height: 309.415px;
    left: -204.385px;
    bottom: 54.23px;
  }
}
.works-detail__content {
  position: relative;
  margin-bottom: 60px;
  padding: 50px 100px;
  border: 1px solid #dae1ea;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .works-detail__content {
    padding: 20px;
    margin-bottom: 35px;
  }
}
.works-detail__title {
  margin-bottom: 14px;
  font: 700 2.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .works-detail__title {
    font-size: 2.3rem;
  }
}
.works-detail__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.works-detail__tag p {
  display: inline-block;
  padding: 2px 10px;
  font: 500 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  background-color: #f1f2f5;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .works-detail__tag p {
    font-size: 1.4rem;
  }
}
.works-detail__img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  border: 2px solid #727278;
}
@media screen and (max-width: 767px) {
  .works-detail__img {
    margin-top: 25px;
  }
}
.works-detail__img img {
  width: 100%;
  height: auto;
}
.works-detail__info {
  margin: 50px 0 55px;
}
@media screen and (max-width: 767px) {
  .works-detail__info {
    margin: 30px 0 35px;
  }
}
.works-detail__info-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  border-bottom: 2px #727278;
}
@media screen and (max-width: 767px) {
  .works-detail__info-row {
    padding-bottom: 18px;
  }
}
@media screen and (max-width: 420px) {
  .works-detail__info-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}
.works-detail__info-row:not(:first-child) {
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .works-detail__info-row:not(:first-child) {
    padding-top: 14px;
  }
}
.works-detail__info-row::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-image: url("./src/img/works/works-dots.png");
  background-size: cover;
  background-position: center;
  left: 0;
  bottom: 0;
}
.works-detail__info-label {
  min-width: 250px;
  margin-bottom: auto;
  font: 700 1.8rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  color: #727278;
}
@media screen and (max-width: 767px) {
  .works-detail__info-label {
    min-width: 120px;
    font-size: 1.6rem;
  }
}
.works-detail__info-info {
  font: 500 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .works-detail__info-info {
    font-size: 1.4rem;
  }
}
.works-detail__info-info.link {
  line-height: 1.6rem;
  color: #727278;
  border-bottom: 1px solid #727278;
}
@media screen and (max-width: 767px) {
  .works-detail__info-info.link {
    line-height: 1.4rem;
  }
}
.works-detail__info-tag {
  display: inline-block;
  padding: 2px 10px;
  font: 500 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  background-color: #f1f2f5;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .works-detail__info-tag {
    font-size: 1.4rem;
  }
}
.works-detail__info-tag.s2 {
  color: #727278;
  background-color: #fff;
  border: 1px solid #f1f2f5;
}
.works-detail__info-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
}
@media screen and (max-width: 767px) {
  .works-detail__info-group {
    gap: 8px;
  }
}
.works-detail__info-group.s2mw .works-detail__info-tag {
  min-width: 170px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .works-detail__info-group.s2mw .works-detail__info-tag {
    min-width: 120px;
  }
}
.works-detail__info-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .works-detail__info-member {
    width: 48%;
    min-width: 160px;
    margin: unset;
  }
}
.works-detail__info-member:nth-last-child(-n+3) {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .works-detail__info-member:nth-last-child(-n+3) {
    margin: unset;
  }
}
.works-detail__info-member p {
  margin-left: 16px;
  font: 500 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .works-detail__info-member p {
    font-size: 1.4rem;
    margin-left: 10px;
  }
}
.works-detail__info-member-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .works-detail__info-member-img {
    width: 27px;
    height: 27px;
  }
}
.works-detail__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .works-detail__link {
    margin-bottom: 40px;
  }
}
.works-detail__view {
  position: relative;
  margin: 0 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .works-detail__view {
    margin: 0 0 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.works-detail__view-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6862745098);
  visibility: hidden;
  z-index: -999;
  overflow: hidden;
}
.works-detail__view-container.active-slider {
  visibility: visible;
  z-index: 9999;
}
.works-detail__view-img {
  max-height: 750px;
  min-height: 750px;
  overflow-y: scroll;
  border: 1px solid #dae1ea;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .works-detail__view-img {
    max-height: 300px;
    min-height: 300px;
  }
}
.works-detail__view-img:hover {
  opacity: 0.8;
}
.works-detail__view-img.active {
  position: fixed;
  width: 100%;
  height: 100%;
}
.works-detail__view-img img {
  width: 100%;
  height: 100%;
}
.works-detail__view-img::-webkit-scrollbar {
  width: 15px;
}
@media screen and (max-width: 767px) {
  .works-detail__view-img::-webkit-scrollbar {
    width: 6px;
  }
}
.works-detail__view-img::-webkit-scrollbar-thumb {
  border: 5px solid #fff;
  border-radius: 3.5px;
  background-color: #b3b3b3;
}
@media screen and (max-width: 767px) {
  .works-detail__view-img::-webkit-scrollbar-thumb {
    border: 0;
  }
}
.works-detail__view-img.s2 {
  max-height: unset;
  height: calc(100vh - 30px);
  min-height: unset;
  margin: 0 auto;
  padding: 0 9%;
  border: none;
}
.works-detail__view-img.s2 img {
  height: auto;
}
.works-detail__view-img.s2::-webkit-scrollbar-thumb {
  border: none;
  background-color: #727278;
}
.works-detail__view-img--pc {
  width: 100%;
  max-width: 785px;
}
.works-detail__view-img--sp {
  width: 100%;
  max-width: 325px;
}
.works-detail__pc.activem, .works-detail__sp.activem {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.368627451);
}
.works-detail__pc.activem .works-detail__view-img, .works-detail__sp.activem .works-detail__view-img {
  max-height: 100%;
}
.works-detail__title-view {
  margin-bottom: 20px;
  font: 700 2rem "brandon-grotesque", sans-serif;
  -webkit-transition: 0s;
  transition: 0s;
}
@media screen and (max-width: 767px) {
  .works-detail__title-view {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .works-detail__sp img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0 auto;
  }
}
.works-detail__view-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
  height: 100%;
  padding: 100px 0 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .works-detail__view-modal {
    padding: 45px 0 0;
  }
}
.works-detail__view-modal.sps2 {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.works-detail__view-modal .works-detail__title-view {
  padding: 0 9%;
  color: #fff;
}
.works-detail__view-modal .flickity-button {
  top: 50% !important;
  left: 7% !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-color: #fff;
  z-index: 99999;
}
.works-detail__view-modal .flickity-button:hover {
  background-color: transparent;
  opacity: 0.7;
}
.works-detail__view-modal .flickity-button::after, .works-detail__view-modal .flickity-button::before {
  border-color: #fff !important;
}
.works-detail__view-modal .flickity-button.next {
  left: unset !important;
  right: 7% !important;
}
.works-detail__pc-md, .works-detail__sp-md {
  width: 100%;
  height: 100%;
}
.works-detail__pc-md .works-detail__view-img:hover, .works-detail__sp-md .works-detail__view-img:hover {
  opacity: 1;
  cursor: unset;
}
.works-detail__sp-md .works-detail__view-img {
  width: 45%;
  min-width: 700px;
}
@media screen and (max-width: 767px) {
  .works-detail__sp-md .works-detail__view-img {
    width: 70%;
    min-width: 250px;
  }
}
.works-detail__close {
  position: absolute;
  top: 50px;
  right: 9%;
  width: 45px;
  height: 45px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  z-index: 99999;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .works-detail__close {
    width: 23px;
    height: 23px;
    top: 20px;
  }
}
.works-detail__close::before, .works-detail__close::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .works-detail__close::before, .works-detail__close::after {
    width: 9px;
  }
}
.works-detail__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.works-detail__view-pnbtn {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 999;
}
.works-detail__view-pn {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-image: url("./src/img/icons/button-arrow.svg");
  background-size: 12px 18px;
  background-position: 45%;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .works-detail__view-pn {
    width: 27px;
    height: 27px;
    background-size: 8px 13px;
  }
}
.works-detail__view-pn.prev {
  left: 4%;
}
@media screen and (max-width: 767px) {
  .works-detail__view-pn.prev {
    left: 2.5%;
  }
}
.works-detail__view-pn.nxt {
  right: 4%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .works-detail__view-pn.nxt {
    right: 2.5%;
  }
}
.works-detail__return {
  height: 60px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-width: 260px;
  margin: 0 auto;
  font: 700 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  border: 1px solid #00000b;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .works-detail__return {
    font-size: 1.4rem;
    height: 40px;
    min-width: unset;
    padding: 0 20px;
  }
}
.works-detail__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
  padding: 35px 0 40px;
  border-width: 2px 0;
  border-style: solid;
  border-color: transparent;
  -o-border-image: url("./src/img/works/works-dots.png") 30 repeat;
     border-image: url("./src/img/works/works-dots.png") 30 repeat;
}
@media screen and (max-width: 767px) {
  .works-detail__pagination {
    margin-top: 45px;
    padding: 18px 0 25px;
  }
}
@media screen and (max-width: 560px) {
  .works-detail__pagination {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.works-detail__pagination-wrap {
  position: relative;
  overflow: hidden;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1280px) {
  .works-detail__pagination-wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .works-detail__pagination-wrap {
    gap: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .works-detail__pagination-wrap {
    overflow: visible;
  }
}
.works-detail__pagination-wrap.prev {
  padding-right: 60px;
}
@media screen and (max-width: 1024px) {
  .works-detail__pagination-wrap.prev {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .works-detail__pagination-wrap.prev {
    padding: 0;
  }
}
.works-detail__pagination-wrap.prev .works-detail__pagination-btn::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.works-detail__pagination-wrap.next {
  padding-left: 60px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .works-detail__pagination-wrap.next {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .works-detail__pagination-wrap.next {
    padding: 0;
  }
}
.works-detail__pagination-wrap.next::after {
  content: "";
  position: absolute;
  width: 999px;
  height: 2px;
  background-image: url("./src/img/works/works-dots.png");
  background-size: cover;
  background-position: center;
  left: 2px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (max-width: 560px) {
  .works-detail__pagination-wrap.next::after {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
    width: 100%;
    left: 0;
    top: -20px;
  }
}
.works-detail__pagination-wrap.next .works-detail__pagination-btn::before {
  left: unset;
  right: 0;
}
.works-detail__pagination-wrap:hover .works-detail__pagination-title {
  color: #b01e2d;
}
@media screen and (max-width: 767px) {
  .works-detail__pagination-wrap:hover .works-detail__pagination-title {
    color: initial;
  }
}
.works-detail__pagination-wrap:hover .works-detail__pagination-btn::before {
  border: 1px solid #b01e2d;
  background-image: url("./src/img/blog/blog-caret-red.svg");
}
@media screen and (max-width: 767px) {
  .works-detail__pagination-wrap:hover .works-detail__pagination-btn::before {
    border: 1px solid #00000b;
    background-image: url("./src/img/blog/blog-caret-gray.svg");
  }
}
.works-detail__pagination-btn {
  height: 80px;
  min-width: 80px;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .works-detail__pagination-btn {
    height: 60px;
    min-width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .works-detail__pagination-btn {
    height: 30px;
    min-width: 30px;
  }
}
.works-detail__pagination-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #00000b;
  background: transparent url("./src/img/blog/blog-caret-gray.svg") no-repeat center;
  background-size: 6.6px 12px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .works-detail__pagination-btn::before {
    width: 30px;
    height: 30px;
  }
}
.works-detail__pagination-date {
  font-size: 1.4rem;
  font-family: "brandon-grotesque", sans-serif;
}
@media screen and (max-width: 767px) {
  .works-detail__pagination-date {
    font-size: 1.2rem;
  }
}
.works-detail__pagination-title {
  margin: 12px 0;
  text-align: justify;
  font: 700 2rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  line-height: 1.75em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .works-detail__pagination-title {
    font-size: 1.6rem;
  }
}
.works-detail__pagination-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.works-detail__pagination-tag {
  display: inline-block;
  padding: 2px 10px;
  font: 500 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  background-color: #f1f2f5;
  border-radius: 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .works-detail__pagination-tag {
    font-size: 1.4rem;
  }
}
.works-detail__pagination-tag:hover {
  color: #fff;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .works-detail__pagination-tag:hover {
    color: initial;
    background-color: #f1f2f5;
  }
}
.works-detail__more {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .works-detail__more {
    margin-bottom: 70px;
  }
}
.works-detail__more h3 {
  margin-bottom: 17px;
  font: 700 2.5rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .works-detail__more h3 {
    font-size: 2.1rem;
  }
}
.works-detail__more-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .works-detail__more-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.works-detail__more-item {
  width: 31%;
}
@media screen and (max-width: 1024px) {
  .works-detail__more-item {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .works-detail__more-item {
    width: 100%;
  }
}
.works-detail__more-img {
  display: block;
  width: 100%;
  height: 235px;
  background-color: #cccccc;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1568627451);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1568627451);
}
@media screen and (max-width: 1280px) {
  .works-detail__more-img {
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .works-detail__more-img {
    height: 200px;
  }
}
.works-detail__more-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.works-detail__more-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 16px 0;
}
@media screen and (max-width: 767px) {
  .works-detail__more-title {
    margin: 7px 0;
  }
}
.works-detail__more-title h4 {
  font: 700 2rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .works-detail__more-title h4 {
    font-size: 1.8rem;
  }
}
.works-detail__more-date {
  padding-top: 6px;
  font-size: 1.4rem;
  font-family: "brandon-grotesque", sans-serif;
}
@media screen and (max-width: 767px) {
  .works-detail__more-date {
    font-size: 1.2rem;
  }
}
.works-detail__more-tags p {
  font: 500 1.4rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .works-detail__more-tags p {
    font-size: 1.2rem;
  }
}

.sitemap {
  max-width: 1400px;
  margin: auto;
}
@media screen and (max-width: 1600px) {
  .sitemap {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .sitemap {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .sitemap {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .sitemap {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .sitemap {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .sitemap {
    max-width: 100%;
    padding: 0 5%;
  }
}
.sitemap__content {
  width: 100%;
}
.sitemap__category-wrap {
  padding-bottom: 31px;
  border-bottom: 1px solid #f1f2f5;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .sitemap__category-wrap {
    padding-bottom: 15.5px;
    margin-bottom: 16px;
  }
}
.sitemap__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.75em;
  margin-bottom: 22px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
@media screen and (max-width: 767px) {
  .sitemap__title {
    font-size: 2rem;
    gap: 20px;
    margin-bottom: 11px;
  }
}
.sitemap__title span {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-size: 1.4rem;
  color: #727278;
  line-height: 1.75em;
}
.sitemap__title--no-sub {
  width: 247px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sitemap__title--no-sub {
    width: 100%;
    margin-bottom: initial;
  }
}
.sitemap__title--no-sub::after {
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  width: 100%;
  height: 100%;
  background: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sitemap__title--no-sub::after {
    display: none;
  }
}
.sitemap__title--no-sub:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sitemap__title--no-sub:hover {
    color: #00000b;
  }
}
.sitemap__title--no-sub:hover::before {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.sitemap__title--no-sub:hover::after {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.sitemap__title--no-sub-last {
  width: 386px;
}
@media screen and (max-width: 767px) {
  .sitemap__title--no-sub-last {
    width: 100%;
  }
}
.sitemap__subitem-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 30px;
}
@media screen and (max-width: 767px) {
  .sitemap__subitem-list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 17px;
  }
}
.sitemap__subitem-list--title-only {
  row-gap: 38px;
  -webkit-column-gap: 61px;
     -moz-column-gap: 61px;
          column-gap: 61px;
}
@media screen and (max-width: 767px) {
  .sitemap__subitem-list--title-only {
    row-gap: 19px;
    -webkit-column-gap: 30.5px;
       -moz-column-gap: 30.5px;
            column-gap: 30.5px;
  }
}
.sitemap__subitem {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 270px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.75em;
  padding-left: 32px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
@media screen and (max-width: 767px) {
  .sitemap__subitem {
    width: 100%;
    font-size: 1.4rem;
    padding-left: 16px;
  }
}
.sitemap__subitem::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  background-image: url("./src/img/icons/sitemap-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  -webkit-filter: brightness(0);
          filter: brightness(0);
  -webkit-transition: left 350ms ease;
  transition: left 350ms ease;
}
@media screen and (max-width: 767px) {
  .sitemap__subitem::before {
    width: 8px;
    height: 8px;
  }
}
.sitemap__subitem:hover {
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .sitemap__subitem:hover {
    color: #00000b;
  }
}
.sitemap__subitem:hover::before {
  left: 8px;
}
@media screen and (max-width: 767px) {
  .sitemap__subitem:hover::before {
    left: 4px;
  }
}

.voice {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .voice {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .voice {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .voice {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .voice {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .voice {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .voice {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .voice {
    max-width: 100%;
    padding: 0 5%;
  }
}
.voice__grid {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .voice__grid {
    padding: 0;
    margin-bottom: 30px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 20px;
  }
}
.voice__grid::after {
  content: "";
  position: absolute;
  left: -600px;
  bottom: 18%;
  height: 700px;
  width: 895px;
  background-image: url("./src/img/top/triangle-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
@media screen and (max-width: 1367px) {
  .voice__grid::after {
    left: -450px;
  }
}
@media screen and (max-width: 1024px) {
  .voice__grid::after {
    left: -440px;
  }
}
@media screen and (max-width: 767px) {
  .voice__grid::after {
    left: -270px;
    bottom: 45%;
    width: 400px;
    height: 447.5px;
  }
}
.voice__card {
  width: 48%;
  max-width: 660px;
  min-height: 610px;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 11, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 11, 0.1);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
@media screen and (max-width: 767px) {
  .voice__card {
    width: 100%;
    max-width: 100%;
    min-height: initial;
  }
}
.voice__featured-image {
  width: 100%;
  height: 260px;
  background-color: #cccccc;
}
@media screen and (max-width: 767px) {
  .voice__featured-image {
    height: 130px;
  }
}
.voice__featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice__excerpt {
  position: relative;
  padding-bottom: 11px;
  margin-bottom: 40px;
  height: 110px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .voice__excerpt {
    padding-bottom: 5.5px;
    margin-bottom: 20px;
    height: 55px;
  }
}
.voice__card-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .voice__card-text {
    font-size: 1.6rem;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }
}
.voice__card-text--md {
  display: initial;
  font-size: 1.8rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .voice__card-text--md {
    font-size: 1.4rem;
  }
}
.voice__card-text--sm {
  display: initial;
  font-size: 1.4rem;
  line-height: 1.75em;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .voice__card-text--sm {
    font-size: 1rem;
  }
}
.voice__card-text--details {
  margin-bottom: 7px;
}
.voice__card-text.block {
  display: block;
}
.voice__detail-wrap {
  position: relative;
  padding: 21px 39px;
}
@media screen and (max-width: 767px) {
  .voice__detail-wrap {
    padding: 10.5px 19.5px;
  }
}
.voice__client-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 29px;
}
@media screen and (max-width: 1024px) {
  .voice__client-info {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .voice__client-info {
    gap: 14.5px;
  }
}
.voice__client-info::before, .voice__client-info::after {
  content: "";
  position: absolute;
  top: -35px;
  left: 0;
  height: 3px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .voice__client-info::before, .voice__client-info::after {
    top: -17.5px;
  }
}
.voice__client-info::before {
  width: 100%;
  background-color: #e3e3e4;
}
.voice__client-info::after {
  width: 100px;
  background-color: #b01e2d;
}
@media screen and (max-width: 767px) {
  .voice__client-info::after {
    width: 50px;
  }
}
.voice__client-info--details {
  margin-bottom: 21px;
}
.voice__client-info--details::before, .voice__client-info--details::after {
  display: none;
}
.voice__client-image {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 7px;
  overflow: hidden;
  background-color: #cccccc;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1367px) {
  .voice__client-image {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .voice__client-image {
    width: 95px;
    height: 95px;
  }
}
@media screen and (max-width: 767px) {
  .voice__client-image {
    width: 75px;
    height: 75px;
  }
}
.voice__client-image--details {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .voice__client-image--details {
    width: 60px;
    height: 60px;
  }
}
.voice__client-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice__client-image p {
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 1367px) {
  .voice__client-image p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .voice__client-image p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .voice__client-image p {
    font-size: 1rem;
  }
}
.voice__button-wrap {
  margin-left: auto;
}
.voice__card-button {
  right: 0;
  display: block;
  width: 81px;
  height: 81px;
  border: 1px solid #00000b;
  border-radius: 50%;
  opacity: 0.6;
  background-image: url("./src/img/blog/blog-caret-gray.svg");
  background-size: 7px 13px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
@media screen and (max-width: 1367px) {
  .voice__card-button {
    width: 75px;
    height: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .voice__card-button {
    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .voice__card-button {
    width: 40.5px;
    height: 40.5px;
    background-size: 5px 11px;
  }
}
.voice__card-button:hover {
  border: 1px solid #b01e2d;
  background-image: url("./src/img/blog/blog-caret-red.svg");
}
.voice--mx1280 {
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 1367px) {
  .voice--mx1280 {
    padding: 0 3%;
  }
}
@media screen and (max-width: 1024px) {
  .voice--mx1280 {
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .voice--mx1280 {
    padding: 0 5%;
  }
}
.voice__title-block {
  position: relative;
  padding-bottom: 11px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .voice__title-block {
    padding-bottom: 5.5px;
    margin-bottom: 15px;
  }
}
.voice__title-block::before, .voice__title-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 10px;
}
.voice__title-block::before {
  width: 100%;
  background-color: #e3e3e4;
}
.voice__title-block::after {
  width: 41px;
  background-color: #b01e2d;
}
.voice__main-image {
  position: relative;
  width: 100%;
  height: 473px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin-bottom: 31px;
}
@media screen and (max-width: 767px) {
  .voice__main-image {
    height: 236.5px;
    margin-bottom: 15.5px;
  }
}
.voice__main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice__title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .voice__title {
    font-size: 2rem;
  }
}
.voice__tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  margin-bottom: 48px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .voice__tag-list {
    margin-bottom: 24px;
  }
}
.voice__tag-item {
  position: relative;
  background-color: #f1f2f5;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.75em;
  border-radius: 10px;
  padding: 1px 13.5px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .voice__tag-item {
    font-size: 1.4rem;
  }
}
.voice__tag-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #00000b;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 350ms;
  transition: -webkit-transform ease 350ms;
  transition: transform ease 350ms;
  transition: transform ease 350ms, -webkit-transform ease 350ms;
}
@media screen and (max-width: 767px) {
  .voice__tag-item::before {
    display: none;
  }
}
.voice__tag-item:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .voice__tag-item:hover {
    color: #00000b;
  }
}
.voice__tag-item:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.voice__link-wrap {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .voice__link-wrap {
    margin-bottom: 25px;
  }
}
.voice__info-block {
  background-color: #f1f2f5;
  padding: 40px 29px;
  border-radius: 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .voice__info-block {
    padding: 20px 14.5px;
    margin-bottom: 40px;
  }
}
.voice__paragraph {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.2857142857em;
}
.voice__paragraph--gray {
  color: #727278;
}
.voice__block-wrap {
  position: relative;
}
.voice__block-wrap::before, .voice__block-wrap::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("./src/img/top/triangle-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.voice__block-wrap::before {
  width: 540px;
  aspect-ratio: 1/1;
  left: -515px;
  top: 7%;
}
@media screen and (max-width: 1024px) {
  .voice__block-wrap::before {
    left: -415px;
  }
}
@media screen and (max-width: 767px) {
  .voice__block-wrap::before {
    width: 270px;
    left: -200px;
  }
}
.voice__block-wrap::after {
  width: 1029px;
  height: 901px;
  right: -625px;
  bottom: -320px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .voice__block-wrap::after {
    width: 514.5;
    height: 450.5px;
    right: -200px;
  }
}
.voice__bordered-block {
  counter-reset: question;
  position: relative;
  border: 1px solid #f1f2f5;
  background-color: #fff;
  padding: 40px 35px;
  margin-bottom: 60px;
  z-index: 1;
}
@media screen and (max-width: 1367px) {
  .voice__bordered-block {
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 1024px) {
  .voice__bordered-block {
    width: 95%;
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 767px) {
  .voice__bordered-block {
    width: 100%;
    padding: 40px 17.5px 20px;
    margin-bottom: 30px;
  }
}
.voice__ba-block:first-of-type {
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .voice__ba-block:first-of-type {
    margin-bottom: 41px;
  }
}
.voice__heading-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 41px;
}
@media screen and (max-width: 767px) {
  .voice__heading-wrap {
    gap: 20.5px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.voice__detail-heading {
  font-family: "brandon-grotesque", sans-serif;
  font-size: 5rem;
  color: #727278;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .voice__detail-heading {
    width: 100%;
    font-size: 3rem;
    line-height: 0.1em;
  }
}
.voice__detail-heading::first-letter {
  font-size: 7rem;
  line-height: 1.6071428571em;
  line-height: 0.1em;
}
@media screen and (max-width: 767px) {
  .voice__detail-heading::first-letter {
    font-size: 5rem;
  }
}
.voice__detail-heading--red {
  color: #b01e2d;
}
.voice__detail-subheading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .voice__detail-subheading {
    font-size: 1.8rem;
  }
}
.voice__detail-subheading--red {
  color: #b01e2d;
}
.voice__border {
  margin: 31px 0 50px;
  border-bottom: 2px dotted #727278;
}
@media screen and (max-width: 767px) {
  .voice__border {
    margin: 15.5px 0 10px;
  }
}
.voice__question-wrap:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .voice__question-wrap:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.voice__question-heading-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 3px solid #b01e2d;
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .voice__question-heading-wrap {
    margin-bottom: 10.5px;
  }
}
.voice__question-counter {
  font-weight: 700;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 7rem;
  line-height: 1.75em;
  color: #727278;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .voice__question-counter {
    font-size: 5rem;
  }
}
.voice__question-counter::after {
  counter-increment: question;
  content: counter(question);
  font-size: 5rem;
  line-height: 1.75em;
  color: #727278;
}
@media screen and (max-width: 767px) {
  .voice__question-counter::after {
    font-size: 3rem;
  }
}
.voice__question-heading {
  font-size: 2rem;
  line-height: 2em;
  letter-spacing: 0.04em;
  margin-left: -35px;
}
@media screen and (max-width: 767px) {
  .voice__question-heading {
    font-size: 1.6rem;
    line-height: 1.5em;
  }
}
.voice__question-heading span {
  color: #b01e2d;
}
.voice__question-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1120/630;
  background-color: #f1f2f5;
  font-size: 1.2rem;
  line-height: 1.75em;
  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;
}
.voice__question-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice__question-image p {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .voice .job__button {
    font-size: 1.6rem;
  }
}
.voice .voice__progress-current {
  display: none;
}
.voice .voice__progress-current span {
  display: none;
}

@media screen and (max-width: 1367px) {
  .service-main {
    padding: 0 3%;
  }
}
@media screen and (max-width: 981px) {
  .service-main {
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .service-main {
    padding: 0 5%;
  }
}
.service-main__action-container {
  background-color: #f1f2f5;
  padding: 44px 0;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 11, 0.1);
          box-shadow: 0 10px 15px rgba(0, 0, 11, 0.1);
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 97px;
}
@media screen and (max-width: 767px) {
  .service-main__action-container {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .service-main__action-container {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .service-main__action-container {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .service-main__action-container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .service-main__action-container {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .service-main__action-container {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .service-main__action-container {
    max-width: 100%;
    padding: 22px 15px;
    margin-bottom: getps375(97px);
  }
}
.service-main #service-1,
.service-main #service-2,
.service-main #service-3,
.service-main #service-4,
.service-main #service-5,
.service-main #service-6,
.service-main #service-7,
.service-main #service-8 {
  position: absolute;
  top: -100px;
}
.service-main__action-heading {
  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: 12px;
  margin-bottom: 35px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .service-main__action-heading {
    gap: 6px;
    margin-bottom: 17.5px;
    font-size: 1.8rem;
  }
}
.service-main__action-heading img {
  width: 25px;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .service-main__action-heading img {
    width: getps375(25px);
    height: 12.5px;
  }
}
.service-main__action-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .service-main__action-list {
    row-gap: 20px;
  }
}
.service-main__action-item {
  position: relative;
  width: 25%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75em;
  padding: 14px 40px 30px 31px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
@media screen and (max-width: 767px) {
  .service-main__action-item {
    width: 100%;
    font-size: 1.4rem;
    padding: 7px 30px 7px 15.5px;
    font-size: 1.4rem;
    border-left: 1px solid #00000b;
  }
}
.service-main__action-item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 12.5px;
  height: 15.5px;
  background-image: url("./src/img/icons/breadcrumbs-arrow.svg");
  background-repeat: no-repeat;
  background-size: 12.5px 15.5px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .service-main__action-item::after {
    right: 4%;
    top: 0;
    left: initial;
    width: 6.25px;
    height: 7.75px;
    background-size: contain;
  }
}
.service-main__action-item:hover {
  background-color: #fff;
}
.service-main__action-item:not(:nth-of-type(4n)) {
  border-right: 1px solid #00000b;
}
@media screen and (max-width: 767px) {
  .service-main__action-item:not(:nth-of-type(4n)) {
    border-right: none;
  }
}
.service-main__list {
  position: relative;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .service-main__list {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .service-main__list {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .service-main__list {
    max-width: 100%;
  }
}
.service-main__list::before, .service-main__list::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("./src/img/top/triangle-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
.service-main__list::before {
  top: 22%;
  left: -72%;
  width: 790px;
  height: 695px;
}
@media screen and (max-width: 767px) {
  .service-main__list::before {
    width: 395px;
    height: 347.5px;
    left: -325px;
  }
}
.service-main__list::after {
  width: 1029px;
  height: 901px;
  bottom: 11%;
  right: -55%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .service-main__list::after {
    width: 514.5px;
    height: 450.5px;
    right: -325px;
  }
}
.service-main__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 80px;
  margin-bottom: 65px;
}
@media screen and (max-width: 560px) {
  .service-main__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 40px;
    margin-bottom: 32.5px;
  }
}
.service-main__item:not(:last-of-type) {
  border-bottom: 2px dotted #727278;
}
.service-main__item:last-child {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.service-main__graphic {
  max-width: 520px;
}
@media screen and (max-width: 560px) {
  .service-main__graphic {
    max-width: 450px;
    margin: 0 auto 30px;
  }
}
.service-main__graphic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .service-main__graphic img {
    width: 105%;
    height: 105%;
  }
}
.service-main__name {
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.75em;
  margin-bottom: 9px;
}
@media screen and (max-width: 767px) {
  .service-main__name {
    font-size: 2.2rem;
    margin-bottom: 4.5px;
  }
}
.service-main__name span {
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 2rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .service-main__name span {
    font-size: 1.6rem;
  }
}
.service-main__text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2em;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .service-main__text {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
}

.upward-next__title-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .upward-next__title-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .upward-next__title-wrap {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .upward-next__title-wrap {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .upward-next__title-wrap {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .upward-next__title-wrap {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .upward-next__title-wrap {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__title-wrap {
    max-width: 100%;
  }
}
.upward-next__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .upward-next__title {
    gap: 5px;
    font-size: 2.2rem;
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.upward-next__title span {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .upward-next__title span {
    font-size: 1.3rem;
  }
}
.upward-next__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1367px) {
  .upward-next__wrap {
    gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.upward-next__image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .upward-next__image {
    width: 90%;
    margin: 0 auto 0 0;
  }
}
.upward-next__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .upward-next__image-text {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__image-text {
    width: unset;
    padding: 0 5%;
  }
}
.upward-next__image-title {
  font-size: 1.78rem;
  font-weight: 700;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1367px) {
  .upward-next__image-title {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 1280px) {
  .upward-next__image-title {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__image-title {
    margin-bottom: 3rem;
  }
}
.upward-next__image-description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
.upward-next section {
  position: relative;
}
.upward-next__offshore {
  background-image: url("./src/img/upward-next/upward-next-map.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 501px;
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .upward-next__offshore {
    margin-top: 50px;
    height: 350px;
  }
}
.upward-next__offshore-description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
.upward-next__strength {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .upward-next__strength {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .upward-next__strength {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .upward-next__strength {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .upward-next__strength {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .upward-next__strength {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .upward-next__strength {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__strength {
    max-width: 100%;
    margin-top: 50px;
  }
}
.upward-next__strength:before {
  content: "";
  position: absolute;
  top: 35%;
  left: -19%;
  z-index: -1;
  width: 395.53px;
  height: 695.13px;
  background-image: url("./src/img/upward-next/upward-next-deco.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .upward-next__strength .upward-next__title-wrap {
    padding: 0;
  }
}
.upward-next__strength-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .upward-next__strength-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.upward-next__strength-item {
  position: relative;
  width: 31%;
  height: 460px;
  border-radius: 30px;
  -webkit-box-shadow: 0 20px 20px rgba(7, 30, 29, 0.1);
          box-shadow: 0 20px 20px rgba(7, 30, 29, 0.1);
  padding: 40px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: block;
  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: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1367px) {
  .upward-next__strength-item {
    padding: 25px;
  }
}
@media screen and (max-width: 1280px) {
  .upward-next__strength-item {
    width: 32%;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__strength-item {
    width: 100%;
    margin-bottom: 30px;
    height: 100%;
  }
}
.upward-next__strength-item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .upward-next__strength-item:hover {
    -webkit-transform: unset;
            transform: unset;
  }
}
.upward-next__strength-icon {
  width: 150px;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.upward-next__strength-icon img {
  width: 100%;
}
.upward-next__strength-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.upward-next__strength-number {
  font-size: 2rem;
  font-weight: 700;
  color: #b01e2d;
  margin-right: 20px;
}
.upward-next__strength-title {
  font-size: 2rem;
}
.upward-next__strength-item-text {
  text-align: center;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2em;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .upward-next__strength-item-text {
    font-size: 12.95px;
  }
}
.upward-next__can {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .upward-next__can {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .upward-next__can {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .upward-next__can {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .upward-next__can {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .upward-next__can {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .upward-next__can {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__can {
    max-width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__can .upward-next__title-wrap {
    padding: 0;
  }
}
.upward-next__can-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 20px 20px rgba(7, 30, 29, 0.1);
          box-shadow: 0 20px 20px rgba(7, 30, 29, 0.1);
  padding: 40px;
  background-color: #fff;
  margin-top: 60px;
}
@media screen and (max-width: 1280px) {
  .upward-next__can-wrap {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__can-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.upward-next__can-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .upward-next__can-item {
    width: 100%;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__can-item:last-child {
    margin-bottom: 0;
  }
}
.upward-next__can-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  border-right: 1px solid #727278;
  height: 100px;
}
@media screen and (max-width: 1280px) {
  .upward-next__can-item:not(:last-child)::after {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__can-item:not(:last-child)::after {
    top: 25px;
    border-bottom: 1px solid #727278;
    border-right: none;
    width: 100%;
    height: 100%;
  }
}
.upward-next__can-icon {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 1367px) {
  .upward-next__can-icon {
    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width: 1280px) {
  .upward-next__can-icon {
    width: 50px;
    height: 50px;
  }
}
.upward-next__can-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .upward-next__can-text {
    font-size: 1.4rem;
  }
}
.upward-next__can-details {
  margin: 60px 0;
}
.upward-next__can-details-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 2px dotted #727278;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.upward-next__can-details-item:last-child {
  border-bottom: none;
}
.upward-next__can-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.upward-next__can-description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
.upward-next__download {
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .upward-next__download {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__download {
    padding: 0;
  }
}
.upward-next__download-banner {
  left: 20%;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 300px;
  max-width: 1380px;
}
@media screen and (max-width: 767px) {
  .upward-next__download-banner {
    left: unset;
    height: 160px;
  }
}
.upward-next__download-bg {
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.upward-next__download-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .upward-next__download-wrap {
    height: 160px;
  }
}
.upward-next__download-icon {
  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;
  height: 100%;
  width: 100%;
  max-width: 280px;
  background-color: #b01e2d;
}
@media screen and (max-width: 767px) {
  .upward-next__download-icon {
    width: 25%;
  }
}
.upward-next__download-img {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .upward-next__download-img {
    width: 30px;
    height: 30px;
  }
}
.upward-next__download-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1380px;
}
@media screen and (max-width: 1440px) {
  .upward-next__download-content {
    max-width: 1100px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media screen and (max-width: 1367px) {
  .upward-next__download-content {
    max-width: 1060px;
  }
}
@media screen and (max-width: 1280px) {
  .upward-next__download-content {
    max-width: 850px;
  }
}
@media screen and (max-width: 1024px) {
  .upward-next__download-content {
    max-width: 640px;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__download-content {
    width: 75%;
    padding: 5%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.upward-next__download-text {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
}
@media screen and (max-width: 767px) {
  .upward-next__download-text {
    font-size: 1.6rem;
  }
}
.upward-next__download-text--small {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .upward-next__download-text--small {
    font-size: 1.2rem;
  }
}
.upward-next__download-btn {
  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;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #fff;
  width: 100%;
  height: 80px;
  max-width: 600px;
  margin-left: 90px;
  border-radius: 40px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-image: url("./src/img/icons/icon-arrow-next.svg");
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1600px) {
  .upward-next__download-btn {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1440px) {
  .upward-next__download-btn {
    margin: 0;
    width: 50%;
    padding-right: 35px;
  }
}
@media screen and (max-width: 767px) {
  .upward-next__download-btn {
    width: 100%;
    height: 50px;
    font-size: 1rem;
    padding-right: 15px;
    background-size: 12px 12px;
  }
}
.upward-next__download-btn:hover {
  color: #fff;
  background-color: #00000b;
}

.advantage {
  margin: -10px 0 50px;
}
@media screen and (max-width: 767px) {
  .advantage {
    margin: 0;
  }
}
.advantage__container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .advantage__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 30px 0;
  }
}
.advantage__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 20px;
  height: 500px;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1367px) {
  .advantage__wrapper {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 767px) {
  .advantage__wrapper {
    padding: 20px;
  }
}
.advantage__wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #00000b;
  position: absolute;
  opacity: 0.5;
  z-index: -1;
}
.advantage__wrapper:first-child {
  background-image: url("./src/img/service-8/image_09.jpg");
}
.advantage__wrapper:nth-child(2) {
  background-image: url("./src/img/service-8/recruit.jpg");
}
.advantage__wrapper:last-child {
  background-image: url("./src/img/service-8/image_11.jpg");
}
.advantage__wrapper:first-child, .advantage__wrapper:nth-child(2), .advantage__wrapper:last-child {
  background-repeat: no-repeat;
  background-size: cover;
}
.advantage__head {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.advantage__head .flow__number {
  color: #fff;
  font-weight: 400;
}
@media screen and (max-width: 1600px) {
  .advantage__br {
    display: none;
  }
}
.advantage__wrapper .meo__text p {
  color: #fff;
  text-align: center;
}
.advantage .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.advantage .mt-10 {
  margin-top: 10px;
}
.advantage .mt-30 {
  margin-top: 30px;
}
.advantage .mb-0 {
  margin-bottom: 0;
}
.advantage .mr-30 {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .advantage .mr-30 {
    margin-right: 0;
  }
}

.case {
  margin: 80px 0;
}
.case__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .case__header.sp-flexd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case__header.mt-0 {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .case__wrapper {
    margin-bottom: 10px;
  }
}
.case__wrapper:first-child {
  margin-right: 30px;
}
.case__img {
  width: 130px;
  height: 130px;
  background-color: #e6e6e6;
}
.case__circle {
  width: 10px;
  height: 10px;
  background: #b01e2d;
  border-radius: 50%;
  margin-bottom: 20px;
}
.case__border {
  height: 100%;
  width: 0.5px;
  background: #727278;
  position: absolute;
  left: 5px;
}

.popup {
  position: fixed;
  bottom: -30px;
  right: 20px;
  width: 300px;
  z-index: 9999;
  display: block;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .popup {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.popup.show {
  bottom: 20px;
  visibility: visible;
  opacity: 1;
}
.popup > a {
  display: block;
}
.popup img {
  width: 100%;
}
.popup__close {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: -15px;
  right: -15px;
  cursor: pointer;
  background-image: url("./src/img/popup-close.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.matching {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .matching {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1600px) {
  .matching {
    max-width: 1300px;
  }
}
@media screen and (max-width: 1440px) {
  .matching {
    max-width: 1250px;
  }
}
@media screen and (max-width: 1367px) {
  .matching {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  .matching {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1024px) {
  .matching {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .matching {
    max-width: 100%;
    padding: 0 5%;
  }
}
.matching__intro {
  margin-bottom: 50px;
}
.matching__section {
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .matching__section {
    margin-bottom: 48px;
  }
}
.matching__heading {
  font-size: 2.8rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .matching__heading {
    font-size: 20px;
  }
}
.matching__development-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;
}
@media screen and (max-width: 1280px) {
  .matching__development-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.matching__development-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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 262px;
  height: 199px;
  background-color: #f7f7f7;
  border-radius: 20px;
  margin: 17px;
  padding: 16px 15px;
}
@media screen and (max-width: 767px) {
  .matching__development-item {
    width: 100%;
    margin: 0 0 17px 0;
  }
}
.matching__development-item p {
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-wrap: nowrap;
  margin: 25px 0 8px;
}
.matching__development-image {
  width: 68px;
  height: 68px;
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .matching__functions-table {
    overflow-x: auto;
  }
}
.matching__functions-table table {
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .matching__functions-table table {
    width: 200%;
  }
}
.matching__functions-table th {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  background-color: #555555;
}
@media screen and (max-width: 767px) {
  .matching__functions-table th {
    font-size: 13px;
  }
}
.matching__functions-table th:first-child {
  width: 20%;
}
.matching__functions-table th:nth-child(2) {
  width: 50%;
}
.matching__functions-table th:nth-child(n+3) {
  width: 10%;
}
.matching__functions-table td {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .matching__functions-table td {
    font-size: 13px;
  }
}
.matching__functions-table tr:nth-child(odd) {
  background: rgba(224, 232, 239, 0.4);
}
.matching__functions-table tr td:first-child {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .matching__functions-table tr td:first-child {
    font-size: 13px;
  }
}
.matching__functions-table tr td:nth-child(n+3) {
  text-align: center;
}
.matching__functions-table th, .matching__functions-table td {
  border: 2px solid #000;
  padding: 8px;
}
.matching__features {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 36px auto 82px;
}
.matching__features p.bold {
  position: relative;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  margin-left: 41px;
}
@media screen and (max-width: 767px) {
  .matching__features p.bold {
    font-size: 18px;
  }
}
.matching__features p.bold::before {
  position: absolute;
  top: 50%;
  left: -41px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: url("./src/img/matching/check_box.svg");
  display: inline-block;
  width: 29px;
  height: 29px;
}
.matching__benefits {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .matching__benefits {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.matching__benefits-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 230px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  background-color: #ae002d;
  border-radius: 20px;
  margin: 20px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .matching__benefits-item {
    margin: 0 0 20px 0;
    padding: 20px;
  }
}
.matching__benefits-img1, .matching__benefits-img2 {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .matching__benefits-img1, .matching__benefits-img2 {
    display: none;
  }
}
.matching__benefits-img1 {
  top: -123px;
  left: -60px;
  width: 159px;
  height: 209px;
}
.matching__benefits-img2 {
  right: -100px;
  bottom: -89px;
  width: 219px;
  height: 232px;
}
.matching__comparison-table {
  position: relative;
}
@media screen and (max-width: 767px) {
  .matching__comparison-table {
    overflow-x: auto;
  }
}
.matching__comparison-table table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .matching__comparison-table table {
    width: 200%;
  }
}
.matching__comparison-table tr {
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}
.matching__comparison-table th {
  width: 33.33%;
  height: 90px;
  font-weight: 700;
  background-color: #eeeeee;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .matching__comparison-table th {
    font-size: 15px;
  }
}
.matching__comparison-table th:nth-child(3) {
  color: #fff;
  background-color: #ae002d;
}
.matching__comparison-table tr td:first-child {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .matching__comparison-table tr td:first-child {
    font-size: 15px;
  }
}
.matching__comparison-table tr td:last-child {
  background-color: #f4cccc;
}
.matching__comparison-table td {
  height: 111px;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .matching__comparison-table td {
    height: auto;
    font-size: 15px;
  }
}
.matching__comparison-table td span {
  font-weight: 900;
}
.matching__comparison-table td p {
  font-size: 1.4rem;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .matching__comparison-table td p {
    font-size: 15px;
  }
}
.matching__comparison-img {
  position: absolute;
  top: -65px;
  right: -37px;
  width: 140px;
  height: 170px;
}
@media screen and (max-width: 767px) {
  .matching__comparison-img {
    top: auto;
    bottom: 0;
    right: 25px;
    width: 95px;
    height: auto;
  }
}
.matching__ec-site-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 200%;
}
.matching__ec-site-container::after {
  content: "";
  position: absolute;
  bottom: 21px;
  right: 25px;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent;
  border-top: 7.5px solid #f4cccc;
}
.matching__ec-site-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  width: 453px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  background-color: #f4cccc;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 15px;
}
.matching__ec-site-text p:first-child {
  text-align: center;
}
.matching__ec-site-text p:nth-child(2) {
  color: #ae002d;
}
.matching__construction {
  display: grid;
  grid-gap: 40px 15px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .matching__construction {
    grid-gap: 25px;
    grid-template-columns: 1fr;
  }
}
.matching__construction-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.matching__usage-flow-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.matching__usage-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.4;
  margin-top: 50px;
}
.matching__usage-flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.matching__usage-flow-step, .matching__usage-flow-text {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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;
}
.matching__usage-flow-step {
  position: relative;
  min-width: 94px;
  height: 94px;
  font-weight: 700;
  background-color: #f4cccc;
  border-radius: 50%;
  margin-right: 28px;
}
@media screen and (max-width: 767px) {
  .matching__usage-flow-step {
    margin-right: 16px;
  }
}
.matching__usage-flow-step span:last-child {
  font-size: 3.2rem;
  font-weight: 500;
  margin-top: -10px;
}
.matching__usage-flow-step.arrow::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 17px solid #333333;
}
.matching__usage-flow-text {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.matching__usage-flow-text span {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ae002d;
  margin-bottom: 10px;
}

.wpsecure {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  color: #060C1C;
  margin-top: 80px;
}
@media screen and (max-width: 1367px) {
  .wpsecure {
    margin-top: 50px;
  }
}
.wpsecure__header, .wpsecure__footer {
  font-family: "Noto Sans JP", sans-serif;
  color: #060C1C;
}
.wpsecure__back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #E0F3FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wpsecure__back-to-top {
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .wpsecure__back-to-top img {
    width: 19px;
    height: 20px;
  }
}
.wpsecure__back-to-top.active {
  display: none;
}
.wpsecure__consult-container {
  position: relative;
  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: 60px;
}
@media screen and (max-width: 767px) {
  .wpsecure__consult-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wpsecure__consult-container--gap8 {
    gap: 8px;
  }
}
.wpsecure__consult-button {
  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;
  max-width: 500px;
  width: 500px;
  height: 88px;
  font-size: 3rem;
  font-weight: 700;
  border-radius: 44px;
  margin-bottom: 9px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .wpsecure__consult-button {
    gap: 12px;
    max-width: 304px;
    width: 304px;
    height: 54px;
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.wpsecure__consult-button--chatwork {
  border: 3px solid #F03748;
  background-color: #fff;
  -webkit-box-shadow: 0px 9px 0px #F03748;
          box-shadow: 0px 9px 0px #F03748;
}
@media screen and (max-width: 767px) {
  .wpsecure__consult-button--chatwork {
    -webkit-box-shadow: 0px 6px 0px #F03748;
            box-shadow: 0px 6px 0px #F03748;
  }
}
.wpsecure__consult-button--chatwork img {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .wpsecure__consult-button--chatwork img {
    width: 25px;
    height: 25px;
  }
}
.wpsecure__consult-button--chatwork:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(9px);
          transform: translateY(9px);
}
@media screen and (max-width: 767px) {
  .wpsecure__consult-button--chatwork:hover {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}
.wpsecure__consult-button--email {
  color: #fff;
  background-color: #FF5F1A;
  border: 3px solid #472010;
  -webkit-box-shadow: 0px 9px 0px #472010;
          box-shadow: 0px 9px 0px #472010;
}
@media screen and (max-width: 767px) {
  .wpsecure__consult-button--email {
    -webkit-box-shadow: 0px 6px 0px #472010;
            box-shadow: 0px 6px 0px #472010;
  }
}
.wpsecure__consult-button--email img {
  width: 40px;
  height: 27.69px;
}
@media screen and (max-width: 767px) {
  .wpsecure__consult-button--email img {
    width: 24px;
    height: 16px;
  }
}
.wpsecure__consult-button--email:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(9px);
          transform: translateY(9px);
}
@media screen and (max-width: 767px) {
  .wpsecure__consult-button--email:hover {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}
.wpsecure__consult-button--chatwork-header, .wpsecure__consult-button--email-header {
  width: 230px;
  height: 60px;
  font-size: 1.6rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1367px) {
  .wpsecure__consult-button--chatwork-header, .wpsecure__consult-button--email-header {
    max-width: 304px;
    width: 304px;
    height: 54px;
  }
}
.wpsecure__consult-button--chatwork-header {
  border: 3px solid #F03748;
  background-color: #fff;
}
@media screen and (max-width: 1367px) {
  .wpsecure__consult-button--chatwork-header {
    -webkit-box-shadow: 0px 6px 0px #F03748;
            box-shadow: 0px 6px 0px #F03748;
    margin: 64px 0 6px;
  }
  .wpsecure__consult-button--chatwork-header:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}
.wpsecure__consult-button--chatwork-header img {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 1367px) {
  .wpsecure__consult-button--chatwork-header img {
    width: 25px;
    height: 25px;
  }
}
.wpsecure__consult-button--email-header {
  color: #fff;
  background-color: #FF5F1A;
  border: 3px solid #472010;
}
@media screen and (max-width: 1367px) {
  .wpsecure__consult-button--email-header {
    -webkit-box-shadow: 0px 6px 0px #472010;
            box-shadow: 0px 6px 0px #472010;
    margin-bottom: 56px;
  }
  .wpsecure__consult-button--email-header:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
}
.wpsecure__consult-button--email-header img {
  width: 30px;
  height: 21px;
}
@media screen and (max-width: 1367px) {
  .wpsecure__consult-button--email-header img {
    width: 24px;
    height: 16px;
  }
}
.wpsecure__section-title1 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wpsecure__section-title1 {
    font-size: 14px;
  }
}
.wpsecure__section-title1::before, .wpsecure__section-title1::after {
  position: absolute;
  left: -62px;
  content: url("./src/img/wpsecure/blue-line-3px.svg");
}
@media screen and (max-width: 767px) {
  .wpsecure__section-title1::before, .wpsecure__section-title1::after {
    left: -28px;
    content: url("./src/img/wpsecure/blue-line-sp.svg");
  }
}
.wpsecure__section-title1::after {
  right: -62px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .wpsecure__section-title1::after {
    right: -28px;
  }
}
.wpsecure__section-title1--fs36 {
  font-size: 3.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .wpsecure__section-title1--fs36 {
    font-size: 20px;
    letter-spacing: 0.03em;
  }
}
.wpsecure__section-title1--fs36::before, .wpsecure__section-title1--fs36::after {
  left: -56px;
  content: url("./src/img/wpsecure/blue-line-5px.svg");
}
@media screen and (max-width: 767px) {
  .wpsecure__section-title1--fs36::before, .wpsecure__section-title1--fs36::after {
    left: -28px;
    content: url("./src/img/wpsecure/blue-line-sp.svg");
  }
}
.wpsecure__section-title1--fs36::after {
  right: -56px;
}
@media screen and (max-width: 767px) {
  .wpsecure__section-title1--fs36::after {
    right: -28px;
  }
}
.wpsecure__section-title1--white-line {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 auto 40px auto;
}
@media screen and (max-width: 767px) {
  .wpsecure__section-title1--white-line {
    font-size: 19px;
    line-height: 1.5263157895em;
    letter-spacing: 0.03em;
    text-align: center;
  }
}
.wpsecure__section-title1--white-line::before, .wpsecure__section-title1--white-line::after {
  left: -66px;
  content: url("./src/img/wpsecure/white-line.svg");
}
@media screen and (max-width: 767px) {
  .wpsecure__section-title1--white-line::before, .wpsecure__section-title1--white-line::after {
    left: -34px;
    bottom: 0;
    content: url("./src/img/wpsecure/white-line-sp.svg");
  }
}
.wpsecure__section-title1--white-line::after {
  right: -66px;
}
@media screen and (max-width: 767px) {
  .wpsecure__section-title1--white-line::after {
    right: -270px;
  }
}
.wpsecure__section-title2 {
  text-align: center;
}
.wpsecure__section-title2 span.jp {
  display: block;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .wpsecure__section-title2 span.jp {
    font-size: 20px;
    letter-spacing: 0.03em;
    margin-bottom: 0;
  }
}
.wpsecure__section-title2 span.en {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #0A8BDE;
}
@media screen and (max-width: 767px) {
  .wpsecure__section-title2 span.en {
    font-size: 13px;
  }
}
.wpsecure__contact-us {
  background-color: #81CEFF;
  padding: 80px 0 96px;
}
@media screen and (max-width: 767px) {
  .wpsecure__contact-us {
    padding: 40px 0;
  }
}
.wpsecure__header {
  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;
  width: 100%;
  height: 80px;
  background-color: #fff;
  padding: 0 30px;
  z-index: 999;
}
@media screen and (max-width: 1367px) {
  .wpsecure__header {
    height: 50px;
    padding: 0 15px;
  }
}
.wpsecure__header-logo img {
  width: 267px;
  height: 50px;
}
@media screen and (max-width: 1367px) {
  .wpsecure__header-logo img {
    width: 160px;
    height: 30px;
  }
}
@media screen and (max-width: 1367px) {
  .wpsecure__nav-container {
    position: fixed;
    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
  }
  .wpsecure__nav-container.active {
    opacity: 1;
    pointer-events: visible;
  }
}
.wpsecure__header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 1600px) {
  .wpsecure__header-nav {
    gap: 20px;
  }
}
@media screen and (max-width: 1367px) {
  .wpsecure__header-nav {
    overflow-y: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 100%;
    height: 100vh;
    font-size: 20px;
    letter-spacing: 0.03em;
    background-color: #F6F8FA;
    padding: 40px 0 80px;
    -webkit-transition: display 0.3s ease-in-out;
    transition: display 0.3s ease-in-out;
  }
}
.wpsecure__nav-menu {
  cursor: pointer;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  width: 22px;
  height: 18px;
}
@media screen and (max-width: 1367px) {
  .wpsecure__nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.wpsecure__nav-menu.active .wpsecure__nav-line:nth-child(1) {
  -webkit-transform: rotate(40deg) translateX(1px) translateY(-1.5px);
          transform: rotate(40deg) translateX(1px) translateY(-1.5px);
}
.wpsecure__nav-menu.active .wpsecure__nav-line:nth-child(2) {
  opacity: 0;
}
.wpsecure__nav-menu.active .wpsecure__nav-line:nth-child(3) {
  -webkit-transform: rotate(-40deg) translateX(1px) translateY(1.5px);
          transform: rotate(-40deg) translateX(1px) translateY(1.5px);
}
.wpsecure__nav-line {
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #0A8BDE;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.wpsecure__nav-line:first-child {
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.wpsecure__nav-line:last-child {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.wpsecure__nav-line.active {
  width: 27px;
}
.wpsecure__footer {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding: 80px 0 80px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wpsecure__footer {
    gap: 20px;
    padding: 0;
  }
}
.wpsecure__footer-logo img {
  width: 267px;
  height: 50px;
}
.wpsecure__footer-nav {
  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;
  height: 25px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wpsecure__footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    height: auto;
    font-size: 14px;
  }
}
.wpsecure__footer-nav li:not(:last-child) {
  border-right: 1px solid #707070;
  padding-right: 35px;
}
@media screen and (max-width: 767px) {
  .wpsecure__footer-nav li:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
}
.wpsecure__footer-nav li:not(:first-child) {
  padding-left: 35px;
}
@media screen and (max-width: 767px) {
  .wpsecure__footer-nav li:not(:first-child) {
    padding-left: 0;
  }
}
.wpsecure__footer-copyright {
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wpsecure__footer-copyright {
    padding: 12px 0;
  }
}
.wpsecure__section-content {
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .wpsecure__section-content {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1024px) {
  .wpsecure__section-content {
    max-width: 850px;
  }
}
@media screen and (max-width: 767px) {
  .wpsecure__section-content {
    padding: 0 4%;
  }
}
.wpsecure__mv {
  height: 100vh;
  background-color: #E0F3FF;
  margin-top: -80px;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv {
    margin-top: -50px;
    padding: 58px 0 12px;
  }
}
.wpsecure__mv .wpsecure__section-content {
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}
@media screen and (max-width: 767px) {
  .wpsecure__mv .wpsecure__section-content {
    -webkit-transform: unset;
            transform: unset;
  }
}
.wpsecure__mv .wpsecure__consult-container {
  margin-top: -97px;
}
@media screen and (max-width: 1367px) {
  .wpsecure__mv .wpsecure__consult-container {
    margin-top: -32px;
  }
}
@media screen and (max-width: 767px) {
  .wpsecure__mv .wpsecure__consult-container {
    gap: 8px;
    margin-top: -40px;
  }
}
.wpsecure__mv-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1367px) {
  .wpsecure__mv-content {
    -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;
  }
}
.wpsecure__mv-title-container {
  position: relative;
  width: 800px;
  height: 800px;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-title-container {
    width: 300px;
    height: 300px;
  }
}
.wpsecure__mv-title-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
}
.wpsecure__mv-title-container::after {
  content: "";
  position: absolute;
  bottom: 206px;
  left: -141px;
  width: 227px;
  height: 154px;
  background-image: url("./src/img/wpsecure/mv-laptop.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-title-container::after {
    bottom: 181px;
    left: -23px;
    width: 71px;
    height: 48px;
  }
}
.wpsecure__mv-ribbon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 629px;
  height: 140px;
  background-image: url("./src/img/wpsecure/mv-ribbon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-ribbon {
    width: 244px;
    height: 54px;
    background-image: url("./src/img/wpsecure/mv-ribbon-sp.svg");
    margin-left: -23px;
  }
}
.wpsecure__mv-ribbon-text {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4375em;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-ribbon-text {
    font-size: 12px;
    line-height: 1.4166666667em;
    padding: 0 8px;
  }
}
.wpsecure__mv-ribbon-text.white {
  font-size: 2.4rem;
  text-align: center;
  padding: 0 34px;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-ribbon-text.white {
    font-size: 9px;
    padding: 13px;
  }
}
.wpsecure__mv-title {
  position: relative;
  z-index: 99;
  line-height: 1;
  text-align: center;
  margin-top: 164px;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-title {
    margin-top: 58px;
  }
}
.wpsecure__mv-title span.fs80 {
  font-size: 8rem;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-title span.fs80 {
    font-size: 36px;
  }
}
.wpsecure__mv-title span.fs256 {
  font-size: 25.6rem;
  font-family: "Jost", sans-serif;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-title span.fs256 {
    font-size: 100px;
  }
}
.wpsecure__mv-title span.fs80-black {
  font-size: 8rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-title span.fs80-black {
    font-size: 36px;
  }
}
.wpsecure__mv-title span.fs32 {
  display: block;
  position: relative;
  left: 548px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.2rem;
  margin: 30px 0 7px;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-title span.fs32 {
    left: 225px;
    font-size: 13px;
    margin: 9px 0 0;
  }
}
.wpsecure__mv-title span.fs100 {
  display: inline-block;
  font-size: 10rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-title span.fs100 {
    font-size: 36px;
    margin-bottom: 4px;
  }
}
.wpsecure__mv-title span.fs50 {
  display: inline;
  font-size: 5rem;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-title span.fs50 {
    font-size: 13px;
  }
}
.wpsecure__mv-title span.fs72 {
  font-size: 7.2rem;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-title span.fs72 {
    font-size: 26px;
  }
}
.wpsecure__mv-title::before {
  content: "";
  position: absolute;
  top: -170px;
  left: 330px;
  width: 120px;
  height: 50px;
  background-image: url("./src/img/wpsecure/mv-one-highlight.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-title::before {
    top: -63px;
    left: 117px;
    width: 51px;
    height: 22px;
  }
}
.wpsecure__mv-title::after {
  content: "";
  position: absolute;
  top: 63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 561px;
  height: 47px;
  background-color: #0A8BDE;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-title::after {
    top: 24px;
    width: 255px;
    height: 20px;
  }
}
.wpsecure__mv-service-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: absolute;
  top: 172px;
  right: 0;
  width: 482px;
  height: 482px;
}
@media screen and (max-width: 1367px) {
  .wpsecure__mv-service-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    top: -82px;
    left: 0;
    right: unset;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-service-container {
    grid-template-columns: 1fr;
    gap: 6px;
    top: -50px;
    width: 345px;
    height: auto;
  }
}
.wpsecure__mv-service-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 236px;
  height: 236px;
  border-radius: 50%;
  border: 3px solid #060C1C;
  background-color: #fff;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-service-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: 2px solid #060C1C;
  }
}
.wpsecure__mv-service-item span.black {
  font-size: 2.5rem;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-service-item span.black {
    font-size: 20px;
  }
}
.wpsecure__mv-service-item span.fs59 {
  font-size: 5.9rem;
  color: #0A8BDE;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-service-item span.fs59 {
    font-size: 28px;
  }
}
.wpsecure__mv-service-item span.fs33 {
  font-size: 3.3rem;
  color: #0A8BDE;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-service-item span.fs33 {
    font-size: 28px;
  }
}
.wpsecure__mv-service-item span.fs67 {
  font-size: 6.7rem;
  color: #0A8BDE;
}
@media screen and (max-width: 767px) {
  .wpsecure__mv-service-item span.fs67 {
    font-size: 28px;
  }
}
.wpsecure__problems {
  background-color: #EBF0F1;
  padding: 80px 0 108px;
}
@media screen and (max-width: 767px) {
  .wpsecure__problems {
    padding: 40px 0;
  }
}
.wpsecure__problems-title {
  font-size: 3.6rem;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 40px 0 35px;
}
@media screen and (max-width: 767px) {
  .wpsecure__problems-title {
    font-size: 20px;
    margin: 12px 0 25px;
  }
}
.wpsecure__problems-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .wpsecure__problems-container {
    gap: 20px 25px;
  }
}
.wpsecure__problems-item {
  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: 50px;
}
@media screen and (max-width: 767px) {
  .wpsecure__problems-item {
    gap: 28px;
  }
}
.wpsecure__problems-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5em;
  width: 250px;
  height: 160px;
  border-radius: 10px;
  padding: 0 21px;
}
@media screen and (max-width: 767px) {
  .wpsecure__problems-text {
    font-size: 13px;
    line-height: 1.7692307692em;
    width: 160px;
    height: 131px;
    padding: 0 12px;
  }
}
.wpsecure__problems-text::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 34px;
  height: 30px;
  background-image: url("./src/img/wpsecure/bubble-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .wpsecure__problems-text::after {
    bottom: -18px;
    width: 20px;
    height: 18px;
  }
}
.wpsecure__problems-image {
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .wpsecure__problems-image {
    width: 160px;
    height: 160px;
  }
}
.wpsecure__maintenance {
  position: relative;
  background-color: #C5D0D2;
  padding: 115px 0 80px;
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance {
    padding: 40px 0;
  }
}
.wpsecure__maintenance::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 22px;
  background-image: url("./src/img/wpsecure/wave.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance::before {
    height: 5px;
    background-image: url("./src/img/wpsecure/wave-sp.svg");
    background-repeat: repeat;
  }
}
.wpsecure__maintenance::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background-color: #C5D0D2;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance::after {
    width: 100%;
  }
}
.wpsecure__maintenance-title-container {
  gap: 55px;
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance-title-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 100px;
  }
}
.wpsecure__maintenance-title-container img {
  width: 120px;
  height: 137px;
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance-title-container img {
    width: 60px;
    height: 68px;
  }
}
.wpsecure__maintenance-title {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.6666666667em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance-title {
    font-size: 20px;
    line-height: 1.5em;
    text-align: center;
    text-wrap: nowrap;
  }
}
.wpsecure__maintenance-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance-container {
    grid-template-columns: repeat(4, 320px);
    gap: 12px;
  }
}
.wpsecure__maintenance-item {
  position: relative;
  width: 560px;
  min-height: 320px;
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 30px 30px;
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance-item {
    z-index: 1;
    width: 320px;
    min-height: 424px;
    padding: 44px 15px 68px;
  }
}
.wpsecure__maintenance-item-icon {
  position: absolute;
  top: -40px;
  left: -40px;
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance-item-icon {
    top: -60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
  }
}
.wpsecure__maintenance-item-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance-item-title {
    line-height: 1.4583333333em;
    margin-bottom: 12px;
  }
}
.wpsecure__maintenance-item-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance-item-text {
    font-size: 13px;
    line-height: 1.7692307692em;
  }
}
.wpsecure__maintenance-text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 40px 0 44px;
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance-text {
    font-size: 20px;
    line-height: 1.5em;
    margin: 40px 0;
  }
}
.wpsecure__maintenance-image {
  display: block;
  width: 554px;
  height: 220px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wpsecure__maintenance-image {
    width: 344px;
    height: 137px;
  }
}
.wpsecure__features {
  background-color: #F6F8FA;
  padding: 100px 0 80px;
}
@media screen and (max-width: 767px) {
  .wpsecure__features {
    padding: 60px 0 40px;
  }
}
.wpsecure__features-solution {
  gap: 10px;
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-solution {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    position: relative;
    margin-bottom: 40px;
  }
}
.wpsecure__features-solution-text {
  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;
  font-size: 4rem;
  width: 508px;
  height: 371px;
  background-image: url("./src/img/wpsecure/solution02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 108px;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-solution-text {
    width: 375px;
    height: 273px;
    font-size: 24px;
    background-image: url("./src/img/wpsecure/solution02-sp.svg");
    margin-top: 142px;
    padding-bottom: 59px;
  }
}
.wpsecure__features-solution-image {
  width: 239px;
  height: 302px;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-solution-image {
    position: absolute;
    top: 30px;
    width: 156px;
    height: 198px;
  }
}
.wpsecure__features-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 106px 80px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-container {
    gap: 73px;
    margin-top: 74px;
  }
}
.wpsecure__features-item {
  position: relative;
  width: 560px;
  height: 664px;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-item {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
}
.wpsecure__features-number {
  position: absolute;
  top: -56px;
  left: 10px;
  font-size: 10rem;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.03em;
  -webkit-text-stroke: 2px #060C1C; /* For Safari/Chrome */
  text-stroke: 2px #060C1C;
  color: #0A8BDE;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-number {
    top: -29px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 50px;
  }
}
.wpsecure__features-image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 336px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-image-container {
    height: 215px;
  }
}
.wpsecure__features-image01, .wpsecure__features-image02, .wpsecure__features-image03, .wpsecure__features-image04 {
  display: block;
  margin: 0 auto;
}
.wpsecure__features-image01 {
  width: 296px;
  height: 250px;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-image01 {
    width: 177px;
    height: 150px;
  }
}
.wpsecure__features-image02 {
  width: 412px;
  height: 267px;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-image02 {
    width: 231px;
    height: 150px;
  }
}
.wpsecure__features-image03 {
  width: 412px;
  height: 239px;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-image03 {
    width: 258px;
    height: 150px;
  }
}
.wpsecure__features-image04 {
  width: 327px;
  height: 271px;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-image04 {
    width: 180px;
    height: 150px;
  }
}
.wpsecure__features-text-container {
  position: absolute;
  bottom: 0;
  height: 328px;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-text-container {
    position: unset;
    height: auto;
    padding: 0 23px 40px;
  }
}
.wpsecure__features-title {
  font-size: 3.6rem;
  line-height: 1.3333333333em;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .wpsecure__features-title {
    font-size: 24px;
    line-height: 1.4583333333em;
    text-align: center;
    margin-bottom: 12px;
  }
}
.wpsecure__features-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.05em;
}
.wpsecure__service {
  background-color: #E0F3FF;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .wpsecure__service {
    padding: 40px 0;
  }
}
.wpsecure__service-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .wpsecure__service-container {
    gap: 9px;
    margin-top: 20px;
  }
}
.wpsecure__service-item {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 285px;
  height: 447px;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .wpsecure__service-item {
    gap: 10px;
    width: 168px;
    height: 293px;
    padding: 8px 14px 10px;
  }
}
.wpsecure__service-image {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .wpsecure__service-image {
    width: 56px;
    height: 56px;
    margin-bottom: -6px;
  }
}
.wpsecure__service-title {
  font-size: 2rem;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .wpsecure__service-title {
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
  }
}
.wpsecure__service-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .wpsecure__service-text {
    font-size: 12px;
    line-height: 1.6666666667em;
  }
}
.wpsecure__plan {
  background-color: #F6F8FA;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .wpsecure__plan {
    padding: 40px 0;
  }
}
.wpsecure__plan-desc {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .wpsecure__plan-desc {
    font-size: 14px;
    line-height: 1.4285714286em;
    margin: 20px 0;
  }
}
.wpsecure__plan-table {
  width: 100%;
  border-collapse: collapse;
}
.wpsecure__plan-table th,
.wpsecure__plan-table td {
  width: 25%;
}
.wpsecure__table-head .wpsecure__head-text:nth-child(2) {
  border-top-left-radius: 10px;
  background-color: #0A8BDE;
}
.wpsecure__table-head .wpsecure__head-text:nth-child(3) {
  background-color: #046AAB;
}
.wpsecure__table-head .wpsecure__head-text:nth-child(4) {
  border-top-right-radius: 10px;
  background-color: #0A8BDE;
}
.wpsecure__head-text {
  height: 170px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wpsecure__head-text {
    width: 100%;
    height: 97px;
    padding: 12px 0;
  }
}
.wpsecure__head-text span {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .wpsecure__head-text span {
    font-size: 20px;
    font-weight: 700;
  }
}
.wpsecure__head-text p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.625em;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .wpsecure__head-text p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4285714286em;
    margin-top: 4px;
  }
}
.wpsecure__table-body {
  border: 1px solid #cccccc;
}
.wpsecure__table-row {
  height: 80px;
}
.wpsecure__table-row td {
  text-align: center;
}
.wpsecure__table-row td:not(:nth-child(3)) {
  background-color: #fff;
}
.wpsecure__table-row td .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #060C1C;
  margin: 0 auto;
}
.wpsecure__table-row:not(:last-child) {
  border-bottom: 1px solid #cccccc;
}
.wpsecure__head-row {
  font-size: 1.8rem;
  line-height: 1.4444444444em;
  background-color: #E0F3FF;
}
@media screen and (max-width: 767px) {
  .wpsecure__head-row {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4285714286em;
    background-color: #fff;
  }
}
.wpsecure__column-merged {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .wpsecure__column-merged {
    background-color: #E0F3FF;
    line-height: 1.4285714286em;
    text-align: center;
    padding: 20px 0;
  }
}
.wpsecure__column-merged span.fs28 {
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .wpsecure__column-merged span.fs28 {
    line-height: 2;
  }
}
.wpsecure__column-merged span.fs16 {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wpsecure__column-merged span.fs16 {
    line-height: 1;
  }
}
.wpsecure__column-cost {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0A8BDE;
}
.wpsecure__column-cost span {
  font-size: 1.6rem;
  font-weight: 500;
}
.wpsecure__plan-note {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #F03748;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .wpsecure__plan-note {
    font-size: 12px;
    line-height: 1.6666666667em;
    margin-top: 12px;
  }
}
.wpsecure__plan-container {
  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;
}
.wpsecure__plan-item:nth-child(1) .wpsecure__head-text, .wpsecure__plan-item:nth-child(3) .wpsecure__head-text {
  border-radius: 10px 10px 0 0;
  background-color: #0A8BDE;
}
.wpsecure__plan-item:nth-child(2) .wpsecure__head-text {
  border-radius: 10px 10px 0 0;
  background-color: #046AAB;
}
.wpsecure__monthly-cost {
  background-color: #fff;
  border-bottom: 1px solid #cccccc;
  text-align: center;
  padding: 12px 0;
}
.wpsecure__plan-others {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-bottom: 1px solid #cccccc;
  padding: 20px 0;
}
.wpsecure__plan-others .wpsecure__head-row::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #0A8BDE;
  margin-right: 4px;
}
.wpsecure__others-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.wpsecure__reason {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason {
    padding: 40px 0;
  }
}
.wpsecure__reason-text-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-align: center;
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-text-container {
    gap: 24px;
    margin: 20px 0;
  }
}
.wpsecure__reason-text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.6666666667em;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-text {
    font-size: 14px;
    line-height: 2.1428571429em;
  }
}
.wpsecure__reason-text span.blue,
.wpsecure__reason-text span.highlight-full {
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-text span.blue,
  .wpsecure__reason-text span.highlight-full {
    font-size: 20px;
  }
}
.wpsecure__reason-diagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .wpsecure__reason-diagram {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wpsecure__reason-customer {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid #B2B2B2;
  font-size: 1.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-customer {
    gap: 4px;
    width: 160px;
    height: 160px;
    font-size: 14px;
  }
}
.wpsecure__reason-customer img {
  width: 109px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-customer img {
    width: 90px;
    height: 100px;
  }
}
.wpsecure__reason-details {
  position: relative;
  width: 158px;
  height: 200px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4em;
  text-align: center;
  color: #0A8BDE;
  margin-right: 11px;
}
@media screen and (max-width: 1024px) {
  .wpsecure__reason-details {
    width: 100%;
    height: 95px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4285714286em;
    margin: 12px 0;
    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;
  }
}
.wpsecure__reason-details::after {
  content: url("./src/img/wpsecure/arrow-left-right.svg");
  position: absolute;
  bottom: 98px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 67px;
  height: 15px;
}
@media screen and (max-width: 1024px) {
  .wpsecure__reason-details::before, .wpsecure__reason-details::after {
    content: url("./src/img/wpsecure/arrow-black.svg");
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 14px;
    height: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .wpsecure__reason-details::after {
    top: unset;
    bottom: 0;
    -webkit-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
  }
}
.wpsecure__reason-diagram-container {
  position: relative;
  background-color: #E0F3FF;
  border-radius: 10px;
  border: 2px solid #060C1C;
  padding: 70px 20px 30px;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-diagram-container {
    width: 100%;
    padding: 72px 0 20px;
  }
}
.wpsecure__reason-diagram-head {
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  background-color: #0A8BDE;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 60px;
  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;
}
.wpsecure__reason-diagram-head img {
  width: 197px;
  height: 36px;
}
.wpsecure__reason-diagram-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-diagram-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.wpsecure__reason-diagram-japan, .wpsecure__reason-diagram-philippines {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  text-align: center;
  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;
}
.wpsecure__reason-diagram-japan p.blue, .wpsecure__reason-diagram-philippines p.blue {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.wpsecure__reason-diagram-philippines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-diagram-philippines {
    gap: 8px;
  }
}
.wpsecure__reason-philippines-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-philippines-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 44px;
  }
}
.wpsecure__reason-philippines-container::after {
  content: url("./src/img/wpsecure/arrow-black-right.svg");
  position: absolute;
  top: 48px;
  left: 112px;
  width: 57px;
  height: 15px;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-philippines-container::after {
    content: url("./src/img/wpsecure/arrow-black-down.svg");
    top: 113px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 14px;
    height: 20px;
  }
}
.wpsecure__reason-image-text {
  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: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-image-text {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
.wpsecure__reason-diagram-image02 {
  width: 91px;
  height: 115px;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-diagram-image02 {
    width: 79px;
    height: 100px;
  }
}
.wpsecure__reason-diagram-image03 {
  width: 105px;
  height: 115px;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-diagram-image03 {
    width: 91px;
    height: 100px;
  }
}
.wpsecure__reason-diagram-image04 {
  width: 163px;
  height: 118px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-diagram-image04 {
    width: 138px;
    height: 100px;
    margin-bottom: 0;
  }
}
.wpsecure__reason-diagram-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-diagram-text {
    font-size: 14px;
    line-height: 1.4285714286em;
  }
}
.wpsecure__reason-diagram-allignment {
  width: 122px;
  height: 66px;
  color: #fff;
  background-image: url("./src/img/wpsecure/arrow-blue-left-right.svg");
  background-repeat: no-repeat;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wpsecure__reason-diagram-allignment {
    width: 72px;
    height: 105px;
    background-image: url("./src/img/wpsecure/arrow-blue-sp.svg");
  }
}
.wpsecure__flow {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .wpsecure__flow {
    padding: 40px 0;
  }
}
.wpsecure__flow-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .wpsecure__flow-container {
    -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: 52px;
    margin-top: 23px;
  }
}
.wpsecure__flow-item {
  position: relative;
  width: 250px;
}
.wpsecure__flow-item:not(:last-child)::after {
  content: url("./src/img/wpsecure/arrow-blue-right.svg");
  position: absolute;
  top: 87px;
  right: -33px;
  width: 16px;
  height: 27px;
}
@media screen and (max-width: 767px) {
  .wpsecure__flow-item:not(:last-child)::after {
    content: url("./src/img/wpsecure/arrow-blue-down.svg");
    top: unset;
    bottom: -32px;
    left: 50%;
    right: unset;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 20px;
    height: 12px;
  }
}
.wpsecure__flow-number {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #0A8BDE;
}
@media screen and (max-width: 767px) {
  .wpsecure__flow-number {
    left: 11px;
    font-size: 24px;
  }
}
.wpsecure__flow-image {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wpsecure__flow-image {
    width: 160px;
    height: 160px;
  }
}
.wpsecure__flow-title {
  font-size: 2rem;
  text-align: center;
  margin: 30px 0 20px;
}
@media screen and (max-width: 767px) {
  .wpsecure__flow-title {
    margin: 20px 0 12px;
  }
}
.wpsecure__flow-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6625em;
}
@media screen and (max-width: 767px) {
  .wpsecure__flow-text {
    font-size: 14px;
    line-height: 1.4285714286em;
  }
}
.wpsecure__faq {
  background-color: #F6F8FA;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .wpsecure__faq {
    padding: 40px 0;
  }
}
.wpsecure__faq-container {
  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: 60px;
}
@media screen and (max-width: 767px) {
  .wpsecure__faq-container {
    margin-top: 20px;
  }
}
.wpsecure__faq-item {
  cursor: pointer;
}
.wpsecure__faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: relative;
  height: 110px;
  border-radius: 20px;
  background-color: #fff;
  padding: 0 45px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .wpsecure__faq-question {
    gap: 12px;
    height: 100px;
    border-radius: 10px;
    padding: 0 20px;
  }
}
.wpsecure__faq-question::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 45px;
  width: 25px;
  height: 25px;
  background-image: url("./src/img/wpsecure/plus.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .wpsecure__faq-question::after {
    right: 20px;
    width: 14px;
    height: 14px;
    background-image: url("./src/img/wpsecure/plus-sp.svg");
  }
}
.wpsecure__faq-question.active {
  height: 115px;
  border-radius: 20px 20px 0 0;
  background-color: #0A8BDE;
}
@media screen and (max-width: 767px) {
  .wpsecure__faq-question.active {
    height: 100px;
    border-radius: 10px 10px 0 0;
  }
}
.wpsecure__faq-question.active .wpsecure__question-icon {
  background-color: #fff;
  color: #0A8BDE;
}
.wpsecure__faq-question.active .wpsecure__faq-text {
  color: #fff;
}
.wpsecure__faq-question.active::after {
  width: 25px;
  height: 3px;
  background-image: url("./src/img/wpsecure/minus.svg");
}
@media screen and (max-width: 767px) {
  .wpsecure__faq-question.active::after {
    width: 14px;
    height: 3px;
    background-image: url("./src/img/wpsecure/minus-sp.svg");
  }
}
.wpsecure__question-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0A8BDE;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wpsecure__question-icon {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 1.7;
  }
}
.wpsecure__faq-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.88em;
}
@media screen and (max-width: 767px) {
  .wpsecure__faq-text {
    font-size: 14px;
    line-height: 1.4285714286em;
    margin-right: 26px;
  }
}
.wpsecure__faq-text.ml {
  margin: 0 0 0 90px;
}
@media screen and (max-width: 767px) {
  .wpsecure__faq-text.ml {
    margin: 0 0 0 52px;
  }
}
.wpsecure__faq-text span.blue {
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .wpsecure__faq-text span.blue {
    font-size: 14px;
  }
}
.wpsecure__faq-answer {
  overflow: hidden;
  height: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #fff;
  padding: 0 45px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .wpsecure__faq-answer {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
.wpsecure__faq-answer.active {
  height: auto;
  padding: 44px 45px 42px;
}
@media screen and (max-width: 767px) {
  .wpsecure__faq-answer.active {
    padding: 20px 46px 20px 20px;
  }
}
.wpsecure__answer-icon {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #0A8BDE;
  background-color: #fff;
  color: #0A8BDE;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  float: left;
}
@media screen and (max-width: 767px) {
  .wpsecure__answer-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 1.7;
    margin-right: 12px;
  }
}
.wpsecure__company {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .wpsecure__company {
    padding: 40px 0;
  }
}
.wpsecure__company-main {
  margin: 40px 0;
}
.wpsecure__company-main img {
  width: 158.27px;
  height: 37.21px;
}
@media screen and (max-width: 767px) {
  .wpsecure__company-main img {
    width: 153px;
    height: 36px;
  }
}
.wpsecure__company-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .wpsecure__company-title {
    gap: 12px;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
  }
}
.wpsecure__company-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #C6C6C6;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .wpsecure__company-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 12px 0;
  }
}
.wpsecure__company-item--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .wpsecure__company-item--column {
    gap: 8px;
  }
}
.wpsecure__company-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .wpsecure__company-text-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wpsecure__company-detail {
  width: 266px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .wpsecure__company-detail {
    width: 100%;
    font-size: 16px;
  }
}
.wpsecure__company-text {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .wpsecure__company-text {
    font-size: 16px;
    line-height: unset;
    margin-top: 8px;
  }
}
.wpsecure__company-map iframe {
  width: 100%;
  height: 319px;
}
@media screen and (max-width: 767px) {
  .wpsecure__company-map iframe {
    height: 235px;
  }
}
.wpsecure__company-subsidiary img {
  width: 223px;
  height: 36px;
}
.wpsecure__company-subsidiary .wpsecure__company-title {
  gap: 23px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .wpsecure__company-subsidiary .wpsecure__company-title {
    gap: 12px;
    margin-bottom: 0;
  }
}
.wpsecure__splide-track {
  overflow: visible;
}
.wpsecure__splide-arrows .splide__arrow {
  background-color: transparent;
}
.wpsecure__splide-arrows .splide__arrow--prev {
  left: -16px;
}
.wpsecure__splide-arrows .splide__arrow--prev img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.wpsecure__splide-arrows .splide__arrow--next {
  right: -16px;
}

/* New POPUP Banner */
.popupBanner {
  bottom: -20px;
  margin: 0 20px;
  position: fixed;
  right: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 9999;
}
.popupBanner.is-show {
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: bottom 700ms ease, -webkit-transform 700ms ease;
  transition: bottom 700ms ease, -webkit-transform 700ms ease;
  transition: bottom 700ms ease, transform 700ms ease;
  transition: bottom 700ms ease, transform 700ms ease, -webkit-transform 700ms ease;
}
.popupBanner .inner {
  margin: 0 auto;
  max-width: 300px;
  position: relative;
}
.popupBanner img {
  display: block;
  max-width: 100%;
}
.popupBanner .close {
  cursor: pointer;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 30px;
}

@media screen and (max-width: 1010px) {
  .popupBanner {
    bottom: -20px;
    left: 0;
    margin: 0 18px;
    right: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  .popupBanner .close {
    opacity: 0;
  }
  .popupBanner.is-show .close {
    opacity: 1;
  }
}
@media screen and (max-width: 678px) {
  .popupBanner .close {
    height: 25px;
    width: 25px;
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }
}
.contact-wpsecure {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  max-width: 900px;
  padding: 100px 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact-wpsecure {
    padding: 100px 4%;
  }
}
.contact-wpsecure__message {
  font-size: 1.8rem;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .contact-wpsecure__message {
    font-size: 16px;
    margin-bottom: 50px;
  }
}
.contact-wpsecure__item-container {
  border-bottom: 4px solid #EDEDED;
}
.contact-wpsecure__item, .contact-wpsecure__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 4px solid #EDEDED;
}
@media screen and (max-width: 767px) {
  .contact-wpsecure__item, .contact-wpsecure__privacy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .contact-wpsecure__privacy .contact-wpsecure__input-wrap {
    padding: 32px 0 56px;
  }
}
.contact-wpsecure__label-wrap {
  width: 30%;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .contact-wpsecure__label-wrap {
    width: 100%;
    padding: 32px 0 0;
  }
}
.contact-wpsecure__required {
  color: #F03748;
}
.contact-wpsecure__input-wrap {
  width: 70%;
  font-size: 1.6rem;
  padding: 32px 0 32px 32px;
}
@media screen and (max-width: 767px) {
  .contact-wpsecure__input-wrap {
    width: 100%;
    padding: 32px 0;
  }
}
.contact-wpsecure__input {
  width: 100%;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  vertical-align: middle;
  padding: 16px;
}
.contact-wpsecure__checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
}
.contact-wpsecure__checkbox input[type=checkbox] {
  margin: 3px 3px 3px 4px;
}
.contact-wpsecure__checkbox a {
  text-decoration: underline;
}
.contact-wpsecure__checkbox span.error {
  position: absolute;
  bottom: -24px;
}
.contact-wpsecure__button-wrap {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .contact-wpsecure__button-wrap {
    margin-top: 50px;
  }
}
.contact-wpsecure__button {
  border: 3px solid #FF5F1A;
  border-radius: 40px;
  background-color: #fff;
  color: #FF5F1A;
  font-size: 2rem;
  font-weight: 700;
  padding: 22px 86px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-wpsecure__button:hover {
  cursor: pointer;
  background-color: #FF5F1A;
  color: #fff;
}
.contact-wpsecure__confirm {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .contact-wpsecure__confirm {
    font-size: 16px;
  }
}
.contact-wpsecure__confirm span.bold {
  font-weight: 700;
}

.confirm .contact-wpsecure__input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.confirm .contact-wpsecure__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .confirm .contact-wpsecure__button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}
.confirm .contact-wpsecure__privacy {
  display: none;
}
.confirm .contact-wpsecure__button--return {
  border: 3px solid #0A8BDE;
  color: #0A8BDE;
}
.confirm .contact-wpsecure__button--return:hover {
  background-color: #0A8BDE;
  color: #fff;
}
.confirm .contact-wpsecure__button--send {
  border: 3px solid #FF5F1A;
  background-color: #FF5F1A;
  color: #fff;
}
.confirm .contact-wpsecure__button--send:hover {
  background-color: #fff;
  color: #FF5F1A;
}

.complete .contact-wpsecure__button {
  display: inline-block;
}

.logo-hearing__form-container {
  padding: 80px 100px 140px;
}

@media screen and (max-width: 1280px) {
  .logo-hearing__form-container {
    padding: 50px 60px 100px;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__form-container {
    margin: 0 0 60px;
    padding: 35px 20px;
  }
}
@media screen and (max-width: 1280px) {
  .logo-hearing__form .form__item {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__form .form__item {
    gap: 20px;
  }
}
.logo-hearing__form .form__input-wrap {
  width: 80% !important;
}

@media screen and (max-width: 1280px) {
  .logo-hearing__form .form__input-wrap {
    width: 100% !important;
  }
}
.logo-hearing__header {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .logo-hearing__header {
    margin-bottom: 40px;
  }
}
.logo-hearing__message {
  margin-bottom: 25px;
}

@media screen and (max-width: 1440px) {
  .logo-hearing__message {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__message {
    text-align: left;
  }
}
.logo-hearing__message .gray {
  color: #727278;
  font-size: 1.4rem;
  line-height: 2em;
}

.logo-hearing__item--no-mb {
  margin-bottom: 0 !important;
}

.logo-hearing__label-wrap {
  min-width: 260px;
  max-width: 260px;
}

@media screen and (max-width: 1280px) {
  .logo-hearing__label-wrap {
    min-width: unset;
    max-width: unset;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__label-wrap {
    gap: 20px;
    margin-bottom: 0;
  }
}
.logo-hearing__label-wrap .form__label-req {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.logo-hearing__input-wrap {
  padding-left: 25px !important;
}

@media screen and (max-width: 1280px) {
  .logo-hearing__input-wrap {
    padding-left: 0 !important;
  }
}
.logo-hearing__input-wrap--no-mb .mwform-radio-field:last-child label {
  margin-bottom: 0;
}

.logo-hearing__input {
  height: 99px;
}

.logo-hearing__checkbox-wrap, .logo-hearing__textarea-wrap {
  width: 1200px;
  margin-left: -285px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1600px) {
  .logo-hearing__checkbox-wrap, .logo-hearing__textarea-wrap {
    width: 1100px;
  }
}
@media screen and (max-width: 1440px) {
  .logo-hearing__checkbox-wrap, .logo-hearing__textarea-wrap {
    width: 138.6%;
  }
}
@media screen and (max-width: 1280px) {
  .logo-hearing__checkbox-wrap, .logo-hearing__textarea-wrap {
    width: 100%;
    margin-left: 0;
  }
}
.logo-hearing__logo-sample {
  width: 150px;
  height: 150px;
}

@media screen and (max-width: 1440px) {
  .logo-hearing__logo-sample {
    width: 125px;
    height: 125px;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__logo-sample {
    width: 100px;
    height: 100px;
  }
}
.logo-hearing__palette-sample {
  width: 172px;
  height: 86px;
}

@media screen and (max-width: 767px) {
  .logo-hearing__palette-sample {
    width: 120px;
    height: 50px;
  }
}
.logo-hearing__font-sample {
  height: 22px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 275px;
}

@media screen and (max-width: 1280px) {
  .logo-hearing__font-sample {
    max-width: 225px;
  }
}
@media screen and (max-width: 1024px) {
  .logo-hearing__font-sample {
    height: auto;
    max-width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__font-sample {
    max-width: 80%;
  }
}
.logo-hearing__palette-note {
  color: #727278;
  font: 500 1.4rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .logo-hearing__palette-note {
    font-size: 12px;
    text-align: center;
  }
}
.logo-hearing__palette-note--active {
  font-weight: 700;
  color: #00000b;
}

.logo-hearing__textarea-wrap {
  height: 108px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .logo-hearing__textarea-wrap {
    margin-bottom: 30px;
  }
}
.logo-hearing__textarea-wrap textarea {
  height: 100%;
}

.logo-hearing__font-other {
  position: relative;
  max-width: 260px !important;
  border: none !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  padding-left: 0 !important;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 29px !important;
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  .logo-hearing__font-other {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__font-other {
    gap: 20px;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
}
.logo-hearing__font-other::before {
  content: "";
  width: 1px;
  height: 105px;
  background-color: #fff;
  position: absolute;
  left: -1px;
  top: -40px;
}

@media screen and (max-width: 1024px) {
  .logo-hearing__font-other::before {
    top: -30px;
  }
}
.logo-hearing__font-other .form__label-req {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .logo-hearing__font-other {
    height: 21.8px !important;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__font-other label {
    margin-bottom: 0 !important;
  }
}
.logo-hearing__checkbox-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 0.5px solid #727278;
  border-left: 0.5px solid #727278;
}

.logo-hearing__checkbox-wrap .mwform-checkbox-field {
  gap: 26px;
  height: 257px;
}

@media screen and (max-width: 1440px) {
  .logo-hearing__checkbox-wrap .mwform-checkbox-field {
    height: 235px;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__checkbox-wrap .mwform-checkbox-field {
    gap: 15px;
    height: 185px;
  }
}
.logo-hearing__checkbox-wrap--palette .mwform-checkbox-field {
  padding-left: 30px !important;
}

@media screen and (max-width: 1440px) {
  .logo-hearing__checkbox-wrap--palette .mwform-checkbox-field {
    padding-left: 0px !important;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__checkbox-wrap--palette .mwform-checkbox-field {
    padding: 0 10px !important;
  }
}
.logo-hearing__checkbox-wrap--taste {
  border: 0;
  row-gap: 30px;
}

@media screen and (max-width: 767px) {
  .logo-hearing__checkbox-wrap--taste {
    gap: 15px 25px;
  }
}
.logo-hearing__checkbox-wrap--taste .mwform-checkbox-field {
  height: 25px;
  width: 16.6% !important;
  max-width: 200px !important;
  padding: 0 !important;
  border: none !important;
}

@media screen and (max-width: 1440px) {
  .logo-hearing__checkbox-wrap--taste .mwform-checkbox-field {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
}
@media screen and (max-width: 1280px) {
  .logo-hearing__checkbox-wrap--taste .mwform-checkbox-field {
    width: 20% !important;
  }
}
@media screen and (max-width: 1024px) {
  .logo-hearing__checkbox-wrap--taste .mwform-checkbox-field {
    width: 25% !important;
    max-width: unset !important;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__checkbox-wrap--taste .mwform-checkbox-field {
    width: 45% !important;
  }
}
.logo-hearing__checkbox-wrap--font {
  margin-bottom: 34px;
}

.logo-hearing__checkbox-wrap--font .mwform-radio-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 28px;
  height: 120px;
  width: 33.4%;
  max-width: 399px;
  padding-left: 62px;
  border-right: 0.5px solid #727278;
  border-bottom: 0.5px solid #727278;
}

@media screen and (max-width: 1600px) {
  .logo-hearing__checkbox-wrap--font .mwform-radio-field {
    width: 33.3%;
  }
}
@media screen and (max-width: 1440px) {
  .logo-hearing__checkbox-wrap--font .mwform-radio-field {
    padding-left: 4%;
  }
}
@media screen and (max-width: 1024px) {
  .logo-hearing__checkbox-wrap--font .mwform-radio-field {
    row-gap: 15px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__checkbox-wrap--font .mwform-radio-field {
    width: 100%;
    max-width: 100%;
  }
}
.logo-hearing__checkbox-wrap--font .mwform-radio-field label {
  margin-bottom: 0 !important;
}

.logo-hearing__checkbox-wrap--font .mwform-radio-field span {
  font-weight: 700;
}

.logo-hearing__checkbox-wrap--font-others {
  border: none;
}

.logo-hearing--confirm .logo-hearing__message,
.logo-hearing--confirm .logo-hearing__header,
.logo-hearing--confirm .form__input-note {
  display: none;
}

.logo-hearing--confirm .logo-hearing__form-container {
  padding: 80px 100px;
}

@media screen and (max-width: 1024px) {
  .logo-hearing--confirm .logo-hearing__form-container {
    padding: 80px;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing--confirm .logo-hearing__form-container {
    padding: 35px 20px;
  }
}
.logo-hearing--confirm .logo-hearing__label-wrap {
  min-width: 280px;
  max-width: 280px;
}

@media screen and (max-width: 1280px) {
  .logo-hearing--confirm .logo-hearing__label-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .logo-hearing--confirm .logo-hearing__label-wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.logo-hearing--confirm .form__input-wrap {
  padding-left: 58px !important;
}

@media screen and (max-width: 1024px) {
  .logo-hearing--confirm .form__input-wrap {
    padding-left: 0 !important;
  }
}
.logo-hearing--confirm .logo-hearing__checkbox-wrap,
.logo-hearing--confirm .logo-hearing__textarea-wrap {
  border: none;
  width: 100%;
  height: auto;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.logo-hearing--confirm .mt10 {
  margin: 0;
}

.logo-hearing--confirm .form__item {
  margin-bottom: 38px !important;
}

@media screen and (max-width: 1280px) {
  .logo-hearing--confirm .form__item {
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media screen and (max-width: 1024px) {
  .logo-hearing--confirm .form__item {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing--confirm .form__item {
    gap: 20px;
    margin-bottom: 20px !important;
  }
}
.logo-hearing--confirm .form__button-wrapper {
  margin-top: 110px;
}

@media screen and (max-width: 767px) {
  .logo-hearing--confirm .form__button-wrapper {
    margin-top: 40px;
  }
}
.logo-hearing--complete .logo-hearing__form-container {
  padding: 80px 100px;
}

@media screen and (max-width: 1024px) {
  .logo-hearing--complete .logo-hearing__form-container {
    padding: 80px;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing--complete .logo-hearing__form-container {
    padding: 35px 20px;
  }
}
.logo-hearing--complete .form__button-wrapper {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .logo-hearing--complete .form__button-wrapper {
    margin-top: 40px;
  }
}
.logo-hearing__form .mwform-radio-field label {
  height: 25px;
  font-weight: 500;
}

@media screen and (max-width: 1280px) {
  .logo-hearing__form .mwform-radio-field label {
    height: auto;
  }
}
.logo-hearing__form .mwform-radio-field label::before {
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .logo-hearing__form label input[type=radio]:checked + span::after {
    min-width: 17px;
    max-height: 17px;
    background-repeat: no-repeat;
  }
}
.logo-hearing__form label input[type=radio]:checked + span {
  font-weight: 700;
  color: #00000b;
}

.logo-hearing__form .mwform-checkbox-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 42px;
  width: 20%;
  max-width: 240px;
  border-right: 0.5px solid #727278;
  border-bottom: 0.5px solid #727278;
}

@media screen and (max-width: 1440px) {
  .logo-hearing__form .mwform-checkbox-field {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
}
@media screen and (max-width: 1280px) {
  .logo-hearing__form .mwform-checkbox-field {
    width: 33.3%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .logo-hearing__form .mwform-checkbox-field {
    width: 50%;
  }
}
.logo-hearing__form .mwform-checkbox-field label {
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 25px;
}

@media screen and (max-width: 767px) {
  .logo-hearing__form .mwform-checkbox-field label {
    height: auto;
    font-size: 16px;
  }
}
.logo-hearing__form label input[type=checkbox]:checked + span {
  font-weight: 700;
  color: #00000b;
}

.logo-hearing__form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.logo-hearing__form .form__privacy .mwform-checkbox-field {
  width: 25px;
  height: 25px;
  border: none;
  padding: 0 42px 0 0;
}

@media screen and (max-width: 767px) {
  .logo-hearing__form .form__privacy .mwform-checkbox-field {
    padding-right: 10px;
  }
}
.logo-hearing__form .form__privacy .mwform-checkbox-field label input[type=checkbox]:checked + span::after {
  content: "";
  width: unset;
  height: unset;
  font-size: 2.5rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  background: none;
}

@media screen and (max-width: 767px) {
  .logo-hearing__form .form__privacy .mwform-checkbox-field label input[type=checkbox]:checked + span::after {
    left: 0;
  }
}
.mwform-checkbox-field label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mwform-checkbox-field label::before {
  content: "";
  width: 25px;
  height: 25px;
  margin-right: 15px;
  border: 1px solid #00000b;
}

@media screen and (max-width: 767px) {
  .mwform-checkbox-field label::before {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
}
.mwform-checkbox-field label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}

.mwform-checkbox-field label input[type=checkbox]:checked + span::after {
  content: "";
  width: 27px;
  height: 27px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  background: url("./src/img/contact/contact-checkbox-btn.svg") no-repeat center;
  background-size: 100% 100%;
}

@media screen and (max-width: 767px) {
  .mwform-checkbox-field label input[type=checkbox]:checked + span::after {
    width: 19.5px;
    height: 19.5px;
  }
}
.overflow {
  overflow: hidden;
}

.active .hide-navigation {
  display: none;
}

span.bold {
  font-weight: bold;
}

span.red {
  color: #b01e2d;
}

span.black {
  color: #000;
}

span.grey {
  color: #727278;
}

span.white {
  color: #fff;
}

p.black {
  color: #000;
}

p.white {
  color: #fff;
}

p.red {
  color: #b01e2d;
}

.bg-white {
  background-color: #fff;
}

p.bold {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  span.red--about {
    font-size: 1.1rem;
  }
}

.content {
  overflow: hidden;
}

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

@media screen and (max-width: 767px) {
  .pc-important {
    display: none !important;
  }
}

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

ul.numbered {
  list-style-type: decimal;
}

.gray-link {
  color: #727278;
  text-decoration: underline;
}

.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}
@media screen and (max-width: 1280px) {
  .anchor {
    top: -70px;
  }
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -65px;
  }
}
@media screen and (max-width: 767px) {
  .anchor--2 {
    top: -125px;
  }
}
.anchor--wpsecure {
  top: -80px;
}
@media screen and (max-width: 767px) {
  .anchor--wpsecure {
    top: -50px;
  }
}
.anchor--wpsecure-features {
  top: -20px;
}
@media screen and (max-width: 767px) {
  .anchor--wpsecure-features {
    top: 10px;
  }
}

.mark {
  background-color: rgba(255, 255, 255, 0.9);
}

span.highlight-full {
  color: #fff;
  font-weight: 700;
  background-color: #0A8BDE;
}

span.highlight {
  text-decoration: underline;
  text-decoration-thickness: 12px;
  -webkit-text-decoration-color: #85C2FF;
          text-decoration-color: #85C2FF;
  text-underline-offset: -4px;
}

span.highlight-en {
  position: relative;
  z-index: 99;
}
span.highlight-en::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #85C2FF;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  span.highlight-en.sp-4::after {
    bottom: -4px;
  }
}
@media screen and (max-width: 767px) {
  span.highlight-en.sp-35::after {
    bottom: -3px;
    word-break: break-all;
  }
}

span.blue,
p.blue {
  color: #0A8BDE;
}

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

@media screen and (max-width: 767px) {
  .js-carousel:after {
    content: "flickity";
    display: none;
  }
}

.flickity-prev-next-button {
  top: 10px;
  -webkit-transform: none;
          transform: none;
  position: absolute;
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 100vw;
  border: 1px solid #000;
  background: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.flickity-prev-next-button:disabled {
  cursor: default;
  opacity: 0.6;
}
.flickity-prev-next-button:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 11px;
  height: 3px;
  border-bottom: 1px solid #000;
}
.flickity-prev-next-button:nth-child(2):before {
  content: "";
  width: 3px;
  height: 1px;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(140deg);
          transform: rotate(140deg);
  position: absolute;
  left: 17px;
  top: calc(50% - 1px);
}
.flickity-prev-next-button:nth-child(3):before {
  content: "";
  width: 3px;
  height: 1px;
  border-top: 1px solid #000;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  position: absolute;
  right: 17px;
  top: calc(50% - 1px);
}
.flickity-prev-next-button svg path {
  opacity: 0;
}

.flickity-prev-next-button.previous {
  top: -68px;
  left: 0;
}

.flickity-prev-next-button.next {
  top: -68px;
  left: 55px;
}

.recruit-message__interview-list .flickity-page-dots {
  position: relative;
  bottom: initial;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-list .flickity-page-dots {
    margin-top: 30px;
  }
}
.recruit-message__interview-list .flickity-page-dots .dot {
  opacity: 1;
  width: 21px;
  height: 21px;
  background-color: #f1f2f5;
  border: 2px solid #00000b;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-list .flickity-page-dots .dot {
    width: 10.5px;
    height: 10.5px;
  }
}
.recruit-message__interview-list .flickity-page-dots .dot.is-selected {
  background-color: #00000b;
}
.recruit-message__interview-list .flickity-viewport {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-list .flickity-prev-next-button {
    width: 35px;
    height: 35px;
  }
}
.recruit-message__interview-list .previous,
.recruit-message__interview-list .next {
  top: 0 !important;
  bottom: 0;
  margin: auto 0;
  border: none;
  background-image: url("./src/img/icons/button-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  z-index: 2;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-list .previous,
  .recruit-message__interview-list .next {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
}
.recruit-message__interview-list .previous::before, .recruit-message__interview-list .previous::after,
.recruit-message__interview-list .next::before,
.recruit-message__interview-list .next::after {
  display: none;
}
.recruit-message__interview-list .previous:hover,
.recruit-message__interview-list .next:hover {
  background-color: transparent;
}
.recruit-message__interview-list .previous {
  left: 76px;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-list .previous {
    left: 1%;
  }
}
.recruit-message__interview-list .previous:hover {
  left: 65px;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-list .previous:hover {
    left: 1.5%;
  }
}
.recruit-message__interview-list .next {
  left: initial;
  right: 76px;
  -webkit-transform: rotate(180deg) translateY(50px);
          transform: rotate(180deg) translateY(50px);
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-list .next {
    right: 1%;
    -webkit-transform: rotate(180deg) translateY(25px);
            transform: rotate(180deg) translateY(25px);
  }
}
.recruit-message__interview-list .next:hover {
  right: 65px;
}
@media screen and (max-width: 767px) {
  .recruit-message__interview-list .next:hover {
    right: 1.5%;
  }
}

.wp-pagenavi {
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    gap: 10px;
  }
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  background-size: 7px 13px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./src/img/blog/blog-caret-gray.svg");
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background-image: url("./src/img/blog/blog-caret-red.svg");
}
.wp-pagenavi .previouspostslink {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .current,
.wp-pagenavi .page {
  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: 80px;
  height: 80px;
  font-size: 1.7rem;
  border-radius: 50%;
  color: #00000b;
  font-family: "brandon-grotesque", sans-serif;
  border: 1px solid #00000b;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .current,
  .wp-pagenavi .page {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .current,
  .wp-pagenavi .page {
    width: 40px;
    height: 40px;
  }
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .current:hover,
.wp-pagenavi .page:hover {
  color: #b01e2d;
  border: 1px solid #b01e2d;
}
.wp-pagenavi .current {
  color: #b01e2d;
  border: 1px solid #b01e2d;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: transparent;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  color: transparent;
}
.wp-pagenavi .pages,
.wp-pagenavi .last,
.wp-pagenavi .first {
  display: none;
}
.wp-pagenavi .extend {
  border: none;
  font-size: 2rem;
}

.mwform-radio-field label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #727278;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ ゴシック", "MS Gothic", "HiraKakuProN-W3", "TakaoExゴシック", "TakaoExGothic", "MotoyaLCedar", "Droid Sans Japanese", sans-serif;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .mwform-radio-field label {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.mwform-radio-field label::before {
  content: "";
  min-width: 18px;
  min-height: 18px;
  border-radius: 50%;
  margin-right: 35px;
  border: 1px solid #00000b;
}
@media screen and (max-width: 767px) {
  .mwform-radio-field label::before {
    min-width: 15px;
    min-height: 15px;
    margin-right: 20px;
  }
}
.mwform-radio-field label input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
}
.mwform-radio-field label input[type=radio]:checked + span {
  color: #00000b;
}
.mwform-radio-field label input[type=radio]:checked + span::after {
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  background-color: #fff;
  background-image: url("./src/img/contact/contact-radio-btn.svg");
}
@media screen and (max-width: 767px) {
  .mwform-radio-field label input[type=radio]:checked + span::after {
    width: 17.5px;
    height: 17.5px;
  }
}

.form__privacy .mwform-checkbox-field label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.form__privacy .mwform-checkbox-field label::before {
  content: "";
  width: 25px;
  height: 25px;
  margin-right: 15px;
  border: 1px solid #00000b;
}
@media screen and (max-width: 767px) {
  .form__privacy .mwform-checkbox-field label::before {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
}
.form__privacy .mwform-checkbox-field label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.form__privacy .mwform-checkbox-field label input[type=checkbox]:checked + span::after {
  content: "";
  font-size: 2.5rem;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .form__privacy .mwform-checkbox-field label input[type=checkbox]:checked + span::after {
    left: 0;
  }
}

.mwform-file-delete {
  display: none !important;
  visibility: hidden !important;
}

.heateor_sss_sharing_ul svg path {
  display: none;
}

.heateor_sss_sharing_ul a {
  margin: 5px !important;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.heateor_sss_sharing_ul a:hover {
  opacity: 0.5;
}

.heateor_sss_facebook,
.heateor_sss_button_line,
.heateor_sss_button_twitter {
  position: relative;
}

.heateor_sss_facebook svg {
  background-color: #1b5def;
}

.heateor_sss_facebook span,
.heateor_sss_button_twitter span,
.heateor_sss_button_line span {
  position: relative;
}

.heateor_sss_facebook span::before,
.heateor_sss_button_twitter span::before,
.heateor_sss_button_line span::before {
  content: "";
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 15px;
  left: 20px;
  width: 20px;
  height: 20px;
}

.heateor_sss_facebook span::before {
  background-image: url("./src/img/blog/blog-fb-icon.svg");
}

.heateor_sss_button_twitter span::before {
  background-image: url("./src/img/blog/blog-twt-icon.svg");
}

.heateor_sss_button_line span::before {
  background-image: url("./src/img/blog/blog-line-icon.svg");
}

.heateor_sss_facebook::after,
.heateor_sss_button_line:after,
.heateor_sss_button_twitter:after {
  position: absolute;
  left: 55px;
  top: 12px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.4rem;
}

.heateor_sss_facebook::after,
.heateor_sss_button_line:after {
  content: "Share";
}

.heateor_sss_button_twitter::after {
  content: "Tweet";
}

/*# sourceMappingURL=/main.css.map */