@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

/* Specify the box size calculation method */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Improved responsiveness of links and buttons on touch devices */
a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

/* --------------------
	Base
	基本設定
-------------------- */
html {
  font-size: 3.6vw; }
  @media screen and (min-width: 768px) {
    html {
      font-size: 1.8vw; } }
  @media screen and (min-width: 1000px) {
    html {
      font-size: 18px; } }

body a {
  color: inherit;
  text-decoration: none;
  /*&[href^="tel:"] {
  	pointer-events: none;
  }*/ }
body img {
  width: 100%;
  height: auto;
  vertical-align: bottom; }
body em {
  font-style: normal; }
body li {
  list-style: none; }
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-weight: inherit; }

.wrap {
  background: white;
  width: 100%;
  color: #000000; }
  @media screen and (max-width: 768px) {
    .wrap {
      /*a {
      	&[href^="tel:"] {
      		pointer-events: auto;
      	}
      }*/ } }

/* --------------------
	Layout
-------------------- */
/* Mixin */
/* common parts */
/* button */
/*
	Wrap
------------------------------------------------------------ */
body {
  font-family: 'Plus Jakarta Sans', 'Noto Sans JP', sans-serif; }
  body a {
    transition: all .2s ease-in-out;
    cursor: pointer; }
    body a:hover {
      opacity: .7; }
    @media screen and (max-width: 768px) {
      body a:hover {
        opacity: 1; } }

.wrap {
  overflow: hidden; }
  .wrap img {
    width: 100%;
    height: auto; }
  .wrap .pc {
    display: block; }
  .wrap .sp {
    display: none; }
  @media screen and (max-width: 768px) {
    .wrap .pc {
      display: none; }
    .wrap .sp {
      display: block; } }

/*
	Header
------------------------------------------------------------ */
.header {
  background: white;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden; }
  .header.active {
    opacity: 1;
    visibility: visible; }
  .header__inner {
    padding: .5rem 2rem;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative; }
    .header__inner .heading {
      margin: 0;
      width: 12em; }
    .header__inner .box {
      display: flex;
      align-items: center;
      width: fit-content; }
      .header__inner .box-item01 {
        width: 13em;
        margin-right: .5em; }
      .header__inner .box-item02 {
        flex: 1; }
        .header__inner .box-item02 .sub {
          margin: 0 0 .5em;
          color: #ff7814;
          font-size: .5rem;
          letter-spacing: .025em;
          font-weight: 500;
          text-align: center; }
          .header__inner .box-item02 .sub .strong {
            font-size: 1.4em;
            font-weight: 700;
            position: relative; }
            .header__inner .box-item02 .sub .strong::before {
              position: absolute;
              content: "・";
              font-size: .5em;
              top: -.5em;
              left: 50%;
              transform: translateX(-50%); }
        .header__inner .box-item02 .button a {
          margin: 0 auto;
          transition: all .2s ease-in-out;
          cursor: pointer;
          background: linear-gradient(-90deg, #ffbe28 0%, #ff7814 100%);
          color: white;
          text-align: center;
          display: flex;
          align-items: center;
          justify-content: center;
          height: 3em;
          border-radius: 100rem;
          font-weight: 700;
          font-size: 1.4rem;
          letter-spacing: .025em;
          width: fit-content;
          padding: 0 2em;
          font-size: .9rem; }
          .header__inner .box-item02 .button a:hover {
            opacity: .7; }
          @media screen and (max-width: 768px) {
            .header__inner .box-item02 .button a:hover {
              opacity: 1; } }
          @media screen and (max-width: 768px) {
            .header__inner .box-item02 .button a {
              font-size: 4.3vw;
              height: 4em; } }
  @media screen and (max-width: 768px) {
    .header {
      display: none; } }

/* visual */
.visual {
  position: relative;
  background: #000000;
  z-index: 1; }
  .visual::after {
    position: absolute;
    content: "";
    background: #000000;
    opacity: .6;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 3; }
  .visual .accent {
    position: relative;
    z-index: 10; }
    .visual .accent::before {
      position: absolute;
      content: "";
      background-image: url("../images/accent02.svg");
      background-repeat: no-repeat;
      background-size: contain;
      aspect-ratio: 1 / 6;
      display: block;
      width: 1rem;
      right: 0;
      top: 0; }
    .visual .accent::after {
      position: absolute;
      content: "";
      background-image: url("../images/accent02.svg");
      background-repeat: no-repeat;
      background-size: contain;
      aspect-ratio: 1 / 6;
      display: block;
      width: 1rem;
      left: 0;
      top: 15rem; }
    .visual .accent02 {
      position: relative;
      z-index: 10; }
      .visual .accent02::before {
        position: absolute;
        content: "";
        background-image: url("../images/accent01.svg");
        background-repeat: no-repeat;
        background-size: contain;
        aspect-ratio: 1 / 1;
        display: block;
        width: 3rem;
        left: -.15rem;
        top: 7rem; }
    .visual .accent03::before {
      z-index: -2;
      position: absolute;
      content: "";
      background: linear-gradient(90deg, #ffbe28 0%, #ff7814 100%);
      width: 16rem;
      height: 6rem;
      bottom: -3rem;
      left: 50%;
      transform: translateX(-19rem); }
    .visual .accent03::after {
      z-index: -1;
      position: absolute;
      content: "";
      background: #000000;
      width: 11.23rem;
      height: 4rem;
      bottom: 0;
      left: 50%;
      transform: translateX(-19rem); }
  .visual .logo {
    position: absolute;
    z-index: 5;
    left: 2rem;
    top: 2rem;
    width: 12rem; }
  .visual__inner {
    width: calc(100vw - 2rem);
    max-width: 1000px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 7rem 4rem 5rem;
    position: relative;
    z-index: 4;
    color: white; }
    @media screen and (max-width: 768px) {
      .visual__inner {
        width: calc(100vw - 12vw); } }
    .visual__inner .list {
      display: flex;
      font-weight: 700; }
      .visual__inner .list-item {
        padding: 0 .8em 0 1.15em;
        position: relative; }
        .visual__inner .list-item::before {
          position: absolute;
          content: "";
          background-image: url("../images/icon_lightning.svg");
          background-repeat: no-repeat;
          background-size: contain;
          aspect-ratio: 1 / 1;
          display: block;
          width: 1em;
          left: 0;
          top: 0;
          bottom: 0;
          margin: auto; }
        .visual__inner .list-item span {
          padding-bottom: .25em;
          border-bottom: 1.5px solid #ff7814; }
    .visual__inner .heading {
      margin: .5em 0 .25em;
      font-size: 2.3rem;
      font-weight: 700;
      letter-spacing: .075em;
      line-height: 1.6;
      font-feature-settings: "palt"; }
      .visual__inner .heading .orange {
        color: #ffbe28; }
    .visual__inner .bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between; }
      .visual__inner .bottom .image {
        width: 60%; }
      .visual__inner .bottom .box {
        flex: 1; }
        .visual__inner .bottom .box .sub {
          margin: 2em 1.5em .5em 0;
          color: #ffbe28;
          font-size: .8rem;
          letter-spacing: .025em;
          font-weight: 500;
          text-align: center; }
          .visual__inner .bottom .box .sub .strong {
            font-size: 1.4em;
            font-weight: 700;
            position: relative; }
            .visual__inner .bottom .box .sub .strong::before {
              position: absolute;
              content: "・";
              font-size: .5em;
              top: -.5em;
              left: 50%;
              transform: translateX(-50%); }
        .visual__inner .bottom .box .button {
          position: relative; }
          .visual__inner .bottom .box .button a {
            margin: 0 auto;
            transition: all .2s ease-in-out;
            cursor: pointer;
            background: linear-gradient(-90deg, #ffbe28 0%, #ff7814 100%);
            color: white;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 3em;
            border-radius: 100rem;
            font-weight: 700;
            font-size: 1.4rem;
            letter-spacing: .025em;
            width: fit-content;
            padding: 0 2em;
            font-size: 1.1rem;
            position: relative;
            z-index: 2;
            width: 18em; }
            .visual__inner .bottom .box .button a:hover {
              opacity: .7; }
            @media screen and (max-width: 768px) {
              .visual__inner .bottom .box .button a:hover {
                opacity: 1; } }
            @media screen and (max-width: 768px) {
              .visual__inner .bottom .box .button a {
                font-size: 4.3vw;
                height: 4em; } }
            .visual__inner .bottom .box .button a::before {
              position: absolute;
              content: "";
              background-image: url("../images/cv_comment.svg");
              background-repeat: no-repeat;
              background-size: contain;
              aspect-ratio: 1 / 1;
              display: block;
              width: 5.5rem;
              right: -3.5rem;
              top: -3.75rem;
              filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.2)); }
              @media screen and (max-width: 768px) {
                .visual__inner .bottom .box .button a::before {
                  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2)); } }
          .visual__inner .bottom .box .button::after {
            position: absolute;
            content: "";
            background-image: url("../images/accent01.svg");
            background-repeat: no-repeat;
            background-size: contain;
            aspect-ratio: 1 / 1;
            display: block;
            width: 3.5rem;
            right: -.5rem;
            top: 1rem;
            z-index: -1; }
  .visual__video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    width: 60%; }
    .visual__video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  @media screen and (max-width: 768px) {
    .visual::after {
      opacity: .7; }
    .visual .accent::before {
      width: .75rem;
      top: 35vw; }
    .visual .accent::after {
      width: .75rem;
      top: 168vw; }
    .visual .accent02::before {
      width: 8%;
      left: -.15rem;
      top: 155vw; }
    .visual .logo {
      left: 50%;
      transform: translateX(-50%);
      top: 4vw;
      width: 42%; }
    .visual__inner {
      padding: 20vw 0 10vw;
      z-index: 30; }
      .visual__inner .list {
        flex-flow: wrap;
        row-gap: 4vw; }
        .visual__inner .list-item {
          font-size: 4vw; }
      .visual__inner .heading {
        margin: 3em 0 .25em;
        font-size: 6vw; }
      .visual__inner .bottom {
        display: block;
        margin: 0 auto; }
        .visual__inner .bottom .image {
          width: 100%;
          margin: 0 auto; }
        .visual__inner .bottom .box .sub {
          margin: 6em 0 .5em;
          font-size: 3.4vw; }
        .visual__inner .bottom .box .button a::before {
          background-image: url("../images/cv_comment-sp.svg");
          aspect-ratio: 300 / 79;
          display: block;
          width: 74%;
          left: -8vw;
          top: -22vw; }
        .visual__inner .bottom .box .button::after {
          width: 18%;
          right: -7vw;
          top: -8vw; }
      .visual__inner .accent03::before {
        width: 54%;
        height: 4rem;
        bottom: -2rem;
        left: auto;
        transform: none;
        right: 2rem; }
      .visual__inner .accent03::after {
        width: 42%;
        left: auto;
        transform: none;
        right: 5rem; }
    .visual__video {
      width: 100%; } }

