/* --------------------------------------------- */
/* mixin */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* top */
/* --------------------------------------------- */
.top-kv {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10vh 0;
  z-index: -1;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-kv {
    padding: 5vh 0 10vh;
  }
}
.top-kv .kv01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-kv .kv01 {
    display: none;
  }
}
.top-kv .kv02 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: none;
}
@media screen and (max-width: 768px) {
  .top-kv .kv02 {
    display: block;
  }
}
.top-kv .top-kv-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 70vw;
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner {
    width: 90vw;
  }
}
.top-kv .top-kv-inner .left {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .left {
    width: 100%;
  }
}
.top-kv .top-kv-inner .left .top {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-end;
}
.top-kv .top-kv-inner .left .top span {
  width: 40%;
  padding: 0 20px 5px;
  font-size: 1.6vw;
  font-weight: 900;
  color: var(--white);
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .left .top span {
    font-size: 4.4vw;
  }
}
.top-kv .top-kv-inner .left .top span::before, .top-kv .top-kv-inner .left .top span::after {
  content: "";
  display: block;
  width: 5px;
  height: 5vh;
  background: var(--white);
  position: absolute;
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .left .top span::before, .top-kv .top-kv-inner .left .top span::after {
    height: 4vh;
  }
}
.top-kv .top-kv-inner .left .top span::before {
  left: 0;
  bottom: 0;
  transform: rotate(-10deg);
}
.top-kv .top-kv-inner .left .top span::after {
  right: 0;
  bottom: 0;
  transform: rotate(10deg);
}
.top-kv .top-kv-inner .left .top img {
  width: 50%;
}
.top-kv .top-kv-inner .left .middle {
  margin-top: 5vh;
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .left .middle {
    margin-top: 2.5vh;
  }
}
.top-kv .top-kv-inner .left .middle p {
  font-size: 1.7vw;
  font-weight: 500;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .left .middle p {
    font-size: 4.6vw;
    text-align: center;
  }
}
.top-kv .top-kv-inner .left .middle h1 {
  font-size: 5.5vw;
  font-weight: 600;
  color: var(--yellow);
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .left .middle h1 {
    font-size: 15vw;
    text-align: center;
  }
}
.top-kv .top-kv-inner .left .bottom {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 5vh;
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .left .bottom {
    margin-top: 2.5vh;
  }
}
.top-kv .top-kv-inner .left .bottom img {
  width: 20%;
}
.top-kv .top-kv-inner .left .bottom p {
  width: 70%;
  font-size: 1.4vw;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .left .bottom p {
    font-size: 3.9vw;
  }
}
.top-kv .top-kv-inner .right {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .right {
    width: 100%;
    margin-top: 2.5vh;
  }
}
.top-kv .top-kv-inner .right .top {
  padding: 0 4vw;
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .right .top {
    padding: 0 20vw;
  }
}
.top-kv .top-kv-inner .right .bottom {
  display: flex;
  flex-flow: row nowrap;
  gap: 1vw;
  margin-top: 5vh;
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .right .bottom {
    margin-top: 2.5vh;
  }
}
.top-kv .top-kv-inner .right .bottom li {
  display: flex;
  flex-flow: column;
  text-align: center;
  width: 33.3333333333%;
  padding: 1vh;
  background: var(--white);
  border-radius: 5px;
}
.top-kv .top-kv-inner .right .bottom li div {
  font-size: 1.1vw;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .right .bottom li div {
    font-size: 3vw;
  }
}
.top-kv .top-kv-inner .right .bottom li div span {
  font-size: 1.8vw;
  color: var(--red);
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .top-kv .top-kv-inner .right .bottom li div span {
    font-size: 5vw;
  }
}

/* animation */
.anime-title {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.anime-title .char {
  transform: translateY(100px);
  transition: transform 0.5s;
}

/* top-tagline */
.top-tagline {
  background: url("../img/top_tagline_bk.jpg") no-repeat center center;
  background-size: cover;
}
.top-tagline .top-tagline-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10vh 0 15vh;
}
.top-tagline .top-tagline-inner .left {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .top-tagline .top-tagline-inner .left {
    width: 60%;
    margin: 0 auto;
  }
}
.top-tagline .top-tagline-inner .right {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .top-tagline .top-tagline-inner .right {
    width: 100%;
  }
}
.top-tagline .top-tagline-inner .right li {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 4vh;
  padding: 0 0 5px 40px;
  border-bottom: 2px solid var(--prime);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-tagline .top-tagline-inner .right li {
    font-size: 1rem;
  }
}
.top-tagline .top-tagline-inner .right li::before {
  position: absolute;
  top: 0;
  left: 10px;
  content: "";
  display: block;
  width: 15px;
  height: 25px;
  border: solid var(--prime);
  border-width: 0 5px 5px 0;
  transform-origin: center;
  transform: translateX(-25%) rotate(45deg);
  transition: 0.2s all;
}
.top-tagline .top-tagline-inner .right li strong {
  color: var(--red);
  font-weight: 600;
}

