@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-display: swap;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text-default, #44423c);
  line-height: 1.3;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

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

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

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

.animation {
  opacity: 0;
  transform: translateY(30px); /* 下から */
  transition: opacity 0.3s ease, transform 0.8s ease;
}
.animation.show {
  opacity: 1;
  transform: translateY(0);
}

.container {
  position: relative;
  width: 100%;
  padding: 0 16px;
}
@media (min-width: 1100px) {
  .container {
    width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
  }
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* 黒30% */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-overlay .popup {
  position: relative;
  background: #0dc95a;
  border-radius: 12px;
  padding: 24px 10px;
  max-width: 90%;
  text-align: center;
}
@media (max-width: 480px) {
  .popup-overlay .popup {
    max-width: calc(100% - 80px);
  }
}
.popup-overlay .popup .popup-content {
  position: relative;
  padding: 86px 16px 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  z-index: 1;
}
.popup-overlay .popup .popup-content .ttl {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 90%;
}
.popup-overlay .popup .popup-content .ballon {
  position: absolute;
  left: 5px;
  top: -30px;
}
.popup-overlay .popup .popup-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/popup-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  z-index: -1;
}
.popup-overlay .popup .popup-bottom {
  padding: 24px 0 0;
  text-align: center;
}
.popup-overlay .popup .popup-bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 48px);
  margin: 0 auto;
  padding: 24px;
  border-radius: 8px;
  background-color: #f80019;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.25);
}
.popup-overlay .popup .popup-close {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  z-index: 9999;
}
@media (max-width: 480px) {
  .popup-overlay .popup .popup-close {
    top: -10px;
    right: -10px;
  }
}
.popup-overlay.show {
  display: flex;
}

.form-cta {
  text-align: center;
}
.form-cta .ttl {
  margin: 0 0 16px;
}
@media (min-width: 1100px) {
  .form-cta .ttl {
    width: 608px;
    margin: 0 auto;
    margin-bottom: 24px;
  }
}
.form-cta .cta-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media (min-width: 1100px) {
  .form-cta .cta-list .cta-item {
    width: 450px;
  }
}

body.home header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 16px 16px 10px;
  z-index: 1000;
}
@media (min-width: 700px) {
  body.home header {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    max-width: 1400px;
    padding: 16px 10px 0;
  }
}
body.home header .logo .txt {
  display: inline-block;
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  color: #1c1c1c;
}
body.home header .logo .img {
  display: block;
  width: 133px;
}
@media (min-width: 1100px) {
  body.home header .logo .img {
    width: 186px;
  }
}
body.home .quick-form {
  position: fixed;
  left: 0;
  bottom: 10px;
  width: 100%;
  z-index: 1001;
  max-width: 500px;
  left: 50%;
  transform: translate(-50%);
}
@media (min-width: 1100px) {
  body.home .quick-form {
    left: unset;
    bottom: unset;
    right: 0;
    top: 0;
    width: auto;
    left: inherit;
    transform: none;
  }
}
body.home #main-visual {
  position: relative;
  padding: 90px 0 0;
  background: url(../img/sp/mv-bg.png) no-repeat;
  background-position: center !important;
  background-size: cover !important;
}
@media (min-width: 1100px) {
  body.home #main-visual {
    padding: 114px 0 0;
    background: url(../img/pc/mv-bg.png) no-repeat;
  }
}
body.home #main-visual .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.home #main-visual .container .mv-head {
  margin: 0 0 100px;
}
body.home #main-visual .container .mv-main {
  position: relative;
  margin: 0 -10px;
  margin-bottom: 48px;
}
@media screen and (min-width: 600px) and (max-width: 1099px) {
  body.home #main-visual .container .mv-main {
    max-width: 600px;
    margin-top: 100px;
  }
}
@media (min-width: 1100px) {
  body.home #main-visual .container .mv-main {
    margin-bottom: 56px;
    max-width: inherit;
  }
}
@media (min-width: 1100px) {
  body.home #main-visual .container .mv-main img {
    position: relative;
    z-index: 1;
  }
}
body.home #main-visual .container .mv-main .maru {
  position: absolute;
  left: 0;
  top: -32px;
  width: 117px;
  height: 117px;
}
@media (min-width: 1100px) {
  body.home #main-visual .container .mv-main .maru {
    top: 155px;
    width: 145px;
    height: 145px;
    z-index: 0;
  }
}
body.home #main-visual .container .mv-btn-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-bottom: -20px;
  padding: 12px 20px;
  background-color: #002bff;
  border-radius: 86px;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1100px) {
  body.home #main-visual .container .mv-btn-cta {
    gap: 29px;
    padding: 24px 0;
    margin-bottom: -50px;
    border-radius: 133px;
    max-width: 800px;
  }
}
body.home #main-visual .container .mv-btn-cta .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media (min-width: 1100px) {
  body.home #main-visual .container .mv-btn-cta .arrow {
    width: 60px;
    height: 60px;
  }
}
body.home #main-visual .container .mv-btn-cta .top {
  position: absolute;
  left: 50%;
  top: -29px;
  transform: translateX(-50%);
  width: 325px;
  text-align: center;
}
@media (min-width: 1100px) {
  body.home #main-visual .container .mv-btn-cta .top {
    top: -37px;
    width: auto;
  }
}
@supports (background-image: url("data:image/webp;base64,UklGRhIAAABXRUJQVlA4IC4AAAAwAQCdASoEAAQAAVAfJaQAA3AAAAAA")) {
  body.home #main-visual {
    background-image: url(../img/sp/mv-bg.webp);
  }
  @media (min-width: 1100px) {
    body.home #main-visual {
      background-image: url(../img/pc/mv-bg.webp);
    }
  }
}
body.home #form .head {
  padding: 50px 0 0;
  background-color: #f40000;
}
@media (min-width: 1100px) {
  body.home #form .head {
    padding: 84px 0 0;
  }
}
body.home #form .head .head-ttl {
  margin: 0 0 23px;
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #fff600;
}
@media (min-width: 1100px) {
  body.home #form .head .head-ttl {
    margin: 0 0 35px;
    font-size: 43px;
    line-height: 1;
  }
}
body.home #form .head .head-ttl span {
  color: #ffffff;
}
body.home #form .head .head-points {
  margin-bottom: -86px;
  text-align: center;
}
@media (min-width: 1100px) {
  body.home #form .head .head-points {
    margin-bottom: -32px;
  }
}
body.home #form .form-body {
  padding: 96px 0 48px;
  background: linear-gradient(180deg, #fbf8a2 0%, #fff700);
}
@media (min-width: 1100px) {
  body.home #form .form-body {
    padding: 32px 0 100px;
  }
}
body.home #form .form-body .form-ttl {
  margin: 0 0 16px;
  text-align: center;
}
body.home #form .form-body .form-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 56px;
}
@media (min-width: 1100px) {
  body.home #form .form-body .form-list {
    margin: 0 0 40px;
  }
}
body.home #form .form-body .form-list .form-item {
  width: 100%;
  border: 1px solid #1c1c1c;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  background-color: #fff;
}
@media (min-width: 1100px) {
  body.home #form .form-body .form-list .form-item {
    width: calc(33.3333% - 16px);
  }
}
body.home #form .form-body .form-list .form-item .head {
  background-color: #1c1c1c;
  padding: 16px 0;
}
@media (min-width: 1100px) {
  body.home #form .form-body .form-list .form-item .head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 85px;
  }
}
body.home #form .form-body .form-list .form-item .head span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #form .form-body .form-list .form-item .head span {
    font-size: 29px;
  }
}
body.home #form .form-body .form-list .form-item .head span .ico {
  padding: 2px;
}
body.home #form .form-body .form-list .form-item .head span .sub {
  position: relative;
  margin: 0 0 0 4px;
  font-size: 19px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.home #form .form-body .form-list .form-item .body {
  padding: 16px 24px;
  background-color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #form .form-body .form-list .form-item .body {
    height: calc(100% - 85px);
  }
}
body.home #form .form-body .form-list .form-item .body .checkbox {
  position: relative;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  padding-left: 61px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
body.home #form .form-body .form-list .form-item .body .checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 45px;
  width: 45px;
  background-color: #e3e3e3;
  border: 3px solid #f40000;
}
body.home #form .form-body .form-list .form-item .body .checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  width: 12px;
  height: 24px;
  border: solid white;
  border-width: 0 5px 5px 0;
  transform: rotate(45deg);
}
body.home #form .form-body .form-list .form-item .body .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
body.home #form .form-body .form-list .form-item .body .checkbox input:checked ~ .checkmark {
  background-color: #f40000;
}
body.home #form .form-body .form-list .form-item .body .checkbox input:checked ~ .checkmark::after {
  display: block;
}
body.home #form .form-body .form-list .form-item .body .checkbox .text {
  display: flex;
  align-items: center;
  height: 45px;
  font-size: 23px;
  font-weight: 500;
}
body.home #form .form-body .form-list .form-item .body .desc {
  font-size: 14px;
  font-weight: 500;
  color: #1c1c1c;
}
body.home #form .form-body .form-list .form-item .body.check-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
body.home #form .form-body .form-list .form-item .body .radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
body.home #form .form-body .form-list .form-item .body .radio-list .radio-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 4px);
  height: 40px;
  border: 1px solid #929292;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
body.home #form .form-body .form-list .form-item .body .radio-list .radio-item input {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
body.home #form .form-body .form-list .form-item .body .radio-list .radio-item input::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
body.home #form .form-body .form-list .form-item .body .radio-list .radio-item input:checked::after {
  background-color: #1c1c1c;
}
body.home #form .form-body .form-list .form-item .body .radio-list .radio-item input:checked ~ .text {
  color: #ffffff;
}
body.home #form .form-body .form-list .form-item .body .radio-list .radio-item .text {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #1c1c1c;
}
body.home #form .form-body button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 94px;
  margin: 0 0 48px;
  padding: 0 27px;
  background-color: #002bff;
  border-radius: 128px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1100px) {
  body.home #form .form-body button {
    justify-content: center;
    gap: 16px;
    width: 808px;
    height: 106px;
    margin: 0 auto;
    margin-bottom: 72px;
    padding: 0;
    box-shadow: none;
  }
}
body.home #form .form-body button .text {
  font-size: 31px;
  font-weight: 800;
  color: #ffd000;
}
@media (min-width: 1100px) {
  body.home #form .form-body button .text {
    margin: 0 0 0 0px;
    font-size: 45px;
  }
}
body.home #form .form-body button .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media (min-width: 1100px) {
  body.home #form .form-body button .arrow {
    width: 60px;
    height: 60px;
  }
}
body.home #form .form-body button .ballon {
  position: absolute;
  left: 50%;
  top: -35px;
  transform: translateX(-50%);
}
@media (min-width: 1100px) {
  body.home #form .form-body button .ballon {
    left: 102px;
    top: -21px;
    transform: unset;
  }
}
body.home #nayami .head {
  padding: 48px 0 16px;
  background-color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #nayami .head {
    padding: 100px 0 16px;
  }
}
body.home #nayami .head .ttl {
  text-align: center;
  padding: 0 10px;
}
@media (min-width: 1100px) {
  body.home #nayami .head .ttl {
    padding: 0;
  }
}
body.home #nayami .body {
  position: relative;
  padding: 44px 0 84px;
  background: url(../img/sp/nayami-bg.png) repeat;
  background-position: calc(50% + 120px) center;
  background-size: cover;
  overflow: hidden;
}
@supports (background-image: url("data:image/webp;base64,UklGRhIAAABXRUJQVlA4IC4AAAAwAQCdASoEAAQAAVAfJaQAA3AAAAAA")) {
  body.home #nayami .body .body {
    background-image: url("../img/sp/nayami-bg.webp");
  }
}
@media (min-width: 1100px) {
  body.home #nayami .body {
    padding-top: 68px;
    background: none;
    background-color: #000000;
  }
}
body.home #nayami .body .content {
  position: relative;
  margin-left: -1px;
  z-index: 1;
}
body.home #nayami .body .gentleman {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 65%;
}
body.home #nayami .foot {
  margin-top: -50px;
  background-color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #nayami .foot {
    margin-top: 0;
  }
}
body.home #nayami .foot .foot-ttl {
  position: relative;
  padding: 16px 0;
  background-color: #f40000;
}
body.home #nayami .foot .foot-ttl .foot-ttl-wrapper {
  margin: 0 -7px;
  text-align: center;
}
body.home #nayami .foot .foot-ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -27px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 27px solid #f40000;
}
@media (min-width: 1100px) {
  body.home #nayami .foot .foot-ttl::after {
    bottom: -90px;
    border-left: 52px solid transparent;
    border-right: 52px solid transparent;
    border-top: 90px solid #f40000;
  }
}
body.home #nayami .foot .foot-body {
  padding: 37px 0 0;
  text-align: center;
  font-size: 33px;
  font-weight: 800;
  color: #002bff;
}
@media (min-width: 1100px) {
  body.home #nayami .foot .foot-body {
    padding-top: 100px;
    font-size: 50px;
  }
}
body.home #nayami .foot .foot-body .top {
  display: block;
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  color: #1c1c1c;
}
@media (min-width: 1100px) {
  body.home #nayami .foot .foot-body .top {
    font-size: 50px;
  }
}
body.home #nayami .foot .foot-body .yellow {
  display: inline-block;
  margin-right: 8px;
  background: linear-gradient(0deg, #fff600 0%, #fff600 100%);
}
body.home #intro {
  padding: 48px 0 0;
}
@media (min-width: 1100px) {
  body.home #intro {
    padding-top: 100px;
  }
}
body.home #intro .intro-lead-ttl {
  margin: 0 0 24px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #1c1c1c;
}
@media (min-width: 1100px) {
  body.home #intro .intro-lead-ttl {
    font-size: 48px;
  }
}
body.home #intro .intro-lead-ttl .red {
  display: block;
  color: #f40000;
}
body.home #intro .intro-lead-ttl .blue {
  display: inline-block;
  color: #002bff;
}
body.home #intro .intro-main {
  position: relative;
  padding: 32px 16px 48px;
  background-color: #002bff;
  border-radius: 16px;
  z-index: 1;
}
@media (min-width: 1100px) {
  body.home #intro .intro-main {
    padding: 32px 32px 100px;
  }
}
body.home #intro .intro-main .intro-main-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 0 24px;
}
@media (min-width: 1100px) {
  body.home #intro .intro-main .intro-main-ttl {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 16px;
  }
}
body.home #intro .intro-main .intro-main-ttl span {
  display: block;
  text-align: center;
}
body.home #intro .intro-main .intro-main-ttl span.chart {
  margin: 0 0 10px;
}
body.home #intro .intro-main .intro-main-ttl span.ttl-01 {
  margin: 0 0 7px;
}
body.home #intro .intro-main .intro-main-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
body.home #intro .intro-main .intro-main-list .intro-main-item {
  width: 100%;
  border: 4px solid #1c1c1c;
  background-color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #intro .intro-main .intro-main-list .intro-main-item {
    width: calc(33.3333% - 11px);
  }
}
body.home #intro .intro-main .intro-main-list .intro-main-item .intro-main-item-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 0;
  background-color: #fff600;
}
@media (min-width: 1100px) {
  body.home #intro .intro-main .intro-main-list .intro-main-item .intro-main-item-ttl {
    height: 100px;
  }
}
body.home #intro .intro-main .intro-main-list .intro-main-item .intro-main-item-body {
  padding: 16px 16px 24px;
  background-color: #ffffff;
}
body.home #intro .intro-main .intro-main-list .intro-main-item .intro-main-item-body .intro-main-item-body-ttl {
  margin: 0 0 8px;
  text-align: center;
}
body.home #intro .intro-main .intro-main-list .intro-main-item .intro-main-item-body .intro-main-item-body-txt {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
  color: #1c1c1c;
}
body.home #intro .intro-foot {
  margin-top: -76px;
  padding: 110px 0 48px;
  background-color: #baedfd;
}
@media (min-width: 1100px) {
  body.home #intro .intro-foot {
    margin-top: -71px;
    padding: 165px 0 100px;
  }
}
body.home #intro .intro-foot .intro-foot-txt {
  text-align: center;
  font-size: 31px;
  font-weight: 800;
  color: #000000;
}
@media (min-width: 1100px) {
  body.home #intro .intro-foot .intro-foot-txt {
    font-size: 61px;
  }
}
body.home #intro .intro-foot .intro-foot-txt .small {
  display: block;
  font-size: 23px;
}
@media (min-width: 1100px) {
  body.home #intro .intro-foot .intro-foot-txt .small {
    font-size: 53px;
  }
}
body.home #intro .intro-foot .intro-foot-txt .blue {
  display: inline-block;
  font-size: 36px;
  color: #002bff;
}
@media (min-width: 1100px) {
  body.home #intro .intro-foot .intro-foot-txt .blue {
    font-size: 61px;
  }
}
body.home #feature .notouch {
  padding: 48px 0 0;
}
@media (min-width: 1100px) {
  body.home #feature .notouch {
    padding: 100px 0 0;
  }
}
body.home #feature .notouch .top {
  text-align: center;
}
body.home #feature .notouch .middle {
  position: relative;
  padding: 21.5px 0;
  background-color: #002bff;
}
@media (min-width: 1100px) {
  body.home #feature .notouch .middle {
    padding: 16px 0;
  }
}
body.home #feature .notouch .middle .middle-txt {
  text-align: center;
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #feature .notouch .middle .middle-txt {
    font-size: 68px;
  }
}
body.home #feature .notouch .middle .middle-txt span {
  color: #fff600;
}
body.home #feature .notouch .middle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -43px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 43px solid #002bff;
  z-index: 1;
}
@media (min-width: 1100px) {
  body.home #feature .notouch .middle::after {
    bottom: -60px;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 60px solid #002bff;
  }
}
body.home #feature .notouch .bottom {
  padding: 43px 0 0;
  background-color: #dde7f0;
  border-radius: 16px;
}
body.home #feature .notouch .bottom .bottom-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 1100px) {
  body.home #feature .notouch .bottom .bottom-row {
    flex-direction: row;
  }
}
body.home #feature .notouch .bottom .bottom-row .txt {
  text-align: center;
  font-size: 23px;
  font-weight: 800;
  color: #000000;
}
@media (min-width: 1100px) {
  body.home #feature .notouch .bottom .bottom-row .txt {
    font-size: 38px;
  }
}
body.home #feature .notouch .bottom .bottom-row .txt .space {
  display: inline-block;
}
body.home #feature .notouch .bottom .bottom-row .txt .big {
  display: block;
  font-size: 38px;
  color: #f40000;
}
@media (min-width: 1100px) {
  body.home #feature .notouch .bottom .bottom-row .txt .big {
    font-size: 53px;
  }
}
body.home #feature .notouch .bottom .bottom-row .fig {
  text-align: center;
}
body.home #feature .main {
  padding: 48px 0;
  background-color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #feature .main {
    padding: 100px 0 48px;
  }
}
body.home #feature .main .main-ttl {
  margin: 0 0 24px;
  text-align: center;
}
@media (min-width: 1100px) {
  body.home #feature .main .main-ttl {
    margin: 0 0 32px;
  }
}
body.home #feature .main .main-ttl .fig {
  display: block;
  margin: 0 0 24px;
}
@media (min-width: 1100px) {
  body.home #feature .main .main-ttl .fig {
    margin: 0 0 32px;
  }
}
body.home #feature .main .main-ttl .txt {
  display: block;
  margin: 0 -10px;
  font-size: 26px;
  font-weight: 800;
  color: #1c1c1c;
}
@media (min-width: 1100px) {
  body.home #feature .main .main-ttl .txt {
    font-size: 54px;
  }
}
body.home #feature .main .main-ttl .txt span {
  color: #f40000;
}
body.home #feature .main .main-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 24px;
}
@media (min-width: 1100px) {
  body.home #feature .main .main-list {
    margin: 0 0 32px;
  }
}
body.home #feature .main .main-list .main-item {
  width: 100%;
  padding: 26.5px 16px;
  background-position: center !important;
  background-size: cover !important;
  border-radius: 0 40px 0 40px;
  overflow: hidden;
}
@media (min-width: 1100px) {
  body.home #feature .main .main-list .main-item {
    width: calc(33.3333% - 11px);
    background: none !important;
  }
}
body.home #feature .main .main-list .main-item .ttl-sub {
  display: block;
}
@media (min-width: 1100px) {
  body.home #feature .main .main-list .main-item .ttl-sub {
    display: none;
  }
}
body.home #feature .main .main-list .main-item .ttl-sub.ttl {
  margin: 0 0 10px;
}
body.home #feature .main .main-more .main-more-ttl {
  position: relative;
  margin: 0 0 10px;
  padding: 40px 0 0;
  text-align: center;
  z-index: 1;
}
@media (min-width: 1100px) {
  body.home #feature .main .main-more .main-more-ttl {
    padding: 70px 0 0;
  }
}
body.home #feature .main .main-more .main-more-ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 152px;
  height: 152px;
  background-color: #002bff;
  border-radius: 50%;
  z-index: -1;
}
@media (min-width: 1100px) {
  body.home #feature .main .main-more .main-more-ttl::after {
    width: 244px;
    height: 244px;
  }
}
body.home #feature .main .main-more .box {
  position: relative;
  padding: 24px 10px;
  background-color: #e3eff2;
  border: 6px solid #002bff;
  border-radius: 16px;
  z-index: 1;
}
@media (min-width: 1100px) {
  body.home #feature .main .main-more .box {
    padding: 48px;
  }
}
body.home #feature .main .main-more .box .box-ttl {
  margin: 0 0 32px;
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  color: #1c1c1c;
}
@media (min-width: 1100px) {
  body.home #feature .main .main-more .box .box-ttl {
    font-size: 43px;
  }
}
body.home #feature .main .main-more .box .box-ttl span {
  color: #002bff;
}
body.home #feature .main .main-more .box .box-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
body.home #feature .main .main-more .box .box-list-wrapper .box-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
}
@media (min-width: 1100px) {
  body.home #feature .main .main-more .box .box-list-wrapper .box-list {
    width: calc(100% - 532px);
  }
}
body.home #feature .main .main-more .box .box-list-wrapper .box-list .box-item {
  display: flex;
  width: 100%;
  gap: 8px;
}
body.home #feature .main .main-more .box .box-list-wrapper .box-list .box-item .mark {
  width: 40px;
  height: 40px;
}
body.home #feature .main .main-more .box .box-list-wrapper .box-list .box-item .body {
  width: calc(100% - 48px);
}
body.home #feature .main .main-more .box .box-list-wrapper .box-list .box-item .body .ttl {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  color: #1c1c1c;
}
@media (min-width: 1100px) {
  body.home #feature .main .main-more .box .box-list-wrapper .box-list .box-item .body .ttl {
    font-size: 32px;
  }
}
body.home #feature .main .main-more .box .box-list-wrapper .box-list .box-item .body .txt {
  font-size: 16px;
  font-weight: 500;
  color: #1c1c1c;
}
body.home #feature .foot {
  padding: 48px 0;
  text-align: center;
  background-color: #f40000;
}
@media (min-width: 1100px) {
  body.home #feature .foot {
    padding: 17px 0;
  }
}
body.home #feature .foot .top {
  margin: 0 0 10px;
}
body.home #feature .tail {
  padding: 16px 0;
  background-color: #a80000;
}
body.home #feature .tail .txt {
  margin: 0 -10px;
  text-align: center;
  font-size: 29px;
  font-weight: 800;
  color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #feature .tail .txt {
    font-size: 51px;
  }
}
body.home #feature .tail .txt span {
  display: block;
  color: #fff600;
}
@media (min-width: 1100px) {
  body.home #feature .tail .txt span {
    display: inline-block;
  }
}
body.home #target {
  padding: 48px 0;
  background-color: #002bff;
}
@media (min-width: 1100px) {
  body.home #target {
    padding: 100px 0;
  }
}
body.home #target .container {
  padding: 0 10px;
}
body.home #target .head {
  margin: 0 0 42px;
}
body.home #target .head .ttl {
  margin: 0 0 12px;
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #target .head .ttl {
    font-size: 76px;
  }
}
body.home #target .head .ttl span {
  color: #fff600;
}
@media (min-width: 1100px) {
  body.home #target .head .ttl-sub {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
body.home #target .head .ttl-sub .list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 0 4px;
}
@media (min-width: 1100px) {
  body.home #target .head .ttl-sub .list {
    gap: 12px;
    margin: 0;
  }
}
body.home #target .head .ttl-sub .list .item {
  padding: 6px 12px;
  background-color: #ffffff;
  border-radius: 36px;
}
@media (min-width: 1100px) {
  body.home #target .head .ttl-sub .list .item {
    padding: 6px 41px;
  }
}
body.home #target .head .ttl-sub .list .item span {
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  color: #1c1c1c;
}
@media (min-width: 1100px) {
  body.home #target .head .ttl-sub .list .item span {
    font-size: 33px;
  }
}
body.home #target .head .ttl-sub .tail {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #target .head .ttl-sub .tail {
    margin: 0 0 0 12px;
    font-size: 26px;
  }
}
body.home #target .main .list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
body.home #target .main .list .item {
  width: 100%;
  padding: 16px;
  background-color: #ffffff;
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1100px) {
  body.home #target .main .list .item {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 12px;
    width: calc(50% - 16px);
    padding: 24px;
  }
}
body.home #target .main .list .item .infos {
  margin: 0 0 16px;
}
@media (min-width: 1100px) {
  body.home #target .main .list .item .infos {
    width: 264px;
    margin: 0;
  }
}
body.home #target .main .list .item .infos .infos-ttl {
  display: flex;
  align-items: center;
  background-color: #fff600;
  gap: 9px;
  margin: 0 0 24px;
  padding: 8px;
}
@media (min-width: 1100px) {
  body.home #target .main .list .item .infos .infos-ttl {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 32px;
  }
}
body.home #target .main .list .item .infos .row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 1100px) {
  body.home #target .main .list .item .infos .row {
    gap: 24px;
  }
}
body.home #target .main .list .item .infos .row .col {
  width: calc(50% - 8px);
}
@media (min-width: 1100px) {
  body.home #target .main .list .item .infos .row .col {
    width: 100%;
  }
}
body.home #target .main .list .item .infos .row .col .ttl {
  width: 100%;
  margin: 0 0 8px;
  padding: 8px;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #target .main .list .item .infos .row .col .ttl {
    font-size: 24px;
  }
}
body.home #target .main .list .item .infos .row .col .ttl.red {
  background-color: #f40000;
}
body.home #target .main .list .item .infos .row .col .ttl.blue {
  background-color: #002bff;
}
body.home #target .main .list .item .infos .row .col .txt {
  font-size: 18px;
  font-weight: 800;
  color: #000000;
}
@media (min-width: 1100px) {
  body.home #target .main .list .item .infos .row .col .txt {
    font-size: 21px;
  }
}
@media (min-width: 1100px) {
  body.home #target .main .list .item .infos .row .col .txt.small {
    font-size: 19px;
  }
}
body.home #target .main .list .item .image {
  margin: 0 0 16px;
}
@media (min-width: 1100px) {
  body.home #target .main .list .item .image {
    margin: 0;
  }
}
body.home #target .main .list .item .image img {
  margin-inline: auto;
  display: block;
}
body.home #target .main .list .item .intro {
  padding: 16px;
  font-size: 19px;
  font-weight: 500;
  border: 1px solid #000000;
  border-radius: 8px;
}
body.home #target .main .list .item .intro span {
  color: #f40000;
}
body.home #case {
  padding: 48px 0;
  background-color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #case {
    padding: 100px 0;
  }
}
body.home #case .head {
  margin: 0 0 24px;
  text-align: center;
}
body.home #case .head .logo {
  display: block;
  width: 206px;
  margin: 0 auto;
}
@media (min-width: 1100px) {
  body.home #case .head .logo {
    width: 214px;
  }
}
body.home #case .head .ttl {
  font-size: 36px;
  font-weight: 800;
  color: #000000;
}
@media (min-width: 1100px) {
  body.home #case .head .ttl {
    font-size: 69px;
  }
}
body.home #case .head .ttl .big {
  font-size: 55px;
}
@media (min-width: 1100px) {
  body.home #case .head .ttl .big {
    font-size: 88px;
  }
}
body.home #case .head .ttl .bottom {
  display: block;
  font-size: 30px;
}
@media (min-width: 1100px) {
  body.home #case .head .ttl .bottom {
    font-size: 63px;
  }
}
body.home #case .main .list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
body.home #case .main .list .item {
  width: 100%;
  padding: 16px 13px;
  border: 3px solid #000000;
}
@media (min-width: 1100px) {
  body.home #case .main .list .item {
    width: calc(33.3333% - 11px);
  }
}
body.home #case .main .list .item .item-ttl {
  margin: 0 0 20px;
  text-align: center;
}
body.home #case .main .list .item .item-org {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  background-color: #e0dddd;
}
@media (min-width: 1100px) {
  body.home #case .main .list .item .item-org {
    height: 85px;
  }
}
body.home #case .main .list .item .item-time {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px;
  background-color: #002bff;
}
body.home #case .main .list .item .item-time span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 50px;
}
body.home #case .main .list .item .item-time span.req {
  font-size: 27px;
  font-weight: 800;
  background-color: #ffffff;
  border: 4px solid #002bff;
}
body.home #case .main .list .item .item-time::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14.5px solid transparent;
  border-right: 14.5px solid transparent;
  border-top: 24px solid #002bff;
}
body.home #case .main .list .item .item-now {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background-color: #f40000;
}
@media (min-width: 1100px) {
  body.home #case .main .list .item .item-now .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 88px;
  }
}
@media (min-width: 1100px) {
  body.home #case .main .list .item .item-now .text {
    width: calc(100% - 86px);
  }
}
body.home #case .main .list .item .item-now .text .time {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 800;
  color: #f40000;
  background-color: #fff600;
}
body.home #reason {
  padding: 48px 0;
  background-color: #e0e0e0;
}
@media (min-width: 1100px) {
  body.home #reason {
    padding: 100px 0;
  }
}
@media (min-width: 1100px) {
  body.home #reason .container {
    width: 880px;
    padding: 0;
  }
}
body.home #reason .head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 32px;
}
body.home #reason .head span {
  text-align: center;
}
body.home #reason .main .list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
body.home #reason .main .list .item {
  display: flex;
  width: 100%;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.25);
}
body.home #reason .main .list .item .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 107px;
  padding: 15px 0;
  background-color: #f40000;
}
@media (min-width: 1100px) {
  body.home #reason .main .list .item .num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
  }
}
body.home #reason .main .list .item .txt {
  width: calc(100% - 107px);
  padding: 16px 13px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  font-size: 19px;
}
@media (min-width: 1100px) {
  body.home #reason .main .list .item .txt {
    display: flex;
    align-items: center;
    width: calc(100% - 130px);
    height: 130px;
    padding: 26px 56px;
    font-size: 24px;
  }
}
@media (min-width: 1100px) {
  body.home #flow .container {
    width: 800px;
    padding: 0;
  }
}
body.home #flow .head {
  padding: 64px 0 24px;
  background-color: #0019a7;
}
body.home #flow .head .top {
  text-align: center;
}
body.home #flow .head .bottom {
  padding: 8px 16px;
  text-align: center;
  background-color: #002bff;
  border-radius: 16px;
}
body.home #flow .main {
  padding: 21px 0 48px;
}
body.home #flow .main .list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
body.home #flow .main .list .item {
  position: relative;
  display: flex;
  gap: 8px;
  width: 100%;
  padding: 0 0 0 10px;
}
@media (min-width: 1100px) {
  body.home #flow .main .list .item {
    gap: 16px;
    padding: 0 0 0 43px;
  }
}
body.home #flow .main .list .item .image {
  width: 135px;
  background-position: center !important;
  background-size: cover !important;
}
@media (min-width: 1100px) {
  body.home #flow .main .list .item .image {
    width: 193px;
  }
}
body.home #flow .main .list .item .infos {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  width: calc(100% - 143px);
  min-height: 219px;
  padding: 8px;
  border: 1px solid #000000;
}
@media (min-width: 1100px) {
  body.home #flow .main .list .item .infos {
    width: calc(100% - 209px);
    padding: 32px;
  }
}
body.home #flow .main .list .item .infos .ttl {
  font-size: 19px;
  font-weight: 800;
  color: #000000;
}
@media (min-width: 1100px) {
  body.home #flow .main .list .item .infos .ttl {
    font-size: 32px;
  }
}
body.home #flow .main .list .item .infos .ttl.yellow {
  font-size: 28px;
  color: #fff600;
}
@media (min-width: 1100px) {
  body.home #flow .main .list .item .infos .ttl.yellow {
    font-size: 32px;
  }
}
body.home #flow .main .list .item .infos .txt {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
}
@media (min-width: 1100px) {
  body.home #flow .main .list .item .infos .txt {
    font-size: 18px;
  }
}
body.home #flow .main .list .item .infos.red {
  background-color: #f40000;
}
body.home #flow .main .list .item .time {
  position: absolute;
  left: 0;
  bottom: 7px;
  padding: 4px 8px;
  background-color: #f40000;
  border-radius: 8px;
}
@media (min-width: 1100px) {
  body.home #flow .main .list .item .time {
    top: -5px;
    bottom: unset;
    padding: 12px;
  }
}
body.home #faq {
  padding: 48px 0;
  background-color: #e0e0e0;
}
@media (min-width: 1100px) {
  body.home #faq {
    padding: 100px 0;
  }
}
@media (min-width: 1100px) {
  body.home #faq .container {
    width: 800px;
    padding: 0;
  }
}
body.home #faq .faq-ttl {
  margin: 0 0 8px;
  text-align: center;
  font-size: 50px;
  font-weight: 800;
  color: #1c1c1c;
}
@media (min-width: 1100px) {
  body.home #faq .faq-ttl {
    font-size: 77px;
  }
}
body.home #faq .faq-image {
  margin: 0 0 32px;
  text-align: center;
}
body.home #faq .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (min-width: 1100px) {
  body.home #faq .faq-list {
    gap: 56px;
  }
}
body.home #faq .faq-list .faq-item {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px;
  background-color: #ffffff;
}
@media (min-width: 1100px) {
  body.home #faq .faq-list .faq-item {
    gap: 12px;
  }
}
body.home #faq .faq-list .faq-item .block {
  display: flex;
  gap: 16px;
  width: 100%;
}
@media (min-width: 1100px) {
  body.home #faq .faq-list .faq-item .block {
    gap: 40px;
  }
}
body.home #faq .faq-list .faq-item .block .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  font-size: 40px;
  font-weight: 500;
}
@media (min-width: 1100px) {
  body.home #faq .faq-list .faq-item .block .mark {
    width: 80px;
    height: 80px;
  }
}
body.home #faq .faq-list .faq-item .block .mark.q {
  background-color: #ffffff;
  color: #1c1c1c;
  border: 3px solid #1c1c1c;
}
body.home #faq .faq-list .faq-item .block .mark.a {
  color: #ffffff;
  background-color: #f40000;
}
body.home #faq .faq-list .faq-item .block .text {
  width: calc(100% - 82px);
}
body.home #faq .faq-list .faq-item .block .text.q {
  font-size: 19px;
  font-weight: 500;
  color: #1c1c1c;
}
body.home #faq .faq-list .faq-item .block .text.a {
  font-size: 18px;
  font-weight: 500;
  color: #f40000;
}
body.home #faq .faq-list .faq-item .block .text.a .big {
  display: block;
  font-size: 28px;
  font-weight: 800;
}
body.home #about {
  padding: 48px 0;
  background-color: #ffffff;
}
body.home #about .container {
  max-width: 800px;
}
body.home #about .about-ttl {
  margin: 0 0 16px;
  text-align: center;
  font-size: 33px;
  font-weight: 800;
  color: #000000;
}
body.home #about .about-txt {
  margin: 0 0 16px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #000000;
}
body.home #about .thumb {
  margin: 0 0 16px;
}
body.home #about .body .about_company dt {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: #1c1c1c;
  border-bottom: 3px solid #bfbfbf;
}
body.home #about .body .about_company dd {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}
body.form {
  padding: 32px 0 0;
  background-color: #e0e0e0;
}
@media (min-width: 1100px) {
  body.form .container {
    width: 800px;
    padding: 0;
  }
}
body.form .head {
  text-align: center;
}
body.form .main {
  padding: 0 0 48px;
}
body.form .main form {
  margin: 0 0 48px;
  padding: 32px 24px;
  background-color: #ffffff;
  border: 4px solid #1c1c1c;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1100px) {
  body.form .main form {
    margin: 0 0 56px;
    padding: 56px 0;
  }
}
body.form .main form .form-group {
  margin: 0 auto 45px;
  max-width: 700px;
}
body.form .main form .form-group .form-item {
  margin: 0 0 16px;
}
body.form .main form .form-group .form-item label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 600px) {
  body.form .main form .form-group .form-item label {
    align-items: center;
    gap: 27px;
  }
}
body.form .main form .form-group .form-item label span {
  display: block;
  width: 200px;
  font-size: 19px;
  font-weight: 800;
  color: #000000;
}
@media (min-width: 600px) {
  body.form .main form .form-group .form-item label span {
    text-align: right;
  }
}
body.form .main form .form-group .form-item label input {
  width: 100%;
  height: 50px;
  max-width: 480px;
  padding: 0 10px;
  font-size: 18px;
  font-weight: 500;
  background-color: #f0f0f0;
  border: 2px solid #929292;
  border-radius: 8px;
}
@media (min-width: 1100px) {
  body.form .main form .form-group .form-item label input {
    width: 465px;
  }
}
body.form .main form .form-group .form-item label select {
  padding: 10px;
  font-size: 16px;
}
body.form .main form .form-group .form-item:last-child {
  margin: 0;
}
body.form .main form .form-privacy {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 0 45px;
}
@media (min-width: 1100px) {
  body.form .main form .form-privacy {
    align-items: center;
  }
}
body.form .main form .form-privacy input {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 30px;
  height: 30px;
  background-color: #e0e0e0;
  border: 1px solid #929292;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}
body.form .main form .form-privacy input::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 0px;
  width: 8px;
  height: 18px;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
body.form .main form .form-privacy input:checked::after {
  border: solid #000000;
  border-width: 0 3px 3px 0;
}
@media (min-width: 1100px) {
  body.form .main form .form-privacy label {
    display: flex;
    align-items: center;
    gap: 14px;
  }
}
body.form .main form .form-privacy label span {
  display: block;
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: #000000;
}
@media (min-width: 1100px) {
  body.form .main form .form-privacy label span {
    margin: 0;
  }
}
body.form .main form .form-privacy label a {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  border-bottom: 1px solid #000000;
}
body.form .main form .form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1100px) {
  body.form .main form .form-submit {
    gap: 29px;
  }
}
body.form .main form .form-submit button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px 0;
  background-color: #002bff;
  border-radius: 133px;
  border: none;
  outline: none;
  cursor: pointer;
}
@media (min-width: 1100px) {
  body.form .main form .form-submit button {
    width: 640px;
    margin: 0 auto;
  }
}
body.form .main form .form-submit button .icon {
  width: 40px;
  height: 40px;
}
@media (min-width: 1100px) {
  body.form .main form .form-submit button .icon {
    width: 60px;
    height: 60px;
  }
}
body.form .main form .input-wrapper {
  position: relative;
}
@media (max-width: 1100px) {
  body.form .main form .input-wrapper {
    flex: 1;
  }
}
@media (max-width: 600px) {
  body.form .main form .input-wrapper {
    width: 100%;
    flex: unset;
  }
}
body.form .main form .input-wrapper .error-place {
  display: flex;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  color: red;
}
body.form .main form .input-wrapper.privacy-input-wrapper {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1100px) {
  body.form .main form .input-wrapper.privacy-input-wrapper {
    flex: unset;
  }
}
body.form .form-cta {
  width: 924px;
  margin: 0 auto;
  padding: 0 0 100px;
}
@media (max-width: 1100px) {
  body.form .form-cta {
    width: 100%;
    padding: 0 16px 100px;
  }
}
body.thanks {
  background-color: #a2cbef;
}
body.thanks .thanks {
  padding: 32px 0 100px;
}
@media (min-width: 1100px) {
  body.thanks .thanks {
    padding: 314px 0 265px;
  }
}
@media (min-width: 1100px) {
  body.thanks .thanks .container {
    width: 850px;
    padding: 0;
  }
}
body.thanks .thanks .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 10px;
  background-color: #ffffff;
}
@media (min-width: 1100px) {
  body.thanks .thanks .box {
    gap: 40px;
    padding: 48px 32px;
    flex-direction: row;
  }
}
body.thanks .thanks .box .infos {
  text-align: center;
}
body.thanks .thanks .box .infos .ttl {
  margin: 0 0 32px;
  font-size: 30px;
  font-weight: 800;
  color: #000000;
}
@media (min-width: 1100px) {
  body.thanks .thanks .box .infos .ttl {
    text-align: left;
    font-size: 39px;
  }
}
body.thanks .thanks .box .infos .txt {
  margin: 0 0 32px;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.57;
  color: #000000;
}
@media (min-width: 1100px) {
  body.thanks .thanks .box .infos .txt {
    text-align: left;
    font-size: 25px;
  }
}
body.thanks .thanks .box .infos a {
  display: inline-block;
  padding: 16px 32px;
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  border: 1px solid #000000;
}

.copyright {
  padding: 16px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  background-color: #1c1c1c;
}

#policy main {
  max-width: 800px;
  margin-inline: auto;
  padding: 2em 1em;
}
#policy main .ta_c {
  text-align: center;
}
#policy main .ta_c img {
  display: block;
  margin-inline: auto;
}
#policy main h1 {
  font-size: 32px;
  margin-top: 42px;
}
#policy main h2 {
  font-size: 24px;
  margin-top: 32px;
}
#policy main h3 {
  font-size: 22px;
  margin-top: 32px;
}
#policy main p,
#policy main dl,
#policy main ul {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5;
}
#policy footer {
  background-color: #eee;
  width: 100dvw;
  margin-top: 60px;
}
#policy .footer_in {
  max-width: 500px;
  margin-inline: auto;
  padding: 20px;
}
#policy .footer_in dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 20px;
}
#policy .footer_logo {
  width: 200px;
  height: auto;
  display: block;
  margin-inline: auto;
  margin-bottom: 20px;
}
#policy .copy {
  text-align: center;
  background-color: #323232;
  color: #fff;
  padding: 10px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}/*# sourceMappingURL=styles.css.map */