@charset "UTF-8";
/* Variables */
.fs-12 {
  font-size: 0.75rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-16 {
  font-size: 1rem;
}

.fs-18 {
  font-size: 1.125rem;
}

.fs-20 {
  font-size: 1.25rem;
}

.fs-22 {
  font-size: 1.375rem;
}

.fs-24 {
  font-size: 1.5rem;
}

.fs-26 {
  font-size: 1.625rem;
}

.fs-28 {
  font-size: 1.75rem;
}

.fs-32 {
  font-size: 2rem;
}

.fs-33 {
  font-size: 2.0625rem;
}

.fs-34 {
  font-size: 2.125rem;
}

.fs-36 {
  font-size: 2.25rem;
}

.fs-38 {
  font-size: 2.375rem;
}

.fs-40 {
  font-size: 2.5rem;
}

.fs-42 {
  font-size: 2.625rem;
}

.fs-46 {
  font-size: 2.875rem;
}

.fs-60 {
  font-size: 3.75rem;
}

@media (max-width: 768px) {
  .fs-12-sp {
    font-size: 0.75rem;
  }
  .fs-14-sp {
    font-size: 0.875rem;
  }
  .fs-16-sp {
    font-size: 1rem;
  }
  .fs-18-sp {
    font-size: 1.125rem;
  }
  .fs-20-sp {
    font-size: 1.25rem;
  }
  .fs-22-sp {
    font-size: 1.375rem;
  }
  .fs-24-sp {
    font-size: 1.5rem;
  }
  .fs-26-sp {
    font-size: 1.625rem;
  }
  .fs-28-sp {
    font-size: 1.75rem;
  }
  .fs-32-sp {
    font-size: 2rem;
  }
  .fs-33-sp {
    font-size: 2.0625rem;
  }
  .fs-34-sp {
    font-size: 2.125rem;
  }
  .fs-36-sp {
    font-size: 2.25rem;
  }
  .fs-38-sp {
    font-size: 2.375rem;
  }
  .fs-40-sp {
    font-size: 2.5rem;
  }
  .fs-42-sp {
    font-size: 2.625rem;
  }
  .fs-46-sp {
    font-size: 2.875rem;
  }
  .fs-60-sp {
    font-size: 3.75rem;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

ul,
li {
  list-style: none;
}

em {
  font-style: normal;
}

.header {
  display: flex;
  justify-content: space-between;
  position: sticky;
  z-index: 9999;
  width: 100%;
  top: 0;
  background-color: #fff;
  box-shadow: 0px 5px 15px 5px rgba(31, 66, 136, 0.38);
}
@media (min-width: 1025px) {
  .header {
    line-height: 1;
    padding: 20px 30px;
  }
}
@media (max-width: 1024px) {
  .header {
    line-height: 1;
    padding: 10px 20px 10px 15px;
  }
  .header__logo img {
    width: auto;
    height: 30px;
  }
}

@media (min-width: 1025px) {
  .hamburger-icon {
    display: none;
  }
  .menu {
    display: flex;
    height: 100%;
  }
  .menu__list {
    display: flex;
    height: 100%;
    gap: 38px;
  }
  .menu a {
    color: #333333;
    font-weight: 400;
    display: flex;
    height: 100%;
    align-items: center;
  }
  .menu a:hover {
    color: #bc26a5;
  }
  .menu .btn-grad {
    margin-left: 12px;
    border-radius: 5px;
    font-size: inherit;
    padding: 0px 52px;
    font-weight: 500;
    box-shadow: none;
  }
}
@media (max-width: 1024px) {
  /* ハンバーガーアイコン */
  .hamburger-icon {
    display: block;
    cursor: pointer;
    width: 25px;
    height: 16px;
    position: relative;
    z-index: 1001;
  }
  /* ハンバーガーの線 */
  .hamburger-icon span {
    width: 25px;
    height: 2px;
    background: #1843a6;
    transition: all 0.3s;
    position: absolute;
  }
  /* 1本目（上の線） */
  .hamburger-icon span:nth-child(1) {
    top: 0;
    right: -5px;
  }
  /* 2本目（中央の線） */
  .hamburger-icon span:nth-child(2) {
    top: 8px;
    transform: translateY(-50%);
  }
  /* 3本目（下の線） */
  .hamburger-icon span:nth-child(3) {
    top: 14px;
    left: -5px;
  }
  /* フルスクリーンメニュー */
  .menu {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #274e91;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
  }
  .menu.active {
    opacity: 1;
    visibility: visible;
  }
  .menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .menu li {
    margin: 0 0;
    padding: 25px 20px;
    border-bottom: 1px #7a99cf solid;
  }
  .menu li:last-of-type {
    border-bottom: none;
    text-align: center;
    padding-top: 40px;
  }
  .menu a {
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
  }
  .menu .btn-grad {
    display: inline-block;
    background: #fff;
    color: #274e91 !important;
    margin: 0 auto;
    padding: 15px;
    min-width: 200px;
    text-align: center;
  }
  .hamburger-menu {
    align-self: center;
  }
  .hamburger-menu.active .hamburger-icon span:nth-child(1), .hamburger-menu.active .hamburger-icon span:nth-child(3) {
    top: 8px;
    left: 0;
    right: auto;
    opacity: 0;
  }
}
/*  Base */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}
@media (max-width: 768px) {
  html {
    font-size: clamp(16px, 4vw, 20px);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

.text-link {
  color: #4c75bd;
  text-decoration: underline;
}
.text-link:hover {
  color: #3f7eee;
}

.container {
  max-width: 1000px;
  margin-inline: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: content-box;
}
@media (max-width: 768px) {
  .container {
    margin-inline: auto;
    max-width: 768px;
  }
}

/* utility */
.br-sp,
.br-pc {
  display: none;
}

@media (max-width: 768px) {
  .br-sp {
    display: block;
  }
}
@media (min-width: 768px) {
  .br-pc {
    display: block;
  }
}
.align-center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*Color*/
.color-navy {
  color: #274e91;
}

.color-black {
  color: #333333;
}

.color-blue {
  color: #005ca8;
}

.color-purple {
  color: #bc26a5;
}

.bg-gray {
  background-color: #f3f6f9;
}

.bg-blue {
  background-color: #dfe7f7;
}

.gradient-marker {
  background-image: linear-gradient(90deg, #d2d2f8, #c0dbff);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 40%;
  display: inline;
}
@media (max-width: 768px) {
  .gradient-marker {
    background-size: 100% 60%;
  }
}

/* Font */
.fw-bold {
  font-weight: 700;
}

.fw-midium {
  font-weight: 500;
}

/*　Button　*/
.btn-grad {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff !important;
  border-radius: 10px;
  background-image: linear-gradient(to right, #052c92 0%, #457ad5 120%);
  transition: all 0.2s;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  padding: 1.68em 2.727em;
  margin-inline: auto;
  font-weight: 500;
  text-align: center;
  box-shadow: 0px 6px 16px 5px rgba(31, 66, 136, 0.38);
}
.btn-grad:hover {
  color: #fff !important;
  background-image: linear-gradient(to right, #bc26a5 0%, #bc26a5 100%);
}
@media (max-width: 768px) {
  .btn-grad {
    font-size: 18px;
    width: 100%;
    padding: 1.6666666667em 1em;
    box-shadow: 0px 4px 7px 3px rgba(31, 66, 136, 0.38);
  }
}

/* Base */
.section {
  padding-top: clamp(50px, 7.3vw, 110px);
  padding-bottom: clamp(70px, 7.3vw, 110px);
}

.section__h {
  margin-bottom: 1.4285714286em;
  text-align: center;
  line-height: 1.4;
}
.section__h + .section__read {
  margin-top: -8px;
  text-align: center;
}
.section__h span {
  margin-top: 0.5em;
  display: block;
}

/* Margin */
.mt-1em {
  margin-top: 1em;
}

/* ================================
hero headerv
================================*/
@media (min-width: 768px) {
  .main {
    background: url(../img/mv_bg.jpg) no-repeat center top/2500px auto;
  }
}

.mv {
  /* width: 100%;
  height: 57.366vw;
  background: url(../img/mv_pc.jpg) no-repeat center center / cover;
  padding: 40px;
  display: flex;
  align-items: end;
  justify-content: center;
  .btn-grad {
    position: relative;
    top: auto;
    bottom: 0;
    text-align: center;
  }
  @include md {
    padding-bottom: 50px;
  }
  @include sp {
    height: 162vw;
    background: url(../img/mv_sp.jpg) no-repeat center top / contain;
    padding: 0 20px 0;
  } */
  position: relative;
  margin-inline: auto;
  height: 870px;
}
@media (min-width: 768px) {
  .mv__inner img {
    padding-top: 90px;
    margin-left: max(20px, 50% - 652px);
  }
  .mv .btn-grad {
    position: absolute;
    top: 724px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .mv {
    background: url(../img/mv_bg_sp.jpg) no-repeat center top/100% auto;
    height: 162vw;
  }
  .mv__inner {
    margin-left: 4.6vw;
    padding-top: 11.2vw;
  }
  .mv__inner img {
    width: 80vw;
  }
  .mv .btn-grad {
    position: absolute;
    top: 141.3vw;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
  }
}

/* ================================
Intro
================================*/
.intro {
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}
.intro__read {
  font-weight: 700;
}
.intro__case-item {
  flex: 1 1 100%;
  background-color: #274e91;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 18px);
  border-radius: 160px;
  padding: 40px 0;
  line-height: 1.6666666667em;
  position: relative;
}
.intro__case-item em {
  font-size: 1.2222222222em;
}
.intro__case-item::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-top: 16px solid #274e91;
  border-bottom: 0;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .intro__read {
    margin-top: 7%;
  }
  .intro__case {
    margin-top: 40px;
    display: flex;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .intro {
    font-size: 1.125rem;
    margin-top: 3.3333333333em;
  }
  .intro__case {
    margin-top: 30px;
    margin: 30px 18px;
  }
  .intro__case-item {
    padding: 25px 20px;
    font-size: 1rem;
    line-height: 1.625em;
    margin-bottom: 25px;
  }
  .intro__case-item em {
    font-size: 1.25rem;
  }
}
.intro__solution {
  position: relative;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 10%;
  font-size: 1.5rem;
}
.intro__solution-first {
  display: block;
  font-weight: 700;
  font-size: 100%;
  margin-bottom: 25px;
}
.intro__solution-first strong,
.intro__solution-first em {
  font-size: 250%;
  color: #bc26a5;
}
.intro__solution-mid {
  display: block;
  font-size: 83.3333333333%;
  line-height: 1.5em;
  font-weight: 500;
}
.intro__solution-end {
  font-size: 26px;
  font-weight: 700;
}
.intro__solution-end em {
  font-size: 30px;
}
@media (min-width: 768px) {
  .intro__solution {
    margin-top: 1.9166666667em;
  }
  .intro__solution-mid {
    margin-bottom: 1em;
  }
  .intro__solution-img {
    width: 17.9%;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .intro__solution-img img {
    line-height: 1;
    display: block;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .intro__solution {
    display: grid;
    grid-template-columns: 1fr 31.512vw;
    text-align: left;
    width: 100%;
    margin-bottom: 70px;
    font-size: 1.5rem;
    row-gap: 0.9375rem;
    font-feature-settings: "palt";
  }
  .intro__solution-first {
    grid-area: 1/1/2/3;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
  }
  .intro__solution-first strong {
    font-size: 3.75rem;
  }
  .intro__solution-first em {
    font-size: 2.5rem;
  }
  .intro__solution-mid {
    grid-area: 2/1/3/3;
    font-size: 1rem;
  }
  .intro__solution-end {
    font-size: 2.5rem;
    grid-area: 3/1/4/2;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2em;
    align-self: start;
  }
  .intro__solution-end em {
    font-size: 1.625rem;
  }
  .intro__solution-img {
    grid-area: 3/2/4/3;
    align-self: end;
  }
}

/* ================================
Function
================================*/
.function {
  background-color: #f3f6f9;
}
.function__read {
  text-align: center;
  margin-bottom: max(50px, 6%);
}

.point {
  counter-increment: pointCounter;
  padding: 0 var(--pointPaddingH);
  box-sizing: content-box;
  background: #fff;
  margin-bottom: var(--pointPaddingV);
}
@media (min-width: 768px) {
  .point {
    --pointPaddingH: 60px;
    --pointPaddingV: 70px;
  }
}
@media (max-width: 1024px) {
  .point {
    --pointPaddingH: 20px;
    --pointPaddingV: 40px;
  }
}
.point__inner {
  width: 100%;
  max-width: min(100%, 1000px);
  display: flex;
  padding-bottom: var(--pointPaddingV);
}
.point__num {
  font-family: "Oswald", sans-serif;
  width: 180px;
  height: 123px;
  background: #fff url(../img/point_decoration.png) no-repeat right top;
  background-size: auto 100%;
  font-weight: 500;
  color: #7a99cf;
  padding-top: var(--pointPaddingH);
}
.point__num::before {
  content: "POINT";
  margin-right: 0.5em;
}
.point__num::after {
  content: counter(pointCounter, decimal-leading-zero);
  font-size: 2.5em;
}
.point__h {
  margin: 30px 0;
  line-height: 1.3;
  font-feature-settings: "palt";
  word-break: keep-all;
}
.point__body {
  flex: 1 1 50%;
  padding-right: var(--pointPaddingH);
}
.point__body-text em {
  color: #bc26a5;
  font-size: 1.25em;
  font-weight: bold;
}
.point__img {
  padding-top: var(--pointPaddingV);
}
.point__img img {
  margin-inline: auto;
}
.point:nth-of-type(odd) {
  margin-right: max(20px, (100% - 1000px) / 2 - var(--pointPaddingH));
}
.point:nth-of-type(odd) .point__inner {
  margin-left: auto;
  margin-right: 0;
}
.point:nth-of-type(even) {
  margin-left: max(20px, (100% - 1000px) / 2 - var(--pointPaddingH));
}
.point:nth-of-type(even) .point__inner {
  margin-right: auto;
  margin-left: 0;
}
.point:nth-of-type(even) .point__body {
  order: 1;
  padding-right: 0;
  padding-left: var(--pointPaddingH);
}
@media (max-width: 1024px) {
  .point {
    margin-bottom: 20px;
  }
  .point__num {
    width: 100px;
    height: 95px;
    font-size: 14px;
  }
  .point__num::after {
    font-size: 30px;
  }
  .point__inner {
    display: block;
    width: 100%;
  }
  .point__h {
    margin: 0 0 0.8em;
    line-height: 1.5;
  }
  .point__img {
    padding-top: 30px;
  }
  .point:nth-of-type(odd) {
    margin-right: 20px;
  }
  .point:nth-of-type(odd) .point__body {
    padding-right: 0;
  }
  .point:nth-of-type(even) {
    margin-left: 20px;
  }
  .point:nth-of-type(even) .point__body {
    padding-left: 0;
  }
}

.example__h {
  text-align: center;
  margin-top: 8.5%;
  margin-bottom: 6%;
}
@media (max-width: 768px) {
  .example__h {
    margin-top: 3.5625rem;
    margin-bottom: 1.75rem;
  }
}
.example .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: clamp(20px, 3.5vw, 50px);
       column-gap: clamp(20px, 3.5vw, 50px);
  grid-template-rows: auto auto 1fr;
  margin-bottom: 3%;
}
@media (max-width: 768px) {
  .example .card-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 1.875rem;
  }
}
.example .card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  margin-top: 0;
  margin-bottom: 50px;
  background: #274e91;
  border-radius: 10px;
  padding: 40px;
  color: #fff;
}
.example .card .card-icon {
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.example .card .card-icon img {
  position: relative;
  z-index: 2;
}
.example .card .card-header {
  font-weight: 700;
  text-align: center;
}
.example .card .card-header__h {
  margin-top: 0.25em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.example .card .card-body {
  padding: 10px 0 0;
  line-height: 1.6;
  border-top: none;
}
@media (max-width: 768px) {
  .example .card {
    padding: 20px;
    margin-bottom: 20px;
    /* margin-top: rem(35px);
    margin-bottom: rem(20px);
    padding: 0;
    position: relative;
    background-color: #fff;
    .card-icon {
      width: rem(80px);
      margin-top: rem(-56px);
      aspect-ratio: 1 / 1;
      margin-inline: auto;
      border-radius: 50%;
      position: absolute;
      background-color: $color-navy;
      z-index: 0;
      left: 50%;
      transform: translateX(-50%);
      img {
        height: rem(35px);
      }
    }
    .card-body {
      color: $color-black;
      padding: 16px 20px;
      border: 2px #b9c7e0 solid;
      border-top: none;
      border-radius: 0 0 10px 10px;
    }
    .card-header {
      background-color: $color-navy;
      padding: 20px 0 rem(10px) 0;
      border-radius: 10px 10px 0 0;

      &__h {
        display: flex;
        height: 100%;
        align-items: center;
        position: relative;
        z-index: 1;
      }
    } */
  }
  .example .card .card-header {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .example .card .card-header .card-icon img {
    margin-bottom: 5px;
  }
  .example .card .card-header__h {
    line-height: 1.2;
  }
}

/* ================================
Solution
================================*/
.solution {
  background: linear-gradient(117deg, rgb(140, 144, 207) 0%, rgb(101, 135, 194) 51%, rgba(71, 109, 173, 0.99608) 100%);
}
.solution__h {
  text-align: center;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  background: url(../img/icon_solution_00.svg) no-repeat center top;
  background-size: auto 55px;
  padding-top: 55px;
  margin-top: 10px;
  margin-bottom: 60px;
}
.solution__card {
  border-radius: 5px;
  background-color: #fff;
  display: grid;
  grid-template-columns: 85px 1fr;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding: 5% 6% 5.5%;
  margin-bottom: 4%;
}
.solution__card-h {
  color: #274e91;
  font-weight: 700;
}
.solution__card-h::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #7a99cf;
  margin: 0.8333333333em auto;
}
.solution__card-icon {
  grid-row: span 2;
  align-self: center;
}
.solution__card-icon img {
  width: 85px;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}
.solution__card-text p + p {
  margin-top: 1em;
}
.solution__card:nth-of-type(odd) {
  margin-right: 10%;
}
.solution__card:nth-of-type(even) {
  margin-left: 10%;
}
@media (max-width: 768px) {
  .solution__h {
    margin-top: 25px;
    margin-bottom: 2.8125rem;
  }
  .solution__card {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  .solution__card-h {
    text-align: center;
  }
  .solution__card-icon {
    grid-row: 1;
    margin: 20px auto;
  }
  .solution__card:nth-of-type(odd) {
    margin-right: 0;
  }
  .solution__card:nth-of-type(even) {
    margin-left: 0;
  }
}

/* ================================
Movie
================================*/
.movie {
  background: url(../img/movie_bg.png) no-repeat center top/100% auto;
}

.video-wrapper {
  max-width: 960px;
  margin-inline: auto;
}
.video-wrapper video {
  width: 100%;
  height: auto;
}

/* ================================
Flow
================================*/
.flow {
  background-image: linear-gradient(90deg, rgba(240, 240, 255, 0.5019607843) 0%, rgba(228, 240, 255, 0.5019607843) 60%, rgba(216, 239, 255, 0.5019607843) 100%);
}
.flow__list {
  margin-top: 5%;
  position: relative;
}
.flow__list::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 4px;
  background-image: linear-gradient(to bottom, #7292cb 0%, #7292cb 25%, #4c75bd 50%, #355ea5 75%, #264883 100%);
  display: block;
  top: 0;
  left: 48px;
  z-index: 0;
}
.flow__item {
  counter-increment: flowCounter;
  display: flex;
  --stepColor: #7292cb;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.flow__item-header {
  flex: 0 0 95px;
  background-color: var(--stepColor);
  border-radius: 5px 0 0 5px;
  position: relative;
  padding: 30px 20px;
}
.flow__item-header::after {
  content: "";
  display: block;
  background-color: inherit;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  width: 16px;
  height: 100%;
  position: absolute;
  right: -15px;
  top: 0;
}
.flow__item-num {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: #fff;
}
.flow__item-num::before {
  content: "STEP";
  line-height: 1;
  display: block;
}
.flow__item-num::after {
  content: counter(flowCounter, decimal-leading-zero);
  font-size: 2.5em;
  line-height: 1;
}
.flow__item-body {
  flex: 1 1 auto;
  border: 3px var(--stepColor) solid;
  border-left: none;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
  padding-left: 55px;
  padding-right: 40px;
  display: flex;
  align-items: center;
}
.flow__item-body dt {
  font-weight: 700;
  flex: 0 0 9em;
}
.flow__item-body dd {
  margin-left: 40px;
  flex: 1 1 auto;
}
.flow__item:nth-of-type(2) {
  --stepColor: #4c75bd;
}
.flow__item:nth-of-type(3) {
  --stepColor: #355ea5;
}
.flow__item:nth-of-type(4) {
  --stepColor: #264883;
}
.flow__item:nth-of-type(5) {
  --stepColor: #1e3a6a;
}
.flow .btn-wrapper {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .flow__list {
    margin-top: 40px;
  }
  .flow__list::after {
    left: 20px;
  }
  .flow__item-header {
    flex: 0 0 38px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    justify-content: flex-end;
  }
  .flow__item-num {
    align-self: center;
    font-size: 12px;
  }
  .flow__item-num::after {
    font-size: 24px;
  }
  .flow__item-body {
    display: block;
    padding: 20px 20px 20px 30px;
  }
  .flow__item-body dt,
  .flow__item-body dd {
    margin-left: 0;
  }
  .flow__item-body dt {
    margin-bottom: 0.5em;
  }
  .flow .btn-wrapper {
    margin-top: 3.125rem;
  }
}

/* ================================
Plan
================================*/
.plan {
  background-color: #005ca8;
  background-image: linear-gradient(135deg, rgb(36, 108, 173) 0%, rgb(0, 92, 168) 51%, rgb(0, 70, 127) 100%);
  color: #fff;
}
.plan .section__h {
  color: #fff;
}
.plan .price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.plan .price-table-wrap .price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 950px;
  /* 列の背景色 */
  /* エンタープライズだけ文字色変更 */
}
.plan .price-table-wrap .price-table th,
.plan .price-table-wrap .price-table td {
  padding: 20px 10px;
  text-align: center;
  color: #fff;
}
.plan .price-table-wrap .price-table thead th {
  font-size: 18px;
}
.plan .price-table-wrap .price-table tbody th,
.plan .price-table-wrap .price-table tbody td {
  border-top: 2px #ffffff solid;
  font-size: 18px;
}
.plan .price-table-wrap .price-table tbody th .large,
.plan .price-table-wrap .price-table tbody td .large {
  font-size: 24px;
}
.plan .price-table-wrap .price-table tbody td {
  line-height: 1.2;
  width: 19.5%;
}
.plan .price-table-wrap .price-table tbody th {
  font-size: 16px;
  text-align: left;
  white-space: nowrap;
}
.plan .price-table-wrap .price-table sup {
  font-size: 10px;
}
.plan .price-table-wrap .price-table col.col-light {
  background: #0072be;
}
.plan .price-table-wrap .price-table col.col-standard {
  background: #3187c9;
}
.plan .price-table-wrap .price-table col.col-business {
  background: #6593cf;
}
.plan .price-table-wrap .price-table col.col-enterprise {
  background: #d3effd;
}
.plan .price-table-wrap .price-table td:nth-child(5),
.plan .price-table-wrap .price-table th:nth-child(5) {
  color: #014b9e;
  border-color: #005ca8;
}
.plan .price-table-wrap .price-table .note {
  font-size: 14px;
}
.plan .price-table-wrap .price-table .column {
  display: flex;
  width: 100%;
  padding-right: 10px;
}
.plan .price-table-wrap .price-table .column__item {
  flex: 1 1 50%;
}
.plan .price-table-wrap .price-table .column__item span {
  display: block;
}
.plan .price-table-wrap .price-table .column__item:nth-of-type(even) {
  border-left: 1px currentColor solid;
}
.plan .notes {
  margin-top: 1em;
}
@media (max-width: 768px) {
  .plan .price-table-wrap {
    margin-right: -20px;
    padding-right: 20px;
  }
  .plan .price-table th,
  .plan .price-table td {
    width: 190px;
  }
}

/* ================================
Contact
================================*/
.contact {
  background-color: #dfe7f7;
}
.contact__card {
  background-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 77, 141, 0.2);
  padding: 0 20px;
  max-width: 800px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .contact__card .section {
    padding-top: 2.5rem;
  }
}
.contact .att {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  line-height: 1.4;
  padding: 2px 5px;
  margin-left: 8px;
  border-radius: 5px;
  background-color: #d91b32;
}
@media (max-width: 768px) {
  .contact .att {
    font-size: 0.625rem;
  }
}
.contact .form {
  max-width: 620px;
  margin-inline: auto;
  margin-top: 2.5rem;
}

.form-row {
  margin-top: max(4%, 30px);
}
.form-row .field-name {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #385b97;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .form-row .field-name {
    font-size: 1.125rem;
  }
}
.form-row dd.column {
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
.form-row dd + dd {
  margin-top: 1em;
}
@media (max-width: 768px) {
  .form-row dd.column {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
  }
}

.form-check {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 2.5rem;
}
.form-check .checkbox-item {
  margin-bottom: 1.5rem;
}
.form-check p {
  line-height: 1.3;
}

.form-control {
  padding: 15px;
  display: block;
  font-size: 0.875rem;
  width: 100%;
  border-radius: 10px;
  border: 1px #7a99cf solid;
  line-height: 1.5;
}
.form-control::-moz-placeholder {
  color: #ccc;
}
.form-control::placeholder {
  color: #ccc;
}

.radio-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
  font-weight: 500;
}
.radio-item .radio-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border: 2px solid #bac7e2;
  border-radius: 9999px;
  cursor: pointer;
}
.radio-item .radio-button:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  border-radius: 9999px;
  background-color: #4c75bd;
}

.checkbox-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}
.checkbox-item:not(:last-of-type) {
  margin-bottom: 16px;
}
.checkbox-item .checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 25px;
  height: 25px;
  border: 2px solid #bac7e2;
  border-radius: 2px;
  cursor: pointer;
}
.checkbox-item .checkbox:checked {
  background-color: #4c75bd;
}
.checkbox-item .checkbox:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}

.btn-submit {
  background-color: #4c75bd;
  color: #fff;
  font-size: 1rem;
  padding: 0.875em;
  display: block;
  margin-inline: auto;
  margin-top: 3.125em;
  min-width: 140px;
  border-radius: 5px;
  font-weight: 700;
  border: none;
  transition: all 0.2s;
}
.btn-submit:hover {
  background-color: #3f7eee;
}

/* ================================
Footer
================================*/
.footer {
  background: url(../img/footer_bg.jpg) no-repeat center top/100% 100%;
}
.footer__inner {
  padding: 60px 0 50px;
  display: flex;
  gap: 1.875rem;
}
.footer__address {
  font-style: normal;
}
.footer__privacy {
  margin-left: auto;
}
.footer__link {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.footer__link .text-link {
  color: #333333;
}
.footer__link .text-link:hover {
  color: #3f7eee;
}
.footer__copyrights {
  text-align: center;
  font-size: 12px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .footer {
    background: url(../img/footer_bg_sp.jpg) no-repeat right top/100% 100%;
  }
  .footer__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    margin-inline: 20px;
  }
  .footer__logo {
    grid-area: 2/1/3/3;
  }
  .footer__logo img {
    width: 138px;
    height: auto;
  }
  .footer__address {
    grid-area: 3/1/4/3;
  }
  .footer__privacy {
    grid-area: 1/1/2/2;
    margin-left: 0;
  }
  .footer__link {
    grid-area: 1/2/2/3;
  }
  .footer__copyrights {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */