@charset "UTF-8";
/* ==========================================================================
   Remogu by LASSIC - LP
   Breakpoint: 820px (PC: 821px以上 / SP: ~820px以下)
   ========================================================================== */
:root {
  --c-navy: #243674;
  --c-navy-deep: #0e1c38;
  --c-blue: #2d6fdb;
  --c-blue-light: #eaf2fc;
  --c-orange: #f26a22;
  --c-orange-deep: #FB6C11;
  --c-badge: #ff7f2e;
  --c-text: #1c2434;
  --c-text-gray: #5c6472;
  --c-border: #e3e8f0;
  --c-white: #ffffff;
  --font: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--c-text);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background: #F8FBFD url(../images/bg01.png) repeat-y center top;
  border-top: 14px solid var(--c-navy);
}

main {
  overflow-x: hidden;
}

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

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

ul,
ol,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
p,
dl,
dd {
  margin: 0;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
}

.c-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

/* placeholder for photos / illustrations not yet supplied */
.ph-img {
  position: relative;
  background: linear-gradient(135deg, #dbe6f5 0%, #c4d5ee 100%);
  border-radius: 8px;
  overflow: hidden;
  min-height: 120px;
}

.ph-img::after {
  content: attr(data-label);
  position: absolute;
  inset: 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;
  text-align: center;
  padding: 8px;
  font-size: 12px;
  color: #5b6d8c;
  background: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   Common
   ========================================================================== */
.c-heading {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  color: var(--c-navy);
  margin-bottom: 20px;
  line-height: 1.5;
  letter-spacing: 1.53px;
}

.c-heading__sub {
  display: block;
  color: var(--c-text);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 139%;
  letter-spacing: 1.08px;
}

.c-heading__lead {
  margin-bottom: 30px;
  color: var(--c-text);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  -webkit-transition: -webkit-filter 0.15s ease, -webkit-transform 0.15s ease;
  transition: -webkit-filter 0.15s ease, -webkit-transform 0.15s ease;
  transition: filter 0.15s ease, transform 0.15s ease;
  transition: filter 0.15s ease, transform 0.15s ease, -webkit-filter 0.15s ease, -webkit-transform 0.15s ease;
}

.btn-hover:hover {
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
}

.btn-hover:active {
  -webkit-filter: brightness(0.85);
          filter: brightness(0.85);
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.btn--cta {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--c-orange)), to(var(--c-orange-deep)));
  background: linear-gradient(180deg, var(--c-orange) 0%, var(--c-orange-deep) 100%);
  color: var(--c-white);
  -webkit-box-shadow: 0 6px 16px rgba(222, 90, 21, 0.35);
          box-shadow: 0 6px 16px rgba(222, 90, 21, 0.35);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn__badge {
  background: var(--c-white);
  color: var(--c-orange-deep);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 8px;
}

.btn--outline {
  background: var(--c-white);
  color: var(--c-navy);
  border: 1px solid var(--c-navy);
}

/* ==========================================================================
   Header
   ========================================================================== */
.l-header {
  margin: 0 20px;
  position: sticky;
  top: 20px;
  z-index: 100;
  background: var(--c-white);
  border-radius: 11px;
  -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.25);
}

.l-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 6px;
}

.l-header__logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 20px;
}

.l-header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.l-header__nav a {
  font-weight: 600;
  font-size: 14px;
}

.l-header__nav.is-open {
  position: static;
  border: none;
  padding: 0;
}

.l-header__contact {
  min-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--c-orange);
  color: var(--c-white);
  font-weight: 700;
  font-size: 13px;
  padding: 5px 24px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 0 0 #CC3F0D;
          box-shadow: 0 2px 0 0 #CC3F0D;
}

.l-header__menu-btn {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
}

.l-header__menu-btn span {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-navy);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
}

.l-header__menu-btn span:nth-child(1) {
  top: 0;
}

.l-header__menu-btn span:nth-child(2) {
  top: 9.5px;
}

.l-header__menu-btn span:nth-child(3) {
  top: 19px;
}

.l-header__menu-btn.is-open span:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(45deg);
          transform: translateY(11px) rotate(45deg);
}

.l-header__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.l-header__menu-btn.is-open span:nth-child(3) {
  -webkit-transform: translateY(-11px) rotate(-45deg);
          transform: translateY(-11px) rotate(-45deg);
  top: 21px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 20px 0 0;
}

.hero__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.hero__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 55%;
          flex: 1 1 55%;
}

.hero__lead {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px -50vw;
  padding: 0 20px 0 50vw;
  line-height: 38px;
  white-space: nowrap;
  background-color: var(--c-navy);
}
.hero__lead span {
  display: block;
  margin: 0 0 0 auto;
  font-size: 23px;
  max-width: 540px;
}

.hero__title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero__title span {
  display: inline-block;
  font-size: 50px;
}
.hero__title span.is-accent {
  color: var(--c-orange-deep);
}

.hero__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
}
.hero__text span {
  font-size: 11px;
}

.hero__cta-box {
  margin-top: 30px;
  border-radius: 8px;
  border: 2.034px solid var(--c-navy);
  background: var(--c-navy);
  -webkit-box-shadow: 11px 11px 24px 0 rgba(109, 168, 226, 0.25);
          box-shadow: 11px 11px 24px 0 rgba(109, 168, 226, 0.25);
  text-align: center;
}
.hero__cta-box .btn {
  position: relative;
  border-radius: 4px;
  margin: 20px 0;
  padding: 10px 20px 10px 40px;
  background: var(--c-orange);
  -webkit-box-shadow: 0 4px 0 0 rgba(204, 54, 0, 0.95);
          box-shadow: 0 4px 0 0 rgba(204, 54, 0, 0.95);
}
.hero__cta-box .btn .free {
  position: absolute;
  left: -25px;
  top: 0;
}

.hero__cta-note {
  margin-top: -15px;
  text-align: center;
}
.hero__cta-note span {
  display: inline-block;
  color: var(--c-navy);
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  padding: 0 20px;
  background-color: #fff;
  border: 2px solid var(--c-navy);
}

.btn--cta {
  width: auto;
  white-space: nowrap;
}

.hero__visual {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  max-width: 420px;
  margin: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.hero__visual-img {
  position: absolute;
  right: 50%;
  top: 0;
  -webkit-transform: translateX(119%);
          transform: translateX(119%);
  z-index: -1;
  max-width: 500px;
}

/* ==========================================================================
   Problem
   ========================================================================== */
.problem {
  margin: 50px 0;
}
.problem .c-heading-wrap {
  padding-bottom: 30px;
  background: url(../images/mv-problem.png) no-repeat left center;
  background-size: contain;
}
.problem .c-heading-wrap p {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  paint-order: stroke fill;
  text-shadow: -2px -2px 0 var(--c-white), 2px -2px 0 var(--c-white), -2px 2px 0 var(--c-white), 2px 2px 0 var(--c-white);
}
.problem .c-heading {
  line-height: 1;
  margin-bottom: 20px;
  -webkit-text-stroke: 4px var(--c-white);
  paint-order: stroke fill;
  text-shadow: -2px -2px 0 var(--c-white), 2px -2px 0 var(--c-white), -2px 2px 0 var(--c-white), 2px 2px 0 var(--c-white);
}
.problem .c-heading__sub {
  display: inline;
}

.problem__list {
  max-width: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  margin: 0 auto 48px;
}

.problem__item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 50px 8px 30px;
  border-radius: 8px;
  background: #FFF;
  -webkit-box-shadow: 11px 11px 24px 0 rgba(109, 168, 226, 0.25);
          box-shadow: 11px 11px 24px 0 rgba(109, 168, 226, 0.25);
}
.problem__item .icon01 {
  position: absolute;
  left: 50%;
  top: -10px;
  margin-left: -25px;
}
.problem__item .icon02 {
  position: absolute;
  left: 50%;
  bottom: -13px;
  margin-left: -15px;
}
.problem__item > div {
  padding: 0 15px 0;
}

.problem__title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  background-color: var(--c-navy);
}

