@charset "UTF-8";
/*============================================================
common
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1rem;
  color: #222;
  /*読み込み時ふわっと表示させる*/
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  /*-webkit-appearance: none;
  -moz-appearance: none;*/
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
a:link, a:visited, a:active {
  color: #222;
}

.sp {
  display: inherit;
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: inherit;
  }
}

.en {
  font-family: "Montserrat", sans-serif;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.inner {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media (min-width: 769px) {
  .inner {
    width: 90%;
    max-width: 1040px;
  }
}

.sec {
  padding: 40px 0;
}

.flex-wrap {
  display: flex;
  justify-content: normal;
  align-items: normal;
  flex-wrap: wrap;
}

.flex-wrap-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.flex-wrap-middle {
  display: flex;
  justify-content: center;
  align-items: normal;
  flex-wrap: wrap;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.head-ttl {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
.head-ttl .en {
  display: block;
  font-size: 3.125rem;
  color: #2d62eb;
  opacity: 0.1;
  margin-bottom: -0.5em;
}

.head-ttl-logo {
  display: inline;
  vertical-align: bottom;
  width: 160px;
  height: 48px;
  margin-right: 4px;
}

.btn {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  background-image: linear-gradient(90deg, #f99116 0, #f97316 100%);
  background-clip: padding-box;
  border-radius: 100vh;
  padding: 18px 60px;
  transition: all 0.3s ease-in-out 0s;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  bottom: auto;
  left: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -4px;
}
.btn:link, .btn:visited, .btn:active {
  color: #fff;
}
.btn:hover {
  opacity: 0.5;
}
@media (min-width: 769px) {
  .btn {
    width: 320px;
    padding: 18px 50px;
  }
}

.btn-download {
  background-color: #fff;
  background-image: none;
  color: #f97316;
  outline: solid 2px #f97316;
  outline-offset: -2px;
}
.btn-download::after {
  border-top: 2px solid #f97316;
  border-right: 2px solid #f97316;
}
.btn-download:link, .btn-download:visited, .btn-download:active {
  color: #f97316;
}
.btn-download span {
  background-color: #f97316;
  color: #fff;
  font-size: 0.8125rem;
  padding: 0 8px;
  margin-right: 5px;
  border-radius: 100vh;
}

.btn-header {
  min-width: 150px;
}
.btn-header::after {
  display: none;
}

@media (min-width: 769px) {
  .sec {
    padding: 70px 0;
  }
  .head-ttl {
    font-size: 2.25rem;
  }
  .head-ttl .en {
    font-size: 7.5rem;
  }
  .head-ttl-logo {
    vertical-align: text-top;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.header-logo img {
  width: 113px;
  height: 34px;
}

.navi .link a:link, .navi .link a:visited, .navi .link a:active {
  color: #222;
}
.navi .btn {
  padding: 12px 20px 12px 20px;
}

#pc-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

#sp-navi {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.3s;
}
#sp-navi ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sp-navi li {
  list-style: none;
  text-align: center;
}
#sp-navi li a {
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#sp-navi li .btn {
  width: 280px;
  padding: 12px 20px 12px 20px;
  margin-top: 10px;
}
#sp-navi li .btn::after {
  right: 20px;
  margin-top: -13px;
}

#sp-navi.panelactive {
  opacity: 1;
  z-index: 999;
}

#sp-navi.panelactive ul {
  display: block;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #2d62eb;
  border-radius: 0 0 4px 4px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media (min-width: 769px) {
  header {
    position: fixed;
    z-index: 100;
  }
  .header-inner {
    height: 70px;
    padding: 0 20px;
  }
  .header-logo img {
    zoom: 1;
  }
  #pc-navi ul {
    font-size: 1.300390117vw;
  }
  #pc-navi ul li {
    margin: 0 5px;
  }
  #pc-navi ul .link {
    margin: 0 15px;
  }
  .navi .btn {
    width: auto;
    font-size: 1.300390117vw;
  }
}
@media (min-width: 1040px) {
  #pc-navi ul {
    font-size: 0.875rem;
  }
  .navi .btn {
    font-size: 0.875rem;
  }
}
#kv {
  position: relative;
  background: url(../img/kv-bg.webp) no-repeat top center/cover;
  padding: 30px 0 0;
  margin-top: 54px;
  z-index: 1;
  background-position: 70% center;
}
#kv .inner {
  position: relative;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  container-type: inline-size;
  padding-bottom: 40px;
}