/*
	Contents
------------------------------------------------------------ */
.contents {
  background: white;
  color: #000000;
  /* 埋め込み地図・動画 レスポンシブ対応用 */ }
  .contents .video,
  .contents .map {
    width: 74%;
    margin: 0 auto; }
    .contents .video iframe,
    .contents .video video,
    .contents .map iframe,
    .contents .map video {
      width: 100%;
      max-width: 1000px;
      height: auto;
      aspect-ratio: 16 / 9; }

/* cv */
.cv {
  padding: 4rem 0 6rem;
  background-color: white;
  background-image: url("../images/cv.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  @media screen and (max-width: 768px) {
    .cv {
      padding: 3rem 0; } }
  .cv::before {
    position: absolute;
    content: "";
    background-image: url("../images/cv_accent.svg");
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 300 / 122;
    display: block;
    width: 12rem;
    right: 0;
    top: -1.5rem; }
  .cv__inner {
    width: calc(100vw - 2rem);
    max-width: 1000px;
    margin: 0 auto;
    color: white;
    text-align: center;
    font-weight: 700; }
    @media screen and (max-width: 768px) {
      .cv__inner {
        width: calc(100vw - 12vw); } }
    .cv__inner .heading {
      font-size: 2rem;
      margin-bottom: .75em; }
    .cv__inner .text {
      letter-spacing: .025em;
      line-height: 1.8; }
    .cv__inner .sub {
      margin: 2em 0 .5em;
      color: #ffbe28;
      font-size: .8rem;
      letter-spacing: .025em;
      font-weight: 500; }
      .cv__inner .sub .strong {
        font-size: 1.4em;
        font-weight: 700;
        position: relative; }
        .cv__inner .sub .strong::before {
          position: absolute;
          content: "・";
          font-size: .5em;
          top: -.5em;
          left: 50%;
          transform: translateX(-50%); }
    .cv__inner .button a {
      margin: 0 auto;
      transition: all .2s ease-in-out;
      cursor: pointer;
      background: linear-gradient(-90deg, #ffbe28 0%, #ff7814 100%);
      color: white;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 3em;
      border-radius: 100rem;
      font-weight: 700;
      font-size: 1.4rem;
      letter-spacing: .025em;
      width: fit-content;
      padding: 0 2em;
      position: relative; }
      .cv__inner .button a:hover {
        opacity: .7; }
      @media screen and (max-width: 768px) {
        .cv__inner .button a:hover {
          opacity: 1; } }
      @media screen and (max-width: 768px) {
        .cv__inner .button a {
          font-size: 4.3vw;
          height: 4em; } }
      .cv__inner .button a::before {
        position: absolute;
        content: "";
        background-image: url("../images/cv_comment.svg");
        background-repeat: no-repeat;
        background-size: contain;
        aspect-ratio: 1 / 1;
        display: block;
        width: 6.5rem;
        right: -3.5rem;
        top: -3.75rem;
        filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.2)); }
        @media screen and (max-width: 768px) {
          .cv__inner .button a::before {
            filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2)); } }
  @media screen and (max-width: 768px) {
    .cv {
      background-image: url("../images/cv-sp.webp"); }
      .cv::before {
        background-image: url("../images/cv_accent-sp.svg");
        aspect-ratio: 300 / 109;
        width: 30%;
        top: -1.25rem; }
      .cv__inner .heading {
        font-size: 5.2vw; }
      .cv__inner .text {
        font-size: 3.4vw; }
      .cv__inner .sub {
        margin: 6em 0 .5em;
        font-size: 3.4vw; }
      .cv__inner .button a::before {
        background-image: url("../images/cv_comment-sp.svg");
        aspect-ratio: 300 / 79;
        display: block;
        width: 74%;
        left: -8vw;
        top: -22vw; } }

/* 全ブロック共通 */
.problem,
.solution,
.about,
.ex,
.reason,
.comparison,
.step,
.faq,
.recruit {
  padding: 4rem 0 6rem; }
  @media screen and (max-width: 768px) {
    .problem,
    .solution,
    .about,
    .ex,
    .reason,
    .comparison,
    .step,
    .faq,
    .recruit {
      padding: 3rem 0; } }
  .problem__inner,
  .solution__inner,
  .about__inner,
  .ex__inner,
  .reason__inner,
  .comparison__inner,
  .step__inner,
  .faq__inner,
  .recruit__inner {
    width: calc(100vw - 2rem);
    max-width: 1000px;
    margin: 0 auto; }
    @media screen and (max-width: 768px) {
      .problem__inner,
      .solution__inner,
      .about__inner,
      .ex__inner,
      .reason__inner,
      .comparison__inner,
      .step__inner,
      .faq__inner,
      .recruit__inner {
        width: calc(100vw - 12vw); } }
    .problem__inner .eng,
    .solution__inner .eng,
    .about__inner .eng,
    .ex__inner .eng,
    .reason__inner .eng,
    .comparison__inner .eng,
    .step__inner .eng,
    .faq__inner .eng,
    .recruit__inner .eng {
      font-size: 1.2rem;
      font-weight: 700;
      text-align: center;
      letter-spacing: .075em;
      margin-bottom: .75em; }
      .problem__inner .eng .grd,
      .solution__inner .eng .grd,
      .about__inner .eng .grd,
      .ex__inner .eng .grd,
      .reason__inner .eng .grd,
      .comparison__inner .eng .grd,
      .step__inner .eng .grd,
      .faq__inner .eng .grd,
      .recruit__inner .eng .grd {
        display: inline-block;
        background: linear-gradient(-90deg, #ffbe28 0%, #ff7814 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent; }
    .problem__inner .heading,
    .solution__inner .heading,
    .about__inner .heading,
    .ex__inner .heading,
    .reason__inner .heading,
    .comparison__inner .heading,
    .step__inner .heading,
    .faq__inner .heading,
    .recruit__inner .heading {
      font-size: 2.4rem;
      font-weight: 700;
      color: white;
      text-align: center;
      margin-bottom: 1.25em; }
  @media screen and (max-width: 768px) {
    .problem__inner .eng,
    .solution__inner .eng,
    .about__inner .eng,
    .ex__inner .eng,
    .reason__inner .eng,
    .comparison__inner .eng,
    .step__inner .eng,
    .faq__inner .eng,
    .recruit__inner .eng {
      font-size: 3.6vw; }
    .problem__inner .heading,
    .solution__inner .heading,
    .about__inner .heading,
    .ex__inner .heading,
    .reason__inner .heading,
    .comparison__inner .heading,
    .step__inner .heading,
    .faq__inner .heading,
    .recruit__inner .heading {
      font-size: 7.2vw; } }

.problem__inner .heading,
.about__inner .heading,
.ex__inner .heading,
.comparison__inner .heading,
.step__inner .heading {
  color: #000000; }

/* 各ブロック個別 */
.problem {
  padding: 6rem 0 4rem; }
  .problem__inner .heading {
    font-weight: 700;
    font-size: 1.9rem;
    line-height: 1.8; }
    .problem__inner .heading .line {
      position: relative; }
      .problem__inner .heading .line::before {
        position: absolute;
        content: "・・・・・・・・・・・・・";
        font-size: .35em;
        color: #000000;
        left: 50%;
        transform: translateX(-50%);
        bottom: -1.5em; }
  .problem__inner .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    margin: 0 auto; }
    .problem__inner .box .image {
      width: 28%; }
    .problem__inner .box .list {
      flex: 1;
      padding-left: 2rem; }
      .problem__inner .box .list-item {
        font-size: 1.1rem;
        margin-bottom: 1em;
        font-weight: 500;
        padding-left: 1.25em;
        position: relative; }
        .problem__inner .box .list-item:last-child {
          margin-bottom: 0; }
        .problem__inner .box .list-item .blue {
          font-weight: 700;
          color: #4b84b6; }
        .problem__inner .box .list-item::before {
          position: absolute;
          content: "";
          background-image: url("../images/icon_lightning_blue.svg");
          background-repeat: no-repeat;
          background-size: contain;
          aspect-ratio: 1 / 1;
          display: block;
          width: 1em;
          left: 0; }
  @media screen and (max-width: 768px) {
    .problem {
      padding: 4rem 0 3rem; }
      .problem__inner .heading {
        font-size: 5.2vw; }
      .problem__inner .box {
        display: block;
        width: 100%; }
        .problem__inner .box .image {
          margin: 0 auto 6vw;
          width: 52%; }
        .problem__inner .box .list {
          padding-left: 0; }
          .problem__inner .box .list-item {
            font-size: 3.8vw;
            line-height: 1.6; }
            .problem__inner .box .list-item:last-child {
              margin-bottom: 0; }
            .problem__inner .box .list-item::before {
              top: 1.25vw; } }

.solution {
  background: #1e1432;
  margin-bottom: -5px; }
  .solution__inner .sub {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .025em;
    text-align: center;
    position: relative;
    color: #ff7814; }
    .solution__inner .sub::before {
      position: absolute;
      content: "";
      background-image: url("../images/solution_comment.svg");
      background-repeat: no-repeat;
      background-size: contain;
      aspect-ratio: 300 / 21;
      display: block;
      width: 27em;
      left: 50%;
      transform: translateX(-50%); }
  .solution__inner .heading {
    font-weight: 700;
    font-size: 1.9rem;
    line-height: 1.8;
    margin: 1em 0 2.5em;
    position: relative; }
    .solution__inner .heading::before {
      position: absolute;
      content: "・・・・・・・・・・・・・";
      font-size: .25em;
      color: #ff7814;
      left: 50%;
      transform: translateX(-50%);
      bottom: -4em; }
  .solution__inner .list {
    background: white;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
    padding: 3rem 2rem; }
    .solution__inner .list::before {
      position: absolute;
      content: "";
      width: 4rem;
      aspect-ratio: 1;
      clip-path: polygon(0 0, 100% 0, 0 100%);
      background: linear-gradient(-90deg, #ffbe28 0%, #ff7814 100%);
      left: -.5rem;
      top: -.5rem; }
    .solution__inner .list::after {
      position: absolute;
      content: "";
      width: 4rem;
      aspect-ratio: 1;
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
      background: linear-gradient(90deg, #ffbe28 0%, #ff7814 100%);
      right: -.5rem;
      bottom: -.5rem; }
    .solution__inner .list .circle {
      position: relative;
      color: white;
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-align: center;
      z-index: 2; }
      .solution__inner .list .circle::before {
        position: absolute;
        content: "";
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        bottom: 0;
        margin: auto;
        width: 3em;
        border-radius: 50%;
        height: 3em;
        z-index: -1; }
    .solution__inner .list .before {
      border-bottom: 2px solid #4b84b6; }
      .solution__inner .list .before dd {
        margin: 0 0 .5em 1em; }
      .solution__inner .list .before .circle::before {
        background: #4b84b6; }
    .solution__inner .list .after {
      border-bottom: 2px solid #ff7814; }
      .solution__inner .list .after dd {
        margin: 0 0 .5em .5em; }
      .solution__inner .list .after .circle::before {
        background: #ff7814; }
    .solution__inner .list .before,
    .solution__inner .list .after {
      display: flex;
      align-items: center;
      margin-bottom: 2em; }
      .solution__inner .list .before dd,
      .solution__inner .list .after dd {
        font-size: .8rem;
        font-weight: 500;
        letter-spacing: .025em; }
    .solution__inner .list .merit {
      text-align: center;
      letter-spacing: -.05em;
      font-size: .8rem;
      width: 5em;
      border: 1px solid #000000;
      border-radius: .25em;
      padding: .25em 0;
      margin: 0 auto .5em; }
    .solution__inner .list .head {
      font-weight: 700;
      letter-spacing: .05em;
      text-align: center; }
    .solution__inner .list .image {
      margin: 1rem auto; }
    .solution__inner .list .text {
      line-height: 1.8;
      font-weight: 500;
      font-size: .9rem;
      text-align: justify; }
  @media screen and (max-width: 768px) {
    .solution {
      padding: 3rem 0 5rem; }
      .solution__inner {
        z-index: 1;
        position: relative; }
        .solution__inner .sub {
          font-size: 3.8vw;
          line-height: 1.6; }
          .solution__inner .sub::before {
            bottom: -2vw;
            width: 88%; }
        .solution__inner .heading {
          font-size: 5.2vw; }
        .solution__inner .list {
          display: block; }
          .solution__inner .list::before, .solution__inner .list::after {
            z-index: -1; }
          .solution__inner .list .circle {
            font-size: 3.4vw; }
          .solution__inner .list .before dd,
          .solution__inner .list .after dd {
            font-size: 3.4vw; }
          .solution__inner .list .after {
            margin-bottom: 1.5em; }
          .solution__inner .list .merit {
            font-size: 3.1vw; }
          .solution__inner .list .head {
            font-size: 4vw; }
          .solution__inner .list .image {
            margin: 1rem auto; }
          .solution__inner .list .text {
            margin-bottom: 3em;
            font-size: 3.4vw; }
          .solution__inner .list-item03 .text {
            margin-bottom: 0; } }

.about {
  padding: 4rem 0; }
  .about__inner .text {
    text-align: center;
    font-weight: 500;
    letter-spacing: .025em;
    line-height: 1.8;
    margin-bottom: 2em; }
  .about__inner .video {
    position: relative;
    z-index: 2; }
    .about__inner .video::before {
      position: absolute;
      content: "";
      background-image: url("../images/about_accent.svg");
      background-repeat: no-repeat;
      background-size: contain;
      aspect-ratio: 266 / 150;
      display: block;
      width: 13rem;
      left: -7rem;
      bottom: -4rem;
      z-index: -1; }
  @media screen and (max-width: 768px) {
    .about {
      padding: 3rem 0 4rem; }
      .about__inner .heading {
        line-height: 1.3; }
      .about__inner .text {
        font-size: 3.6vw; }
      .about__inner .video {
        width: 100%; }
        .about__inner .video::before {
          width: 36%;
          left: -6vw;
          bottom: -4rem; } }

.ex {
  background: #e6e6e6; }
  .ex__inner .eng .grd {
    display: inline-block;
    background: linear-gradient(90deg, #0237be 0%, #4b84b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; }
  .ex__inner .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3rem 1rem; }
    .ex__inner .list .head {
      text-align: center;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: .025em; }
    .ex__inner .list .image {
      width: 90%;
      margin: .5rem auto 1.25rem; }
    .ex__inner .list .text {
      width: 90%;
      text-align: justify;
      margin: 0 auto;
      font-size: .9rem;
      letter-spacing: .025em;
      line-height: 1.6; }
  @media screen and (max-width: 768px) {
    .ex__inner .heading {
      line-height: 1.3; }
    .ex__inner .list {
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 4vw 2vw; }
      .ex__inner .list .head {
        line-height: 1.3;
        font-size: 3.8vw; }
      .ex__inner .list-item01 .head, .ex__inner .list-item02 .head {
        height: 2.2em; }
      .ex__inner .list-item02 .head {
        display: flex;
        align-items: center;
        justify-content: center; }
      .ex__inner .list .image {
        width: 90%;
        margin: .5rem auto 1.25rem; }
      .ex__inner .list .text {
        width: 90%;
        font-size: 3.1vw; } }

.reason {
  background: #1e1432;
  padding: 4rem 0 10rem; }
  .reason__inner .heading {
    margin-bottom: 2em; }
  .reason__inner .list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5rem; }
    .reason__inner .list-item:last-child {
      margin-bottom: 0; }
    .reason__inner .list-item .image {
      width: 40%;
      position: relative;
      z-index: 2; }
      .reason__inner .list-item .image::before {
        position: absolute;
        content: "";
        background: white;
        height: 130%;
        width: 136%;
        z-index: -1;
        top: 0;
        bottom: 0;
        margin: auto; }
    .reason__inner .list-item01 .image::before, .reason__inner .list-item03 .image::before {
      left: -11.5rem; }
    .reason__inner .list-item01 .box, .reason__inner .list-item03 .box {
      padding-left: 3rem; }
    .reason__inner .list-item02, .reason__inner .list-item04 {
      flex-flow: row-reverse; }
      .reason__inner .list-item02 .image::before, .reason__inner .list-item04 .image::before {
        right: -11.5rem; }
      .reason__inner .list-item02 .box, .reason__inner .list-item04 .box {
        padding-right: 3rem; }
    .reason__inner .list-item .box {
      flex: 1;
      color: white; }
      .reason__inner .list-item .box .number {
        font-weight: 700;
        padding-left: 3em;
        position: relative; }
        .reason__inner .list-item .box .number .large {
          font-size: 1.8em; }
        .reason__inner .list-item .box .number::before {
          position: absolute;
          content: "";
          background-image: url("../images/icon_electric.svg");
          background-repeat: no-repeat;
          background-size: contain;
          aspect-ratio: 138 / 150;
          display: block;
          width: 2.5em;
          left: 0;
          top: -.5em; }
      .reason__inner .list-item .box .head {
        margin: 1em 0 1.25em;
        font-weight: 700;
        font-size: 1.3rem;
        letter-spacing: .04em;
        line-height: 1.8; }
        .reason__inner .list-item .box .head .grd {
          background: linear-gradient(-90deg, #ffbe28 0%, #ff7814 100%);
          padding: .15em; }
      .reason__inner .list-item .box .text {
        line-height: 1.8;
        font-size: .9rem;
        font-weight: 500; }
  @media screen and (max-width: 768px) {
    .reason {
      padding: 3rem 0; }
      .reason__inner .heading {
        margin-bottom: 2em; }
      .reason__inner .list-item {
        display: block;
        margin-bottom: 10vw; }
        .reason__inner .list-item:last-child {
          margin-bottom: 0; }
        .reason__inner .list-item .image {
          width: 78%; }
          .reason__inner .list-item .image::before {
            height: 120%;
            width: 88%; }
        .reason__inner .list-item01 .image::before, .reason__inner .list-item03 .image::before {
          left: -6vw; }
        .reason__inner .list-item01 .box, .reason__inner .list-item03 .box {
          padding-left: 0; }
        .reason__inner .list-item02, .reason__inner .list-item04 {
          flex-flow: wrap; }
          .reason__inner .list-item02 .image, .reason__inner .list-item04 .image {
            margin: 0 0 0 auto; }
            .reason__inner .list-item02 .image::before, .reason__inner .list-item04 .image::before {
              right: -6vw; }
          .reason__inner .list-item02 .box, .reason__inner .list-item04 .box {
            padding-right: 0; }
        .reason__inner .list-item .box {
          margin-top: 12vw; }
          .reason__inner .list-item .box .head {
            font-size: 5.2vw; }
          .reason__inner .list-item .box .text {
            font-size: 3.4vw; } }

.comparison {
  background: #e6e6e6; }
  .comparison__inner {
    width: 92%;
    margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .comparison__inner {
      width: 96%; }
      .comparison__inner .heading {
        line-height: 1.3; } }

.step {
  background-color: white;
  background-image: url("../images/step.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .step__inner .heading {
    margin-bottom: .5em; }
  .step__inner .list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1rem; }
    .step__inner .list .image {
      margin: 0 auto;
      width: 80%; }
    .step__inner .list .number {
      font-size: .8rem;
      color: #ff7814;
      font-weight: 700;
      text-align: center; }
    .step__inner .list .head {
      font-weight: 700;
      text-align: center;
      font-size: .9rem;
      letter-spacing: .025em;
      margin: .75em 0; }
    .step__inner .list .text {
      text-align: justify;
      line-height: 1.6;
      font-size: .8rem; }
  @media screen and (max-width: 768px) {
    .step {
      background-image: url("../images/step-sp.webp");
      background-position: top; }
      .step__inner .list {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1em 2em; }
        .step__inner .list .number {
          font-size: 3.1vw; }
        .step__inner .list .head {
          font-size: 3.6vw; }
        .step__inner .list .text {
          font-size: 3.4vw; } }

.faq {
  background: #1e1432;
  padding: 4rem 0 14rem; }
  .faq__inner {
    max-width: 820px; }
    .faq__inner .list-item {
      letter-spacing: .025em;
      width: 94%;
      margin: 0 0 0 auto; }
      .faq__inner .list-item dt {
        color: #ffbe28;
        font-size: 1.1rem;
        font-weight: 700;
        position: relative; }
        .faq__inner .list-item dt::before {
          position: absolute;
          content: "";
          height: 3px;
          width: 100%;
          background: linear-gradient(-90deg, #ffbe28 0%, #ff7814 100%);
          border-radius: 10rem;
          bottom: -1rem; }
        .faq__inner .list-item dt::after {
          position: absolute;
          content: "";
          background-image: url("../images/faq_icon.svg");
          background-repeat: no-repeat;
          background-size: contain;
          aspect-ratio: 153 / 150;
          display: block;
          width: 2.5rem;
          left: -3.25rem;
          top: -.25rem; }
      .faq__inner .list-item dd {
        color: white;
        font-size: .9rem;
        padding: 2em 0;
        position: relative;
        text-align: justify;
        line-height: 1.8; }
        .faq__inner .list-item dd::before {
          position: absolute;
          content: "A";
          color: white;
          font-size: 1.5rem;
          font-weight: 700;
          left: -2rem;
          top: 1.25rem; }
  @media screen and (max-width: 768px) {
    .faq {
      padding: 4rem 0 14rem; }
      .faq__inner .list-item {
        width: 86%; }
        .faq__inner .list-item dt {
          font-size: 4vw;
          line-height: 1.6; }
          .faq__inner .list-item dt::before {
            bottom: -3vw; }
          .faq__inner .list-item dt::after {
            width: 13%;
            left: -12vw;
            top: -.5vw; }
        .faq__inner .list-item dd {
          font-size: 3.4vw; }
          .faq__inner .list-item dd::before {
            font-size: 5.8vw;
            left: -7vw;
            top: 4vw; } }

.recruit {
  padding: 0;
  margin-top: -10rem; }
  .recruit__inner {
    filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.2));
    padding: 4rem 0;
    max-width: 950px;
    background: #000000;
    color: white;
    background-image: url("../images/recruit.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1.5rem;
    text-align: center;
    position: relative; }
    @media screen and (max-width: 768px) {
      .recruit__inner {
        filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2)); } }
    .recruit__inner::before {
      position: absolute;
      content: "";
      background-image: url("../images/accent01.svg");
      background-repeat: no-repeat;
      background-size: contain;
      aspect-ratio: 1 / 1;
      display: block;
      width: 5rem;
      right: -3.75rem;
      top: -2rem; }
    .recruit__inner .heading {
      font-size: 1.6rem;
      letter-spacing: .04em;
      font-weight: 700; }
      .recruit__inner .heading .small {
        font-size: 1.1rem; }
    .recruit__inner .text {
      font-size: .9rem;
      letter-spacing: .025em;
      font-weight: 500;
      line-height: 1.6;
      margin-bottom: 1.2em; }
    .recruit__inner .button {
      width: fit-content;
      margin: 3rem auto 0; }
      .recruit__inner .button a {
        border: white solid .2rem;
        border-radius: 100rem;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-weight: 700;
        letter-spacing: .025em;
        height: 4em;
        padding: 0 4em 0 2em;
        position: relative; }
        .recruit__inner .button a::before {
          position: absolute;
          content: "";
          background-image: url("../images/icon_button.svg");
          background-repeat: no-repeat;
          background-size: contain;
          width: 1em;
          aspect-ratio: 1 / 1;
          display: block;
          right: 2em; }
  @media screen and (max-width: 768px) {
    .recruit {
      margin-top: -13rem; }
      .recruit__inner {
        background-image: url("../images/recruit-sp.webp");
        padding: 3rem 1.25rem; }
        .recruit__inner::before {
          display: none; }
        .recruit__inner .heading {
          font-size: 4.8vw;
          line-height: 1.6; }
          .recruit__inner .heading .small {
            font-size: 3.1vw; }
        .recruit__inner .text {
          font-size: 3.4vw; }
        .recruit__inner .button a {
          font-size: 3.4vw;
          border: white solid .15rem;
          padding: 0 3em 0 1em; }
          .recruit__inner .button a::before {
            right: 1.5em; } }

.contact {
  width: calc(100vw - 2rem);
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 0; }
  @media screen and (max-width: 768px) {
    .contact {
      width: calc(100vw - 12vw); } }

/*
	Footer
------------------------------------------------------------ */
.footer {
  background: #000000; }
  .footer .copyright {
    padding: 1em 0;
    font-size: .9rem;
    color: white;
    text-align: center;
    font-weight: 500; }
  @media screen and (max-width: 768px) {
    .footer .copyright {
      padding: 1em 0 12em;
      font-size: 2.4vw; } }

/* Floating area */
.floating {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000; }
  .floating .button {
    display: none; }
  @media screen and (max-width: 768px) {
    .floating {
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: .3s; }
      .floating.is-show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0); }
      .floating .button {
        display: block; }
        .floating .button a {
          transition: all .2s ease-in-out;
          cursor: pointer;
          background: linear-gradient(-90deg, #ffbe28 0%, #ff7814 100%);
          color: white;
          text-align: center;
          display: flex;
          align-items: center;
          justify-content: center;
          height: 3em;
          border-radius: 100rem;
          font-weight: 700;
          font-size: 1.4rem;
          letter-spacing: .025em;
          width: fit-content;
          padding: 0 2em;
          border-radius: 0;
          font-size: 4.8vw;
          width: 100%;
          position: relative;
          height: 3.5em; }
          .floating .button a:hover {
            opacity: .7; } }
      @media screen and (max-width: 768px) and (max-width: 768px) {
        .floating .button a:hover {
          opacity: 1; } }
      @media screen and (max-width: 768px) and (max-width: 768px) {
        .floating .button a {
          font-size: 4.3vw;
          height: 4em; } }
  @media screen and (max-width: 768px) {
          .floating .button a::before {
            position: absolute;
            content: "";
            background-image: url("../images/cv_comment-sp.svg");
            background-repeat: no-repeat;
            background-size: contain;
            aspect-ratio: 300 / 79;
            display: block;
            width: 52%;
            left: 3vw;
            top: -9vw;
            filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.2)); } }
        @media screen and (max-width: 768px) and (max-width: 768px) {
          .floating .button a::before {
            filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2)); } }

.thanks__inner {
  width: calc(100vw - 2rem);
  max-width: 1000px;
  margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .thanks__inner {
      width: calc(100vw - 12vw); } }
  .thanks__inner .button a {
    transition: all .2s ease-in-out;
    cursor: pointer;
    background: linear-gradient(-90deg, #ffbe28 0%, #ff7814 100%);
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
    border-radius: 100rem;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: .025em;
    width: fit-content;
    padding: 0 2em;
    margin: 0 auto; }
    .thanks__inner .button a:hover {
      opacity: .7; }
    @media screen and (max-width: 768px) {
      .thanks__inner .button a:hover {
        opacity: 1; } }
    @media screen and (max-width: 768px) {
      .thanks__inner .button a {
        font-size: 4.3vw;
        height: 4em; } }
.thanks__heading {
  background-color: #000000;
  padding: 2em 0;
  color: white;
  letter-spacing: .05em;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center; }
.thanks__text {
  padding: 4rem 0;
  color: #000000;
  line-height: 1.6;
  text-align: left; }
  .thanks__text-item {
    padding: 0 0 4vw; }
    .thanks__text-item:last-child {
      padding: 0; }
  .thanks__text br {
    display: none; }
@media screen and (min-width: 768px) {
  .thanks__text {
    font-size: 1.11rem;
    font-weight: 600;
    text-align: center; }
    .thanks__text-item {
      padding: 0 0 1.5rem; }
      .thanks__text-item:last-child {
        padding: 0; }
    .thanks__text br {
      display: block; } }