.problem__subtitle {
  margin: 8px 0;
  padding-bottom: 8px;
  border-bottom: 2px dashed #ccc;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-navy);
}

.problem__text {
  font-size: 14px;
  font-weight: 700;
}

.problem__conclusion {
  padding: 20px;
  border-radius: 8px;
  background: var(--c-navy);
  /* Drop Shadow */
  -webkit-box-shadow: 11px 11px 24px 0 rgba(109, 168, 226, 0.25);
          box-shadow: 11px 11px 24px 0 rgba(109, 168, 226, 0.25);
}
.problem__conclusion p {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.6px;
}
.problem__conclusion span {
  display: block;
  margin-top: 10px;
  color: #FFDD43;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.9px;
}

/* ==========================================================================
   Feature (なぜ速いのか)
   ========================================================================== */
.feature {
  margin: 50px 0;
}

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

.feature__item {
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
  border-radius: 8px;
  /* Drop Shadow */
  -webkit-box-shadow: 11px 11px 24px 0 rgba(109, 168, 226, 0.25);
          box-shadow: 11px 11px 24px 0 rgba(109, 168, 226, 0.25);
  background: #fff url(../images/3point-icon01.svg) no-repeat 97% 8%;
  background-size: 80px;
}
.feature__item:nth-child(2) {
  background-image: url(../images/3point-icon02.svg);
}
.feature__item:nth-child(3) {
  background-image: url(../images/3point-icon03.svg);
}

.feature__photo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-width: 320px;
  margin: 0;
  display: block;
}

.feature__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 55%;
          flex: 1 1 55%;
}

.feature__num {
  color: #C9A961;
  font-size: 26px;
  font-style: normal;
  font-weight: 900;
  line-height: 139%; /* 36.14px */
  letter-spacing: 0.78px;
}

.feature__title {
  margin: 10px 0;
  color: #FFF;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 6.2px;
}
.feature__title span {
  display: inline-block;
  margin-bottom: 5px;
  border-radius: 5px;
  background: var(--c-navy);
  padding: 10px 20px;
}

.feature__text {
  font-size: 14px;
  color: var(--c-text);
  font-weight: 500;
}

/* ==========================================================================
   Case (導入事例)
   ========================================================================== */
.case {
  padding: 50px 0;
  background: url(../images/bg02.png) no-repeat center bottom;
  background-size: cover;
}
.case .c-heading::before {
  content: "";
  height: 50px;
  margin: -25px 0 20px;
  display: block;
  background: url(../images/icon-case.png) no-repeat center top;
  background-size: contain;
}
.case h3 {
  color: var(--c-navy);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.8px;
}

.case__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.case__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: var(--c-white);
  color: var(--c-text);
  border-radius: 12px;
  padding: 24px;
}

.case__label {
  color: #7D92D8;
  margin-bottom: 10px;
  font-family: "Futura PT";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22.1px; /* 122.778% */
  letter-spacing: 1.3px;
}

.case__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.case__def {
  margin: 20px 0;
}
.case__def dt, .case__def dd {
  display: block;
}
.case__def dt {
  color: var(--c-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 22.1px; /* 138.125% */
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #7D92D8;
}
.case__def dt:not(:first-child) {
  margin-top: 20px;
}
.case__def dd {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 22.1px; /* 170% */
}
.case__def dd.point {
  font-size: 14px;
}
.case__def dd .detail {
  margin-top: 16px;
  padding: 16px;
  border-radius: 6px;
  background-color: #F5F7FA;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  border-radius: 4px;
  background: var(--c-navy);
  max-width: 1080px;
  margin: 30px auto;
  padding: 40px 24px;
}
.cta-banner .btn--cta {
  display: block;
  width: 100%;
  max-width: 470px;
  padding: 5px 0;
  margin: 20px auto 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 4px;
  background: #FF6300;
  -webkit-box-shadow: 0 4px 0 0 rgba(204, 54, 0, 0.95);
          box-shadow: 0 4px 0 0 rgba(204, 54, 0, 0.95);
  font-size: 23px;
  font-weight: 900;
}
.cta-banner .btn--cta svg {
  position: absolute;
  left: -50px;
  top: 50%;
  margin-top: -35px;
}

.cta-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 20px;
}