.kv-header {
  position: relative;
  display: block;
  color: #20397a;
  font-weight: 700;
  text-align: center;
  width: 100cqw;
  align-self: center;
  margin-bottom: clamp(8px, 6px + 2cqw, 30px);
  font-size: clamp(1.75rem, 1.25rem + 5cqw, 3.25rem);
}

.kv-header-line {
  height: 2px;
  background: linear-gradient(
		-90deg,
		#fff 0%,
		#fff 70%,
		transparent 100%
	);
  position: absolute;
  width: 15cqw;
  top: 50%;
  left: 0;
}

.kv-header-line:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2cqw;
  height: 2cqw;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.kv-header-line-r {
  right: 0;
  left: auto;
  background: linear-gradient(90deg, #fff 0%, #fff 70%, transparent 100%);
}

.kv-header-line-r::after {
  right: auto;
  left: 0;
}

.kv-title {
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(2.25rem, 1.25rem + 8cqw, 4rem);
  color:#20397a;
  position: relative;
  letter-spacing: 0.06em;
  margin-bottom: .5em;
  width: 100%;
  padding-left: 5cqw;
  padding-right: 5cqw;
  text-align: center;
}

.kv-title:before {
  background-image: url(../img/deco-l.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  width: 66px;
  height: 150px;
  top: 68%;
  left: -10px;
  transform: translate(0%, -50%);
  scale: 1;
}

.kv-title:after {
  background-image: url(../img/deco-r.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  width: 66px;
  height: 150px;
  top: 68%;
  right: -10px;
  transform: translate(0%, -50%);
  scale: 1;
}

.kv-title-line-1 {
  /* margin-left: 0.2em; */
}

.kv-highlight {
  color: #c6a13b;
}

.kv-no1 {
  display: block;
  position: relative;
  font-size: 1.1em;
  letter-spacing: 0.01em;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

.kv-no1-no {
  filter: drop-shadow(.06em .06em 0 #9db1cd);
}

.kv-no1-num {
  display: inline-block;
  font-size: 2em;
  line-height: 1;
  filter: drop-shadow(.05em .05em 0 #9db1cd);
}

.kv-no1-crown {
  display: none;
  background-image: url(../img/crown.svg);
  top: -150px;
  right: -60px;
  content: "";
  position: absolute;
  width: 213px;
  height: 150px;
  scale: .3;
}

.kv-no1 span.kv-no1-note {
  display: inline-block;
  position: absolute;
  bottom: .2em;
  right: -1em;
  font-size: 0.5em;
  filter: drop-shadow(.06em .06em 0 #9db1cd);
}

.kv-title-border {
  display: none;
  position: absolute;
  bottom: -0.3em;
  left: 5cqw;
  width: 80cqw;
  height: 1px;
  background-color: #2d62eb;
}

.kv-desc {
  font-size: clamp(1rem, 0.75rem + 2.5cqw, 2rem);
  color: #20397a;
  margin-bottom: 2.25em;
  font-weight: 700;
  align-self: flex-start;
  padding-left: 5cqw;
  width: 100%;
  text-align: center;
}

.kv-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  align-self: flex-start;
  gap: 12px;
}

.kv-points li {
  background: linear-gradient(180deg, #fff 0%, #fffff3 100%);
  border-radius: 16px;
  font-size: clamp(0.875rem, 0.75rem + 1.5cqw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 700;
  color: #20397a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding-top: 1em;
  line-height: 1.3;
}

.kv-points li:before {
  display: none;
  background-image: url(../img/deco-l.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  width: 66px;
  height: 150px;
  scale: .75;
  top: 43%;
  left: -1%;
  transform: translateY(-50%);
}

.kv-points li:after {
  display: none;
  background-image: url(../img/deco-r.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  width: 66px;
  height: 150px;
  scale: .75;
  top: 43%;
  right: -1%;
  transform: translateY(-50%);
}

.kv-points figure {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3em;
  height: 3em;
  background-color: #2b47a6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.45em;
}

.kv-points img {
  width: 100%;
  height: auto;
}

.kv-points li p {
  padding: 1em;
  text-align: center;
  font-weight: 700;
}

.kv-points p span:not(.kv-small) {
  display: block;
  font-size: 2.25em;
  line-height: 1;
}

.kv-small {
  display: inline-block;
  margin-left: .1em;
  font-size: .5em;
}

.kv-footer {
  background-color: #233e85;
}

.kv-footer-inner {
  padding: .875rem;
  max-width: 1200px;
  margin: auto;
}

.kv-footer ul {
  display: flex;
  flex-direction: column;
}

.kv-footer li {
  font-size: .75rem;
  color: #fff;
  margin-bottom: .25rem;
}

.kv-cta-wrap {
  margin: 20px auto 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
}

.kv-cta-wrap .btn-block {
  width: 100%;
}

.kv-cta-wrap .btn-lead {
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 0.5em;
}

.kv-cta-wrap .btn {
  padding-left: 16px;
  padding-right: 16px;
}

.kv-cta-wrap .btn::after {
  right: 24px;
  transform: rotate(45deg) translateY(2px);
}

@media (min-width: 430px) {
  .kv-title:before {
    scale: 1.3;
  }

  .kv-title:after {
    scale: 1.3;
  }

  .kv-header {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .kv-title {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .kv-points p span:not(.kv-small) {
    font-size: 2.5em;
  }
}

@media (min-width: 600px) {
  .kv-points li:before {
    display: block;
  }

  .kv-points li:after {
    display: block;
  }
}

@media (min-width: 769px) {
  #kv .inner {
    width: 100%;
  }

  .kv-header {
    width: 80cqw;
    max-width: 100%;
    font-size: clamp(1.75rem, 1.25rem + 5cqw, 3.25rem);
    margin-left: 0;
    margin-right: 0;
  }

  .kv-title {
    max-width: 100%;
    font-size: clamp(2.25rem, 1.25rem + 8.5cqw, 5rem);
  }

  .kv-points li:before {
    display: none;
  }

  .kv-points li:after {
    display: none;
  }

  .kv-footer li {
    font-size: 1rem;
  }
}

@media (min-width: 1040px) {
  .kv-title:before {
    top: 68%;
    left: 0;
    transform: translate(0%, -50%);
    scale: 1.4;
  }

  .kv-title:after {
    top: 68%;
    right: 0;
    transform: translate(0%, -50%);
    scale: 1.4;
  }

  .kv-points li:before {
    display: block;
  }

  .kv-points li:after {
    display: block;
  }
}

@media (min-width: 1220px) {
  #kv .inner {
    width: 90%;
  }

  .kv-header {
    align-self: flex-start;
  }

  .kv-title {
    text-align: left;
  }

  .kv-title:before {
    top: 68%;
    left: 0;
    transform: translate(-50%, -50%);
    scale: 1.2;
  }

  .kv-title:after {
    top: 68%;
    right: 0;
    transform: translate(20%, -50%);
    scale: 1.2;
  }

  .kv-no1 {
    display: inline-block;
    text-align: left;
  }

  .kv-no1-num {
    line-height: 0;
  }

  .kv-no1-crown {
    display: block;
  }

  .kv-title-border {
    display: block;
  }

  .kv-title-line-1 {
    margin-left: 0.4em;
  }

  .kv-desc {
    text-align: left;
  }

  .kv-points {
    width: 90cqw;
  }

  .kv-points li:before {
    scale: .6;
    top: 43%;
    left: -3%;
    transform: translateY(-50%);
  }

  .kv-points li:after {
    scale: .6;
    top: 43%;
    right: -3%;
    transform: translateY(-50%);
  }
}

@media (min-width: 1340px) {
  .kv-no1-crown {
    top: -160px;
    right: -55px;
  }
}

/* KV layout */
.kv-layout {
  display: flex;
  gap: 40px;
  align-items: center;
}
.kv-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  container-type: inline-size;
}
.kv-right {
  position: relative;
  width: 420px;
  flex-shrink: 0;
}
.kv-right .kv-form-box {
  position: relative;
  z-index: 1;
}
.kv-form-box {
  background: #fff;
  border-radius: 20px;
  padding: 12px 16px 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.kv-form-box .contact-group {
  margin-bottom: 8px;
}
.kv-form-box .contact-label {
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.kv-form-box .contact-input {
  height: 36px;
  font-size: 0.875rem;
  padding: 6px 12px;
}
.kv-form-box textarea.contact-input {
  height: 70px;
}
.kv-form-box .agree {
  font-size: 0.75rem;
  margin: 16px auto 12px;
}
.kv-form-box .contact-btn {
  font-size: 0.9375rem;
  padding: 14px 40px;
}
.kv-form-ttl {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

@media (min-width: 769px) {
  #kv {
    padding: 40px 0 0px;
    margin-top: 70px;
  }

  .kv-layout {
    gap: 16px;
  }

  .kv-right {
    width: 350px;
  }
}

@media (min-width: 1040px) {
  .kv-layout {
    gap: 24px;
  }

  .kv-right {
    width: 380px;
  }
}
@media (min-width: 1220px) {
  .kv-layout {
    gap: 40px;
  }

  .kv-right {
    width: 420px;
  }
}


#logos {
  padding: 30px 0;
}
#logos .head-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.25rem;
}

.logos-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.logos-slider-wrap ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 20px;
}
.logos-slider-wrap li {
  flex-shrink: 0;
}
.logos-slider-wrap li img {
  height: 70px;
  width: auto;
}

.logos-slider {
  position: relative;
  display: flex;
  width: -moz-max-content;
  width: max-content;
}

#case .head-ttl .en {
  margin-bottom: -0.65em;
}
#case .subtxt {
  display: block;
  font-size: 1rem;
}

.case-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.case-list li h3 {
  display: inline-block;
  background-color: #2d62eb;
  color: #fff;
  padding: 5px 20px;
  border-radius: 10px 10px 0 0;
}

.case-box {
  border: solid 2px #2d62eb;
  padding: 30px;
  border-radius: 0 5px 5px 5px;
  height: 95%;
}

.case-box-inner {
  display: flex;
  justify-content: normal;
  align-items: center;
  margin-bottom: 30px;
}

.case-img {
  width: 120px;
  height: 120px;
  margin-right: 10px;
  display: flex;
}

.case-name {
  font-weight: 700;
  margin-bottom: 0.5em;
}

.case-info {
  font-size: 0.875rem;
}
.case-info span {
  font-weight: 700;
}

.case-logo {
  display: inline;
  vertical-align: bottom;
  width: 94px;
  height: 28px;
  margin: 0 4px;
}

.case-before {
  background-color: #f5f5f5;
  padding: 20px 0 20px 24px;
  border-radius: 5px;
}
.case-before h4 {
  font-size: 1.125rem;
  color: #2d62eb;
  margin-bottom: 0.5em;
}
.case-before p {
  font-size: 0.9375rem;
  margin-bottom: 5px;
}
.case-before .strong {
  font-weight: 700;
}

.case-arr {
  position: relative;
  text-align: center;
  font-weight: 700;
  margin: 10px 0 20px;
}
.case-arr::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  width: 17px;
  height: 10px;
  background-image: url(../img/icon-arr2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.case-after {
  background-color: #fef5d0;
  padding: 20px 30px;
  border-radius: 5px;
}
.case-after h4 {
  font-size: 1.125rem;
  color: #f97316;
  margin-bottom: 0.5em;
}
.case-after p {
  font-weight: 700;
  line-height: 1.2;
  padding: 6px 0 6px 32px;
  background: url(../img/icon-check.svg) no-repeat left center/28px;
}
.case-after .strong {
  font-size: 1.25rem;
  color: #f97316;
}

@media (min-width: 769px) {
  .case-list {
    display: flex;
    justify-content: stretch;
    align-items: normal;
  }
  .case-list li {
    width: 48%;
  }
}
.cta {
  background: url(../img/cta-bg.webp) no-repeat top center/cover;
  padding: 60px 0;
}
.cta .head-ttl {
  color: #fff;
  font-size: 1.75rem;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  padding: 0 0 30px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}
.cta-box p {
  text-align: center;
  margin: 10px 0;
}
.cta-box figure {
  margin: 0 0 15px;
}

.cta-box-ttl {
  width: 100%;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  background-color: #fce58a;
  padding: 0.8em 0;
  border-radius: 5px 5px 0 0;
}

.cta-box-contact-ttl {
  background-color: #fcb98a;
}

.cta-logo {
  display: inline;
  width: 94px;
  height: 28px;
  margin: 0 4px;
}

.cta-download-img {
  position: relative;
}

.cta-download-img > img:nth-child(2) {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 58%;
}

@media (min-width: 769px) {
  .cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: normal;
  }
  .cta-box {
    width: 48%;
  }
}
#about {
  padding-bottom: 0;
}
#about .txt h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
#about .flex-wrap-center {
  flex-direction: column-reverse;
}
#about .flex-wrap-center figure {
  margin-top: 20px;
}
#about .flex-wrap-center figure img {
  width: 80%;
}

.scout {
  background-color: #f5f5f5;
  margin-top: 60px;
}
.scout h3 {
  text-align: center;
  color: #2d62eb;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.scout h3 span {
  border-bottom: solid 2px #2d62eb;
}
.scout .intro {
  text-align: center;
  font-weight: 700;
}

.scout-list {
  gap: 40px;
  margin: 50px 0 70px;
}
.scout-list li {
  position: relative;
  width: 100%;
  text-align: center;
  background-color: #fff;
  padding-bottom: 10px;
  border-radius: 5px;
}
.scout-list li::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  left: 0;
  width: 30px;
  height: 18px;
  background-image: url(../img/icon-arr2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.scout-list li:first-child {
  padding-bottom: 0;
}
.scout-list li:last-child::after {
  display: none;
}
.scout-list li h4 {
  background-color: #2d62eb;
  color: #fff;
  padding: 0.6em 0;
  border-radius: 5px 5px 0 0;
}
.scout-list li p {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 1em 0;
}

.scout-sample-ttl {
  position: relative;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 60px;
}
.scout-sample-ttl::after {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -20px;
  border-bottom: solid 2px #2d62eb;
  width: 30px;
}

.scout-pr-box, .scout-ai-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}
.scout-pr-box h5, .scout-ai-box h5 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.scout-pr-box p, .scout-ai-box p {
  line-height: 1.8;
}

.scout-pr-box {
  position: relative;
  margin-bottom: 90px;
}
.scout-pr-box::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
  width: 100px;
  height: 50px;
  background-image: url(../img/icon-arr2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.scout-ai-box {
  border: solid 2px #2d62eb;
}
.scout-ai-box h5 {
  padding-bottom: 1em;
  border-bottom: solid 1px #2d62eb;
}
.scout-ai-box h5 span {
  display: block;
  color: #2d62eb;
  font-size: 0.875rem;
}

.maker-blue {
  background-color: #eff2fd;
  color: #2d62eb;
  font-weight: 700;
}

@media (min-width: 769px) {
  #about .txt {
    width: 51%;
    margin-left: 40px;
  }
  #about .txt h3 {
    margin-top: 0;
  }
  #about .flex-wrap-center {
    flex-direction: row;
  }
  #about .flex-wrap-center figure {
    margin-top: 0;
  }
  #about .flex-wrap-center figure img {
    width: 100%;
  }
  .scout h3 {
    font-size: 2.25rem;
  }
  .scout-list li {
    width: 22%;
    max-width: 220px;
    padding-bottom: 0;
  }
  .scout-list li::after {
    top: 50%;
    left: auto;
    right: -36px;
    width: 30px;
    height: 18px;
    transform: rotate(-90deg);
  }
  .scout-pr-box, .scout-ai-box {
    padding: 40px 50px;
  }
}
.point-list li {
  margin: 0 0 40px;
}
.point-list li h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.point-list li h3 span {
  display: block;
  font-size: 5rem;
  color: #eff2fd;
  margin-bottom: -0.5em;
}
.point-list .desc {
  line-height: 1.8;
}

@media (min-width: 769px) {
  .point-list li h3 {
    font-size: 1.75rem;
  }
  .point-list li .txt {
    width: 48%;
    margin-right: 40px;
    margin-bottom: 0;
  }
}
#flow .intro {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}
#flow .maker {
  background: linear-gradient(transparent 60%, #facc15 60%);
}

.flow-item {
  position: relative;
  margin: 0 50px 50px;
}
.flow-item::after {
  content: "";
  position: absolute;
  bottom: -31px;
  left: 0;
  right: 0;
  width: 31px;
  height: 16px;
  background-image: url("../img/icon-arr.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  margin: 0 auto;
}
.flow-item:last-child::after {
  display: none;
}
.flow-item p {
  text-align: center;
  font-weight: 700;
  margin-top: 0.2em;
}

@media (min-width: 769px) {
  .flow-item {
    margin: 0 50px;
  }
  .flow-item::after {
    content: "";
    top: 40%;
    left: auto;
    bottom: auto;
    right: -62px;
    width: 31px;
    height: 16px;
    transform: rotate(0deg);
  }
}
#faq {
  background-color: #f5f5f5;
}

.faq-box {
  width: 96%;
  max-width: 800px;
  margin: 60px auto 0;
}

.accordion {
  margin-bottom: 15px;
}