/* top-voc */
.top-voc {
  padding: 10vh 0 15vh;
}
.top-voc dl {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 10vh;
}
.top-voc dl dt {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
  width: 30%;
  padding: 0 2%;
  order: 1;
}
@media screen and (max-width: 1024px) {
  .top-voc dl dt {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .top-voc dl dt {
    width: 100%;
  }
}
.top-voc dl dt .image {
  width: 50%;
  text-align: center;
}
.top-voc dl dt .image img {
  max-width: 100px;
}
@media screen and (max-width: 768px) {
  .top-voc dl dt .image img {
    max-width: 100px;
  }
}
.top-voc dl dt .txt {
  width: 50%;
  padding-left: 2%;
  font-weight: 600;
}
.top-voc dl dt .txt span {
  color: var(--prime);
  font-size: 1.5rem;
  font-weight: 600;
}
.top-voc dl dt .txt div {
  color: var(--prime);
  font-weight: 600;
}
.top-voc dl dd {
  width: 70%;
  padding: 2%;
  border-radius: 10px;
  background: var(--white);
  order: 2;
}
@media screen and (max-width: 1024px) {
  .top-voc dl dd {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .top-voc dl dd {
    width: 100%;
    padding: 5%;
  }
}
.top-voc dl:nth-of-type(2n) dt {
  order: 2;
}
@media screen and (max-width: 768px) {
  .top-voc dl:nth-of-type(2n) dt {
    order: 1;
  }
}
.top-voc dl:nth-of-type(2n) dd {
  order: 1;
}
@media screen and (max-width: 768px) {
  .top-voc dl:nth-of-type(2n) dd {
    order: 2;
  }
}
.top-voc .box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-top: 5vh;
}
.top-voc .box .image {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .top-voc .box .image {
    width: 100%;
  }
}
.top-voc .box .image img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.top-voc .box .txt {
  width: 40%;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .top-voc .box .txt {
    width: 100%;
    font-size: 1rem;
  }
}
.top-voc .box .txt h3 {
  margin-top: 2vh;
  color: var(--prime);
  font-weight: 600;
}
.top-voc .box .txt h3:first-of-type {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-voc .box .txt h3:first-of-type {
    margin-top: 2vh;
  }
}

/* top-reason */
.top-reason {
  background: url("../img/top_reason_bk.jpg") no-repeat center center;
  background-size: cover;
}
.top-reason .top-reason-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10vh 0 15vh;
}
.top-reason .top-reason-inner .image {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.top-reason .top-reason-inner ul {
  display: flex;
  flex-flow: row wrap;
  gap: 2vw;
  margin-top: 5vh;
}
@media screen and (max-width: 768px) {
  .top-reason .top-reason-inner ul {
    gap: 3vh;
  }
}
.top-reason .top-reason-inner ul li {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: calc(33.3333333333% - 1.3333333333vw);
  padding: 1% 0;
  background: var(--white);
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .top-reason .top-reason-inner ul li {
    width: calc(50% - 1vw);
  }
}
@media screen and (max-width: 768px) {
  .top-reason .top-reason-inner ul li {
    width: 100%;
    padding: 1vh 0;
  }
}
.top-reason .top-reason-inner ul li .image {
  width: 20%;
  text-align: center;
}
.top-reason .top-reason-inner ul li .image img {
  max-height: 26px;
}
.top-reason .top-reason-inner ul li p {
  width: 80%;
  padding-right: 5%;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-reason .top-reason-inner ul li p {
    font-size: 1rem;
  }
}
.top-reason .top-reason-inner ul li p strong {
  color: var(--red);
  font-weight: 600;
}
.top-reason .top-reason-inner ul li:last-child p {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .top-reason .top-reason-inner ul li:last-child p {
    font-size: 1.25rem;
  }
}

/* top-help */
.top-help {
  padding: 10vh 0 15vh;
}
.top-help .top-help-inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 10vh;
  overflow: hidden;
  background: var(--white);
}
.top-help .top-help-inner .box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: 60vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-help .top-help-inner .box {
    width: 90vw;
  }
}
.top-help .top-help-inner .box::after {
  content: "";
  position: absolute;
  top: 0;
  width: 42vw;
  height: 100%;
  background: var(--lightblue);
  transform: skewX(-8deg);
  z-index: 2;
}
.top-help .top-help-inner .box .txt {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-help .top-help-inner .box .txt {
    width: 60%;
  }
}
.top-help .top-help-inner .box .txt p {
  font-size: 1.125rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .top-help .top-help-inner .box .txt p {
    font-size: 0.875rem;
  }
}
.top-help .top-help-inner .box .txt h3 {
  display: inline-block;
  margin-top: 10px;
  padding: 0 10%;
  color: var(--prime);
  font-size: 1.375rem;
  font-weight: 600;
  border-bottom: 2px solid var(--prime);
}
@media screen and (max-width: 768px) {
  .top-help .top-help-inner .box .txt h3 {
    padding: 0;
    font-size: 1.125rem;
  }
}
.top-help .top-help-inner .box .image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .top-help .top-help-inner .box .image {
    width: 40%;
  }
}
.top-help .top-help-inner .box .image img {
  -webkit-clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}
.top-help .top-help-inner.left .box::after {
  right: -38vw;
}
.top-help .top-help-inner.right .box::after {
  left: -38vw;
}
.top-help .comment {
  margin-top: 5vh;
  color: var(--red);
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-help .comment {
    font-size: 1.875rem;
  }
}

/* top-flow */
.top-flow {
  background: var(--white);
}
.top-flow .top-flow-inner {
  padding: 10vh 0 15vh;
}
.top-flow .top-flow-inner dl {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  border: 2px solid var(--prime);
}
.top-flow .top-flow-inner dl dt {
  width: 20%;
  padding: 2vh 1vw;
  color: var(--text02);
  font-size: 1.25rem;
  font-weight: 500;
  background: var(--prime);
}
@media screen and (max-width: 768px) {
  .top-flow .top-flow-inner dl dt {
    width: 100%;
    padding: 1vh 3vw;
    font-size: 1rem;
  }
}
.top-flow .top-flow-inner dl dd {
  width: 80%;
  padding: 1vh 1vw;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-flow .top-flow-inner dl dd {
    width: 100%;
    padding: 1vh 3vw;
    font-size: 1rem;
  }
}

/* top-faq */
.top-faq dl {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-top: 10vh;
  border: 2px solid var(--prime);
}
.top-faq dl dt {
  width: 100%;
  padding: 2vh 1vw;
  color: var(--text02);
  font-size: 1.25rem;
  font-weight: 500;
  background: var(--prime);
}
@media screen and (max-width: 768px) {
  .top-faq dl dt {
    padding: 1vh 3vw 2vh;
    font-size: 1rem;
  }
}
.top-faq dl dt::before {
  content: "Q";
  margin-right: 2vw;
  font-size: 1.5rem;
  font-weight: 900;
}
.top-faq dl dd {
  width: 100%;
  padding: 2vh 1vw;
  font-size: 1.25rem;
  font-weight: 500;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .top-faq dl dd {
    padding: 1vh 3vw 2vh;
    font-size: 1rem;
  }
}
.top-faq dl dd::before {
  content: "A";
  margin-right: 2vw;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 900;
}
.top-faq .wrap {
  padding: 10vh 0 15vh;
  background: url("../img/footer_pict01.svg") no-repeat;
  background-position: bottom right;
  background-size: 260px auto;
}
@media screen and (max-width: 768px) {
  .top-faq .wrap {
    background-position: bottom center;
    background-size: 40vw auto;
  }
}

/* --------------------------------------------- */
/* page */
/* --------------------------------------------- */
/* page-privacy */
.page-privacy {
  padding: 10vh 0 15vh;
}
.page-privacy .box {
  margin-top: 5vh;
}
.page-privacy .box h2 {
  font-size: 1.25rem;
  font-weight: 500;
}
.page-privacy .box p {
  margin-top: 2vh;
}
.page-privacy .box ul {
  margin-top: 2vh;
  padding-left: 20px;
}
.page-privacy .box ul li {
  list-style-type: disc;
}

.page-mailform .wrap {
  max-width: 800px;
  padding: 10vh 0 15vh;
}/*# sourceMappingURL=style.css.map */