.cta-banner__text {
  color: var(--c-white);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 23.8px; /* 119% */
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 50px 0;
}

.faq__list {
  margin-top: 50px;
  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;
}

.faq__item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  overflow: hidden;
}

.faq__question {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 20px 48px 20px 20px;
  color: var(--c-navy);
  text-align: left;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 25.5px; /* 115.909% */
  letter-spacing: 1.54px;
}

.faq__question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 22px;
  font-size: 20px;
  color: var(--c-navy);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.faq__question[aria-expanded=true]::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq__mark {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  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: 800;
  font-size: 16px;
}

.faq__mark--q {
  background: var(--c-navy);
  color: var(--c-white);
}

.faq__mark--a {
  color: var(--c-white);
  background: #C9A961;
}

.faq__answer {
  display: none;
  margin: 0 20px 0;
  padding: 16px 0;
  gap: 13px;
  color: #1A2332;
  border-top: 1px solid var(--c-navy-deep);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 23.8px; /* 170% */
  letter-spacing: 1.4px;
}

.faq__item.is-open .faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* ==========================================================================
   二次CTA / Contact flow
   ========================================================================== */
.contact {
  padding: 50px 0;
  background: url(../images/bg04.png) no-repeat center bottom;
  background-size: cover;
  color: var(--c-white);
}
.contact .c-heading {
  color: var(--c-white);
}

.contact__cta .btn--cta {
  display: block;
  width: 100%;
  max-width: 470px;
  padding: 5px 0;
  margin: 20px auto 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border-radius: 4px;
  background: #FF6300;
  -webkit-box-shadow: 0 4px 0 0 rgba(204, 54, 0, 0.95);
          box-shadow: 0 4px 0 0 rgba(204, 54, 0, 0.95);
  font-size: 23px;
  font-weight: 900;
}
.contact__cta .btn--cta img {
  position: absolute;
  left: -50px;
  top: 50%;
  margin-top: -42px;
}

.contact__flow {
  margin: 30px 0;
}

.contact__flow-title {
  padding: 10px 0;
  border-radius: 5px 5px 0 0;
  background: var(--c-navy);
  color: var(--c-white);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 43.8px; /* 182.5% */
}

.contact__flow-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;
  gap: 12px;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
}
.contact__flow-list li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  color: var(--c-text);
}
.contact__flow-list h3 {
  color: var(--c-navy);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2; /* 243.333% */
}
.contact__flow-list h3 small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  border-top: 1px solid #C9A961;
  padding-top: 10px;
  margin-top: 10px;
}
.contact__flow-list div img {
  display: block;
  margin: 5px auto 0;
}

.contact__flow-num {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 50%;
  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;
  background-color: var(--c-navy);
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
}

/* ==========================================================================
   LASSIC promo
   ========================================================================== */
.lassic-promo {
  padding: 50px 0;
}
.lassic-promo .c-heading__lead {
  font-size: 19px;
}
.lassic-promo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.lassic-promo ul li {
  color: var(--c-white);
  font-size: 12px;
  border-radius: 5px;
  border: 1px solid #FFF;
  padding: 2px 8px;
}
.lassic-promo .btn--outline {
  margin-top: 20px;
  border-radius: 5px;
  background: #C9A961;
  padding: 5px 20px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.lassic-promo .lassic {
  margin: 50px auto;
  max-width: 830px;
  padding: auto;
}
.lassic-promo .lassic .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 30px;
}
.lassic-promo .lassic p {
  font-weight: 500;
  font-size: 15px;
}
.lassic-promo .company ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.lassic-promo .company ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-radius: 8px;
  background: #FFF;
  /* Drop Shadow */
  -webkit-box-shadow: 11px 11px 24px 0 rgba(109, 168, 226, 0.25);
          box-shadow: 11px 11px 24px 0 rgba(109, 168, 226, 0.25);
}
.lassic-promo .company ul li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lassic-promo .company ul li p {
  color: var(--c-text);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 23.8px; /* 158.667% */
  letter-spacing: 0.3px;
}