.toggle {
  display: none;
}

.accordion-ttl {
  display: block;
  position: relative;
  text-align: left;
  color: #2d62eb;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4rem;
  background: #fff;
  padding: 10px 50px 10px 10px;
  cursor: pointer;
  transition-duration: 0.2s;
  border-radius: 5px;
}
.accordion-ttl p {
  display: flex;
  align-items: center;
}
.accordion-ttl span {
  display: inline-block;
  text-align: center;
  color: #2d62eb;
  font-size: 2.625rem;
  line-height: 4rem;
  font-family: "Montserrat", sans-serif;
  margin-right: 20px;
}
.accordion-ttl::before, .accordion-ttl::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #2d62eb;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.accordion-ttl::before {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.accordion-ttl,
.accordion-txt {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion-txt {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.accordion-txt .answer {
  display: inline-block;
  text-align: center;
  color: #f97316;
  font-size: 2.625rem;
  font-family: "Montserrat", sans-serif;
  margin-right: 20px;
  margin-top: 10px;
}
.accordion-txt p {
  display: flex;
  align-items: center;
}

.toggle:checked + .accordion-ttl + .accordion-txt {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}

.toggle:checked + .accordion-ttl::before {
  transform: translateY(-50%) rotate(0);
}

@media (min-width: 769px) {
  .accordion-ttl {
    font-size: 1.125rem;
    padding: 0 66px 0 15px;
  }
  .accordion-txt {
    font-size: 1rem;
  }
}
#company {
  padding: 60px 0;
}
#company .flex-wrap-center {
  gap: 20px;
}
#company .name, #company .add {
  font-size: 0.875rem;
}
#company .name {
  font-weight: 700;
}

@media (min-width: 769px) {
  #company figure {
    margin-right: 10px;
  }
}
/*============================================================
form
==============================================================*/
#form {
  background: url(../img/contact-bg.webp) no-repeat top center/cover;
}
#form .head-ttl {
  color: #fff;
}
#form .head-ttl .en {
  color: #fff;
}

.download {
  margin-top: 50px;
}
.download .intro, .download .caution {
  text-align: center;
  color: #fff;
}
.download .caution {
  font-size: 0.75rem;
  margin: 20px 0;
}

.form-box {
  max-width: 800px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px 20px;
  margin: 0 auto;
}

.download-box {
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: normal;
  flex-wrap: wrap;
  gap: 40px;
}

.download-txt {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
}
.download-txt h3 {
  font-weight: 700;
  margin-bottom: 0.5em;
}

.contact-group {
  margin-bottom: 20px;
}
.contact-group textarea {
  height: 100px;
}

.contact-label {
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-req {
  font-size: 0.5rem;
  padding: 2px 9px 3px;
  border-radius: 100vh;
  margin-left: 8px;
}

.contact-req {
  color: #fff;
  background: #2d62eb;
}

.contact-note {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 6px;
  margin-left: 2px;
}

.contact-input {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 8px 16px 8px;
  border: 1px solid #cfd0cc;
  border-radius: 5px;
}

.agree {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 30px auto;
}
.agree a {
  text-decoration: underline;
}
.agree a:link, .agree a:visited, .agree a:active {
  color: #222;
}

.contact-action {
  text-align: center;
}

.contact-btn {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  width: auto;
  border: none;
}
.contact-btn:hover {
  transition: all 0.2s ease-in-out 0s;
  opacity: 0.5;
}

h6.error {
  color: #ff753b;
}

.form-box input[type=text].error, .form-box input[type=email].error, .form-box select.error {
  background: #FCE6E6 !important;
  border: solid 1px #ff753b;
}

@media (min-width: 769px) {
  .download {
    margin-top: 70px;
  }
  .form-box {
    padding: 40px 100px 20px;
  }
  .contact-note {
    display: inline;
    font-size: 0.875rem;
    margin-left: 16px;
  }
}
#thanks {
  margin-top: 70px;
}
#thanks .txt-box {
  text-align: center;
  margin: 40px 0;
}
#thanks .btn-wrap {
  margin-top: 50px;
}

footer {
  font-size: 0.625rem;
  color: #fff;
  background: #222;
  text-align: center;
  padding: 40px 0;
}/*# sourceMappingURL=style.css.map */

.trouble {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
}
.trouble .inner,
.functions .inner {
  position: relative;
  z-index: 1;
}
.trouble .head-ttl .en,
.functions .head-ttl .en {
  margin-bottom: -0.6em;
}
.trouble .intro,
.functions .intro {
  text-align: center;
  font-weight: 700;
  line-height: 1.9;
  margin: -10px auto 36px;
}
.simple-check-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.simple-check-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  background-color: #fff;
  border: solid 1px #dfe6ff;
  border-left: solid 6px #2d62eb;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(45, 98, 235, 0.07);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  padding: 16px 20px 16px 54px;
}
.simple-check-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 22px;
  height: 22px;
  background: url(../img/icon-check.svg) no-repeat center / contain;
  transform: translateY(-50%);
}
.trouble-solution {
  position: relative;
  text-align: center;
  background-color: #2d62eb;
  color: #fff;
  padding: 30px 20px;
  margin: 44px auto 0;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(45, 98, 235, 0.24);
  max-width: 980px;
}
.trouble-solution::before {
  content: "";
  position: absolute;
  top: -36px;
  left: 50%;
  width: 64px;
  height: 32px;
  background-image: url(../img/icon-arr2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-50%);
}
.trouble-solution h3 {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 0.55em;
}
.trouble-solution p {
  line-height: 1.85;
  font-weight: 700;
}

@media (min-width: 769px) {
  .sp_disp { display:none; }

  .cta_sec {
    display: flex;
    justify-content: center;
    margin-right: -30px;
  }

  .cta_sec a {
    display: block;
    position: relative;
    width: 100%;
    transition: .3s ease-in-out;
  }

  .cta_sec a:hover {
    transform: translateY(5px);
    opacity: 1;
  }

  .cta_sec .btn_contact {
    width: 670px;
  }

  .cta_sec .btn_contact a {
    height: 210px;
    background: url(../img/btn_contact_bg_pc.png) center top no-repeat;
  }

  .cta_sec .btn_contact .limit dt {
    position: absolute;
    top: 20px;
    left: 135px;
    font-size: calc(1.4rem * 0.625);
    font-weight: 500;
    color: #fff;
    line-height: 28px;
  }

  .cta_sec .btn_contact .limit dd {
    position: absolute;
    top: 50px;
    left: 80px;
    font-size: calc(2.5rem * 0.625);
    font-weight: 900;
    color: #493b01;
    line-height: 1;
  }

  .cta_sec .btn_contact .limit dd .en {
    vertical-align: -3px;
    font-size: calc(4.2rem * 0.625);
    font-weight: 700;
  }

  .cta_sec .btn_contact .limit dd .sub { margin:0 2px; font-size:calc(2rem * 0.625); }

  .cta_sec .btn_contact .catch {
    position: absolute;
    top: 40px;
    left: 210px;
    font-size: calc(1.4rem * 0.625);
    font-weight: 700;
    color: #493b01;
    line-height: 1.45;
  }

  .cta_sec .btn_contact .catch .strong {
    font-size: calc(2rem * 0.625);
    font-weight: 900;
    color: #f97916;
  }

  .cta_sec .btn_contact .btn_txt {
    position: absolute;
    top: 135px;
    left: 90px;
    font-size: calc(2.6rem * 0.625);
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }

  .cta_sec .btn_contact .btn_txt .dialine {
    display: inline-block;
    position: relative;
    margin-right: 20px;
    padding: 0 20px;
    vertical-align: 2px;
    font-size: calc(2rem * 0.625);
  }

  .cta_sec .btn_contact .btn_txt .dialine::before, .cta_sec .btn_contact .btn_txt .dialine::after {
    content: '';
    position: absolute;
    top: -8px;
    width: 2px;
    height: 40px;
    background: #fff;
  }

  .cta_sec .btn_contact .btn_txt .dialine::before {
    left: 0;
    transform: rotate(-30deg);
  }

  .cta_sec .btn_contact .btn_txt .dialine::after {
    right: 0;
    transform: rotate(30deg);
  }

  #fixed_btn {
    display: none !important;
    position: fixed;
    bottom: 20px;
    left: 50%;
    width: 670px;
    margin-left: -320px;
    z-index: 100;
  }

  .trouble .intro,
  .functions .intro {
    margin-bottom: 42px;
  }
  .simple-check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
  }
  .simple-check-list li {
    min-height: 74px;
    font-size: 1.0625rem;
    padding: 18px 24px 18px 58px;
  }
  .trouble-solution {
    padding: 34px 40px;
    margin-top: 58px;
  }
  .trouble-solution h3 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px){
  .cta_sec {
    width: 100%;
  }

  .cta_sec a {
    display: block;
    position: relative;
  }

  .cta_sec .btn_contact {
    width: 100%;
  }

  .cta_sec .btn_contact a {
    height: calc((100vw / 375) * 140);
    background: url(../img/btn_contact_bg_sp.png) center top / 100% no-repeat;
  }

  .cta_sec .btn_contact .limit dt {
    position: absolute;
    top: calc((100vw / 375) * 15);
    left: calc((100vw / 375) * 65);
    font-size: calc((100vw / 375) * 10);
    font-weight: 500;
    color: #fff;
    line-height: calc((100vw / 375) * 20);
  }

  .cta_sec .btn_contact .limit dd {
    position: absolute;
    top: calc((100vw / 375) * 40);
    left: calc((100vw / 375) * 25);
    font-size: calc((100vw / 375) * 18);
    font-weight: 900;
    color: #493b01;
    line-height: 1;
  }

  .cta_sec .btn_contact .limit dd .en {
    vertical-align: calc((100vw / 375) * -3);
    font-size: calc((100vw / 375) * 30);
    font-weight: 700;
  }

  .cta_sec .btn_contact .limit dd .sub { margin:0 1px; font-size:calc((100vw / 375) * 14); }

  .cta_sec .btn_contact .catch {
    position: absolute;
    top: calc((100vw / 375) * 22);
    left: calc((100vw / 375) * 115);
    font-size: calc((100vw / 375) * 10);
    font-weight: 700;
    color: #493b01;
    line-height: 1.45;
  }

  .cta_sec .btn_contact .catch .strong {
    font-size: calc((100vw / 375) * 14);
    font-weight: 900;
    color: #f97916;
  }

  .cta_sec .btn_contact .btn_txt {
    position: absolute;
    top: calc((100vw / 375) * 72);
    left: 0;
    width: 100%;
    text-align: center;
    font-size: calc((100vw / 375) * 20);
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }

  .cta_sec .btn_contact .btn_txt .dialine {
    display: inline-block;
    position: relative;
    margin-bottom: calc((100vw / 375) * 10);
    padding: 0 calc((100vw / 375) * 15);
    font-size: calc((100vw / 375) * 12);
  }

  .cta_sec .btn_contact .btn_txt .dialine::before, .cta_sec .btn_contact .btn_txt .dialine::after {
    content: '';
    position: absolute;
    top: calc((100vw / 375) * -4);
    width: 1px;
    height: calc((100vw / 375) * 20);
    background: #fff;
  }

  .cta_sec .btn_contact .btn_txt .dialine::before {
    left: 0;
    transform: rotate(-30deg);
  }

  .cta_sec .btn_contact .btn_txt .dialine::after {
    right: 0;
    transform: rotate(30deg);
  }

  #fixed_btn {
    display: none;
    position: fixed;
    bottom: calc((100vw / 375) * 10);
    left: 0;
    width: 100%;
    z-index: 100;
  }
}

.industry.sec {
  background: linear-gradient(180deg, #fff 0%, #f6faff 100%);
  padding: 92px 0 96px;
}

.industry .intro {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
  color: #2d466d;
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 700;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-list li {
  position: relative;
  background: #fff;
  border: 1px solid #dce8ff;
  border-radius: 28px;
  padding: 30px 24px 28px;
  box-shadow: 0 16px 36px rgba(23, 54, 110, .08);
  overflow: hidden;
}

.industry-list li:before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 212, 82, .32), rgba(255, 255, 255, 0) 68%);
}

.industry-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, #174fb8, #2d6cff);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 10px 22px rgba(23, 79, 184, .22);
  margin-bottom: 18px;
}

.industry-list h3 {
  margin: 0 0 14px;
  color: #1245a8;
  font-size: 1.18rem;
  line-height: 1.55;
  font-weight: 900;
}

.industry-list p {
  margin: 0;
  color: #27384f;
  font-size: .98rem;
  line-height: 1.9;
  font-weight: 700;
}

.industry-note {
  margin: 28px auto 0;
  max-width: 850px;
  padding: 16px 22px;
  border-radius: 999px;
  background: #fff8d8;
  border: 1px solid #f0db8e;
  color: #27384f;
  text-align: center;
  font-size: .92rem;
  line-height: 1.7;
  font-weight: 800;
}

@media (max-width: 900px) {
  .industry.sec {
    padding: 64px 0 68px;
  }

  .industry .intro {
    margin-bottom: 24px;
    font-size: .96rem;
    text-align: left;
  }

  .industry-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-list li {
    padding: 24px 18px 22px;
    border-radius: 24px;
  }

  .industry-list h3 {
    font-size: 1.05rem;
  }

  .industry-list p {
    font-size: .94rem;
    line-height: 1.8;
  }

  .industry-note {
    border-radius: 18px;
    text-align: left;
    font-size: .86rem;
  }
}