@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-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  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-block {
  width: 100%;
}

.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;
  }
  .btn-block {
    width: auto;
  }
  .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;
  margin-top: 54px;
  z-index: 1;
}
#kv .inner {
  position: relative;
  max-width: 1200px;
}
#kv h1 {
  color: #fff;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.2;
}
#kv h1 span {
  color: #facc15;
}
#kv .subtxt {
  color: #fff;
  font-size: 0.8125rem;
  margin: 20px 0;
}
#kv .btn-wrap {
  display: flex;
  justify-content: normal;
  align-items: end;
  gap: 10px;
}
#kv .btn-lead {
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 0.5em;
}

.kv-img-wrap {
  position: relative;
}

.kv-img {
  width: 240px;
  height: auto;
  margin: 0 auto 20px;
}

.kv-medal-list {
  display: flex;
  justify-content: normal;
  align-items: normal;
  gap: 5px;
  margin-bottom: 30px;
}
.kv-medal-list li img {
  height: 50px;
}

.kv-badge {
  position: absolute;
  top: 0;
  right: 20px;
  width: 120px;
  height: 120px;
}

.kv-badge-txt {
  text-align: right;
  color: #fff;
  font-size: 0.625rem;
  margin-top: 10px;
}

@media (min-width: 769px) {
  #kv {
    padding: 80px 0;
    margin-top: 70px;
  }
  #kv h1 {
    font-size: 4.125rem;
  }
  #kv .subtxt {
    font-size: 1.375rem;
  }
  .kv-medal-list {
    gap: 10px;
  }
  .kv-medal-list li img {
    height: 84px;
  }
  .kv-img-wrap {
    position: static;
  }
  .kv-img {
    position: absolute;
    top: 0;
    right: -4%;
    width: 444px;
    height: 504px;
    margin: 0;
    z-index: -1;
  }
  .kv-badge {
    top: -50px;
    right: -15px;
    width: 180px;
    height: 180px;
  }
  .kv-badge-txt {
    position: absolute;
    bottom: -60px;
    right: 0;
    margin-top: 0;
  }
}
#logos {
  padding: 30px 0 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;
}
.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;
}

.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;
}

@media (min-width: 769px) {
  .cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: normal;
  }
  .cta-box {
    width: 48%;
  }
}
#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-list .txt-right {
  text-align: right;
  margin-right: 30px;
}

.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, .contact-any {
  font-size: 0.5rem;
  padding: 2px 9px 3px;
  border-radius: 100vh;
  margin-left: 8px;
}

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

.contact-any {
  color: #222;
  background: #ececec;
}

.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;
  }
  .download-form {
    width: 50%;
  }
  .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 */

/*
TOPIMG, CTA (2026.02ADD)
***************************************************************************/
/* ▼PC▼ */
@media (min-width: 769px){

.pc_disp { display:block; }
.sp_disp { display:none; }

#topimg {
	margin-top: 70px;
	background: url(../img/pc/topimg_bg.jpg) center center / cover no-repeat;
}

#topimg .sec_inner {
	position: relative;
	width: 1100px;
	height: 880px;
	margin: 0 auto;
	background: url(../img/pc/topimg.png) center top no-repeat;
}

#topimg .head {
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: calc(2rem * 0.625);
	font-weight: 700;
	color: #493b01;
	line-height: 70px;
}

#topimg .head .htxt {
	margin-right: 5px;
	vertical-align: 2px;
	letter-spacing: 0.025rem;
}

#topimg .head .en {
	font-size: calc(5.6rem * 0.625);
}

#topimg .head .dot {
	font-size: calc(3rem * 0.625);
}

#topimg .head .sub {
	margin-left: 2px;
	font-size: calc(1.1rem * 0.625);
}

#topimg .title {
	position: absolute;
	top: 200px;
	left: 0;
	font-size: calc(4rem * 0.625);
	font-weight: 900;
	color: #fff;
	line-height: 1.2;
}

#topimg .title .en {
	margin: 0 3px;
	vertical-align: -5px;
	font-size: calc(8.8rem * 0.625);
	color: #facc15;
	font-weight: 700;
}

#topimg .title .strong {
	font-size: calc(6rem * 0.625);
}

#topimg .content {
	position: absolute;
	top: 260px;
	right: 85px;
	width: 280px;
	text-align: center;
}

#topimg .content dt {
	margin-bottom: 15px;
	font-size: calc(1.6rem * 0.625);
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	letter-spacing: 0.025rem;
}

#topimg .content dd {
	font-size: calc(2.4rem * 0.625);
	font-weight: 900;
	color: #facc15;
	line-height: 1.4;
}

#topimg .feature {
	display: flex;
	gap: 0 20px;
	position: absolute;
	top: 390px;
	left: 0;
	width: 640px;
}

#topimg .feature dl {
	box-sizing: border-box;
	position: relative;
	width: calc((100% - 40px) / 3);
	height: 170px;
	padding: 25px 0;
	text-align: center;
	background: #fff;
	border-radius: 15px;
}

#topimg .feature dt {
	padding-bottom: 2px;
	font-size: calc(1.8rem * 0.625);
	font-weight: 700;
	color: #fff;
	line-height: 42px;
	letter-spacing: 0.05rem;
	background: #0093fe;
}

#topimg .feature dd {
	padding-top: 20px;
	font-size: calc(2.4rem * 0.625);
	font-weight: 700;
	color: #0093fe;
	line-height: 1;
}

#topimg .feature dl:last-child dd { padding-top:25px; font-size:calc(2rem * 0.625); }

#topimg .feature dd .en {
	margin-right: 3px;
	font-size: calc(6rem * 0.625);
}

#topimg .feature dl:last-child dd .en { font-size:calc(5.2rem * 0.625); }

#topimg .feature dl .sub {
	display: inline-block;
	position: absolute;
	top: 80px;
	right: 10px;
	text-align: right;
	font-size: calc(1.1rem * 0.625);
	font-weight: 700;
	color: #535353;
}

#topimg .txt {
	position: absolute;
	top: 520px;
	left: 670px;
	width: calc(100% - 670px);
	padding-left: 2em;
	font-size: calc(1rem * 0.625);
	font-weight: 400;
	color: #fff;
	line-height: 2;
	text-indent: -1.55em;
	letter-spacing: 0.01rem;
}

#topimg .cta_sec {
	position: absolute;
	top: 590px;
	left: 0;
	width: 1130px;
}

.cta_frame {
	padding: 70px 0;
	background: url(../img/pc/topimg_bg.jpg) center bottom / cover no-repeat;
}

.cta_inner {
	width: 1100px;
	margin: 0 auto;
}

.cta_sec {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	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/pc/btn_contact_bg.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: 35px;
	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);
}

.cta_sec .btn_contact .ftxt {
	margin-top: 10px;
	text-align: center;
	font-size: calc(1.1rem * 0.625);
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.01rem;
}

.cta_sec .btn_download {
	width: 420px;
	padding-top: 40px;
}

.cta_sec .btn_download .htxt {
	margin-bottom: 25px;
	text-align: center;
	font-size: calc(2rem * 0.625);
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.05rem;
}

.cta_sec .btn_download .htxt .dialine {
	display: inline-block;
	position: relative;
	padding: 0 20px;
}

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

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

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

.cta_sec .btn_download a {
	height: 100px;
	letter-spacing: 0.05rem;
	background: url(../img/pc/btn_download_bg.png) center top no-repeat;
}

.cta_sec .btn_download .btn_txt dt {
	position: absolute;
	top: 34px;
	left: 20px;
	font-size: calc(3rem * 0.625);
	font-weight: 900;
	color: #fed843;
	line-height: 1;
}

.cta_sec .btn_download .btn_txt dd {
	position: absolute;
	top: 13px;
	left: 130px;
	font-size: calc(2.2rem * 0.625);
	font-weight: 700;
	color: #493b01;
	line-height: 1.5;
}

.cta_sec .btn_download .btn_txt dd .sub { font-size:calc(1.6rem * 0.625); }

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

}

/* ▼SP▼ */
@media (max-width: 768px){

.pc_disp { display:none; }
.sp_disp { display:block; }

#topimg {
	position: relative;
	width: 100%;
	height: calc((100vw / 375) * 760);
	margin-top: 54px;
	background: url(../img/sp/topimg_bg.jpg) center center / cover no-repeat;
}

#topimg .head {
	position: absolute;
	top: calc((100vw / 375) * 25);
	left: calc((100vw / 375) * 60);
	font-size: calc((100vw / 375) * 14);
	font-weight: 700;
	color: #493b01;
	line-height: calc((100vw / 375) * 50);
}

#topimg .head .htxt {
	margin-right: calc((100vw / 375) * 5);
	vertical-align: calc((100vw / 375) * 2);
	letter-spacing: 0.025rem;
}

#topimg .head .en {
	font-size: calc((100vw / 375) * 36);
}

#topimg .head .dot {
	font-size: calc((100vw / 375) * 24);
}

#topimg .head .sub {
	margin-left: calc((100vw / 375) * 2);
	font-size: calc((100vw / 375) * 9);
}

#topimg .title {
	position: absolute;
	top: calc((100vw / 375) * 92);
	left: 0;
	width: 100%;
	text-align: center;
	font-size: calc((100vw / 375) * 20);
	font-weight: 900;
	color: #fff;
	line-height: 1.05;
}

#topimg .title .htxt {
	font-size: calc((100vw / 375) * 15);
}

#topimg .title .en {
	margin: 0 calc((100vw / 375) * 3);
	vertical-align: calc((100vw / 375) * -3);
	font-size: calc((100vw / 375) * 44);
	color: #facc15;
	font-weight: 700;
}

#topimg .title .strong {
	font-size: calc((100vw / 375) * 30);
}

#topimg .content {
	position: absolute;
	top: calc((100vw / 375) * 190);
	left: 0;
	width: 100%;
	text-align: center;
}

#topimg .content dt {
	margin-bottom: calc((100vw / 375) * 2);
	font-size: calc((100vw / 375) * 11);
	font-weight: 700;
	color: #fff;
	line-height: 1.65;
	letter-spacing: 0.025rem;
}

#topimg .content dt .sub {
	font-size: calc((100vw / 375) * 14);
	font-weight: 900;
}

#topimg .content dd {
	font-size: calc((100vw / 375) * 16);
	font-weight: 900;
	color: #facc15;
	line-height: 1.4;
}

#topimg .feature {
	display: flex;
	gap: 0 calc((100vw / 375) * 10);
	position: absolute;
	top: calc((100vw / 375) * 290);
	left: calc((100vw / 375) * 20);
	width: calc(100% - ((100vw / 375) * 40));
}

#topimg .feature dl {
	box-sizing: border-box;
	position: relative;
	width: calc((100% - ((100vw / 375) * 20)) / 3);
	height: calc((100vw / 375) * 100);
	padding: calc((100vw / 375) * 15) 0 calc((100vw / 375) * 20);
	text-align: center;
	background: #fff;
	border-radius: calc((100vw / 375) * 10);
}

#topimg .feature dt {
	font-size: calc((100vw / 375) * 12);
	font-weight: 700;
	color: #fff;
	line-height: calc((100vw / 375) * 26);
	letter-spacing: 0.05rem;
	background: #0093fe;
}

#topimg .feature dd {
	padding-top: calc((100vw / 375) * 8);
	font-size: calc((100vw / 375) * 14);
	font-weight: 700;
	color: #0093fe;
	line-height: 1;
}

#topimg .feature dl:last-child dd { padding-top:calc((100vw / 375) * 12); font-size:calc((100vw / 375) * 12); }

#topimg .feature dd .en {
	margin-right: calc((100vw / 375) * 3);
	font-size: calc((100vw / 375) * 30);
}

#topimg .feature dl:last-child dd .en { font-size:calc((100vw / 375) * 26); }

#topimg .feature dl .sub {
	display: inline-block;
	position: absolute;
	bottom: calc((100vw / 375) * 8);
	right: calc((100vw / 375) * 8);
	text-align: right;
	font-size: calc((100vw / 375) * 9);
	font-weight: 500;
	color: #535353;
}

#topimg .txt {
	position: absolute;
	top: calc((100vw / 375) * 400);
	left: calc((100vw / 375) * 20);
	padding-left: 2em;
	font-size: calc((100vw / 375) * 9);
	font-weight: 400;
	color: #fff;
	line-height: 1.75;
	text-indent: -1.55em;
	letter-spacing: 0.01rem;
}

#topimg .cta_sec {
	position: absolute;
	top: calc((100vw / 375) * 455);
	left: 0;
}

.cta_frame {
	padding: calc((100vw / 375) * 25) 0 calc((100vw / 375) * 40);
	background: url(../img/sp/topimg_bg.jpg) center bottom / cover no-repeat;
}

.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/sp/btn_contact_bg.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);
}

.cta_sec .btn_contact .ftxt {
	margin-top: calc((100vw / 375) * 10);
	text-align: center;
	font-size: calc((100vw / 375) * 9);
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.01rem;
}

.cta_sec .btn_download {
	margin: calc((100vw / 375) * 20) calc((100vw / 375) * 20) 0;
}

.cta_sec .btn_download .htxt {
	margin-bottom: calc((100vw / 375) * 15);
	text-align: center;
	font-size: calc((100vw / 375) * 14);
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.05rem;
}

.cta_sec .btn_download .htxt .dialine {
	display: inline-block;
	position: relative;
	padding: 0 calc((100vw / 375) * 15);
}

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

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

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

.cta_sec .btn_download a {
	height: calc((100vw / 375) * 60);
	letter-spacing: 0.05rem;
	background: url(../img/sp/btn_download_bg.png) center top / 100% no-repeat;
}

.cta_sec .btn_download .btn_txt dt {
	position: absolute;
	top: calc((100vw / 375) * 18);
	left: calc((100vw / 375) * 15);
	font-size: calc((100vw / 375) * 20);
	font-weight: 900;
	color: #fed843;
	line-height: 1;
}

.cta_sec .btn_download .btn_txt dd {
	position: absolute;
	top: calc((100vw / 375) * 5);
	left: calc((100vw / 375) * 95);
	font-size: calc((100vw / 375) * 15);
	font-weight: 700;
	color: #493b01;
	line-height: 1.45;
}

.cta_sec .btn_download .btn_txt dd .sub { font-size:calc((100vw / 375) * 10); }

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

.btn_bound {
	animation: bomb 3s linear 0s infinite normal;
	transition: .3s;
}

@keyframes bomb {
	0% { transform:scale(0.95); }
	7% { transform:scale(0.98); }
	14% { transform:scale(0.94); }
	21% { transform:scale(1); }
	28% { transform:scale(0.94); }
	35% { transform:scale(0.98); }
	42% { transform:scale(0.93); }
	49% { transform:scale(0.97); }
	56% { transform:scale(0.95); }
	100% { transform:scale(0.95); }
}

}