.lassic-promo__card {
  padding: 30px;
  background: var(--c-navy);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.lassic-promo__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  aspect-ratio: 16/9;
  border-radius: 5px;
  background: #FFF;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lassic-promo__photo img {
  width: auto;
  height: auto;
}

.lassic-promo__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}

.lassic-promo__logo {
  font-weight: 700;
  color: var(--c-white);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lassic-promo__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: 20px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.l-footer__bottom {
  background: var(--c-navy-deep);
  color: var(--c-white);
  padding: 64px 0 32px;
  font-size: 12px;
}

.l-footer__logo {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.l-footer__services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  margin-bottom: 32px;
}

.l-footer__services li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.l-footer__service-logo {
  display: inline-block;
  height: 28px;
  width: auto;
  background: var(--c-white);
  border-radius: 6px;
  padding: 8px 16px;
  margin: 0 auto 12px;
}

.l-footer__service-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.l-footer__service-text {
  color: #b7c3da;
  margin-bottom: 12px;
}

.l-footer__service-link {
  color: #7fb0ff;
  text-decoration: underline;
}

.l-footer__desc {
  color: #b7c3da;
  margin-bottom: 24px;
}

.l-footer__info {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
  margin-bottom: 24px;
}

.l-footer__info div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 6px 0;
}

.l-footer__info dt {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 60px;
  color: #8fa1c2;
}

.l-footer__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  color: var(--c-navy);
  font-weight: 500;
  font-size: 12px;
}

.l-footer__badges img {
  height: 56px;
  width: auto;
  background: var(--c-white);
  border-radius: 4px;
  padding: 4px;
}

.l-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-align: center;
}

.l-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.l-footer__links a {
  color: #cdd9ee;
}

.l-footer__copyright {
  color: #8fa1c2;
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

/* ==========================================================================
   SP (max-width: 820px)
   ========================================================================== */
@media (max-width: 820px) {
  body {
    font-size: 15px;
  }
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .c-inner {
    padding: 0 20px;
  }
  .c-heading {
    font-size: 30px;
  }
  .c-heading__sub {
    font-size: 20px;
  }
  /* Header */
  .l-header__inner {
    padding: 8px 16px;
  }
  .l-header__logo-img {
    width: 100px;
    height: auto;
  }
  .l-header__logo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__nav.is-open {
    display: block;
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    background: var(--c-white);
    border-radius: 0 0 8px 8px;
    padding: 8px 20px 16px;
    -webkit-box-shadow: 0 6px 7px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 6px 7px 0 rgba(0, 0, 0, 0.25);
  }
  .l-header__nav.is-open ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
  .l-header__nav.is-open a {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid var(--c-border);
    font-weight: 600;
  }
  .l-header__nav.is-open ul li:last-child a {
    padding-bottom: 0;
    border-bottom: none;
  }
  .l-header__contact {
    padding: 5px 10px;
  }
  .l-header__menu-btn {
    display: block;
  }
  /* Hero */
  .hero {
    padding: 40px 0 0;
  }
  .hero__inner {
    display: block;
    padding: 0 20px;
  }
  .hero__title {
    font-size: 20px;
    -webkit-text-stroke: 4px var(--c-white);
    paint-order: stroke fill;
    text-shadow: -2px -2px 0 var(--c-white), 2px -2px 0 var(--c-white), -2px 2px 0 var(--c-white), 2px 2px 0 var(--c-white);
  }
  .hero__title span {
    font-size: 40px;
  }
  .hero__text {
    font-size: 13px;
    -webkit-text-stroke: 4px var(--c-white);
    paint-order: stroke fill;
    text-shadow: -2px -2px 0 var(--c-white), 2px -2px 0 var(--c-white), -2px 2px 0 var(--c-white), 2px 2px 0 var(--c-white);
  }
  .hero__cta-box {
    display: block;
    text-align: center;
    max-width: none;
  }
  .hero__cta-box .btn {
    margin-top: 10px;
  }
  .hero__visual-img {
    -webkit-transform: translateX(90%);
            transform: translateX(90%);
  }
  .hero__lead {
    display: inline-block;
  }
  .hero__lead .sp-only {
    display: none;
  }
  .hero__lead span {
    font-size: 20px;
    margin: 0;
  }
  .hero__cta-note span {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 2px;
  }
  /* Problem */
  .problem__item {
    padding-top: 10px;
  }
  .problem__item .icon01 {
    left: 93%;
    top: 0px;
  }
  .problem__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }
  .problem__conclusion p {
    font-size: 24px;
  }
  .problem__conclusion p span {
    font-size: 16px;
  }
  .problem .c-heading-wrap {
    background-image: none;
  }
  /* Feature */
  .feature__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-image: none !important;
  }
  .feature__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .feature__body > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .feature__body > div img {
    max-height: 200px;
    margin: 0 auto;
  }
  .feature__num {
    font-size: 16px;
  }
  .feature__title {
    font-size: 20px;
  }
  .feature__text {
    width: 100%;
  }
  /* Case */
  .case__lead {
    font-size: 13px;
    margin-bottom: 32px;
  }
  .case__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  /* CTA banner */
  .cta-banner__inner {
    -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;
    text-align: center;
  }
  .cta-banner__text {
    font-size: 16px;
  }
  /* FAQ */
  .faq__question {
    font-size: 14px;
    padding: 16px 48px 16px 16px;
  }
  /* Contact */
  .contact__flow-title {
    font-size: 18px;
    line-height: 24px;
  }
  .contact__flow-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__flow-list li {
    -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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
  .contact__flow-list li:not(:last-child) {
    border-bottom: 1px solid #C9A961;
    padding-bottom: 10px;
  }
  .contact__flow-list li > div:last-child {
    width: 60px;
  }
  .contact__flow-list h3 small {
    padding: 0;
    margin: 5px 0 0;
    border-top: none;
  }
  .contact__flow-list h3 {
    width: 11em;
    font-size: 16px;
    text-align: left;
  }
  /* Lassic promo */
  .lassic-promo {
    padding: 56px 0;
  }
  .lassic-promo ul {
    -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;
  }
  .lassic-promo__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .lassic-promo__photo {
    width: auto;
    aspect-ratio: 16/9;
    -ms-flex-item-align: auto;
        align-self: auto;
  }
  .lassic-promo__body {
    padding: 24px 0 0;
    text-align: center;
  }
  .lassic-promo__body ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .lassic-promo .btn--outline {
    padding: 5px 10px;
  }
  /* Footer */
  .l-footer__services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-footer__bottom {
    -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;
  }
}
.xsp-only {
  display: none;
}

@media (max-width: 480px) {
  .xsp-only {
    display: block;
  }
  .hero__lead {
    line-height: 1.5;
    padding-right: 6px;
    padding-top: 3px;
    padding-bottom: 3px;
  }
  .hero__lead .sp-only {
    display: block;
  }
  .hero__lead span {
    font-size: 14px;
  }
  .hero__title span {
    font-size: 33px;
  }
  .hero__cta-box {
    margin-top: 50px;
  }
  .hero__cta-note span {
    font-size: 14px;
  }
  .hero__visual-img {
    -webkit-transform: translateX(83%);
            transform: translateX(83%);
    height: 510px;
  }
  .c-heading {
    font-size: 26px;
  }
  .feature__body > div:nth-child(2) {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .feature__title {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .feature__title span {
    padding: 8px 10px;
  }
  .cta-banner {
    padding: 24px;
  }
  .cta-banner .btn--cta {
    font-size: 16px;
    padding-left: 15px;
  }
  .cta-banner .btn--cta svg {
    width: 45px;
    left: -15px;
  }
  .contact .c-heading {
    font-size: 22px;
  }
  .lassic-promo .btn--outline {
    font-size: 14px;
  }
  .contact__cta .btn--cta {
    font-size: 3.6vw;
    padding-left: 8px;
  }
  .contact__cta .btn--cta img {
    width: 50px;
    left: -10px;
    margin-top: -26px;
  }
  .problem__conclusion p {
    font-size: 20px;
  }
  .problem__conclusion p br {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */