@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6em;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
  min-height: 100vh;
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp .row {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp .row.wait1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.fadeUp .row.wait2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.fadeUp .row.wait3 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.fadeUp .row.wait4 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeUpTrigger .row,
.fadeInTrigger {
  opacity: 0;
}

@-webkit-keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@-webkit-keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@-webkit-keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*
 * Mixin
 * -------------------------------------------------------------------
 */
.sp-block {
  display: block;
}

.sp-inline {
  display: inline;
}

.tab-inline {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-block,
.sp-inline {
    display: none;
  }
  .tab-inline {
    display: inline;
  }
}
img.sp-hide {
  display: none;
}
@media screen and (min-width: 768px) {
  img.sp-hide {
    display: block;
  }
}
img.sp-show {
  display: block;
}
@media screen and (min-width: 768px) {
  img.sp-show {
    display: none;
  }
}

img.round {
  border-radius: 4vw;
}
@media screen and (min-width: 768px) {
  img.round {
    border-radius: 2.34375vw;
  }
}
@media screen and (min-width: 1280px) {
  img.round {
    border-radius: 30px;
  }
}
img.round.right {
  border-radius: 0 4vw 4vw 0;
}
@media screen and (min-width: 768px) {
  img.round.right {
    border-radius: 0 2.34375vw 2.34375vw 0;
  }
}
@media screen and (min-width: 1280px) {
  img.round.right {
    border-radius: 0 30px 30px 0;
  }
}
img.round.left {
  border-radius: 4vw 0 0 4vw;
}
@media screen and (min-width: 768px) {
  img.round.left {
    border-radius: 2.34375vw 0 0 2.34375vw;
  }
}
@media screen and (min-width: 1280px) {
  img.round.left {
    border-radius: 30px 0 0 30px;
  }
}

/*
 * Module
 * -------------------------------------------------------------------
 */
.mainvisual {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.mainvisual__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 0;
  margin: 0 auto;
  text-align: center;
  padding-top: 170%;
  position: relative;
  z-index: 1;
  background-image: url("../img/main-sp.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .mainvisual__container {
    padding-top: 56.25%;
  }
}
@media screen and (min-width: 768px) {
  .mainvisual__container {
    background-image: url("../img/main.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.mainvisual__text-main {
  font-weight: 500;
  font-family: "Jost";
  padding-top: 1vw;
  padding-left: 8vw;
  font-size: 4.8vw;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .mainvisual__text-main {
    padding-top: 2.11%;
    padding-left: 5.46%;
    font-size: 1.875vw;
  }
}
@media screen and (min-width: 1280px) {
  .mainvisual__text-main {
    font-size: 24px;
  }
}
.mainvisual__text-sub {
  padding-top: 3vw;
  padding-right: 8vw;
  width: 8vw;
  box-sizing: content-box;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .mainvisual__text-sub {
    padding-top: 2.11%;
    padding-right: 5.46%;
    width: 2.73vw;
  }
}
@media screen and (min-width: 1280px) {
  .mainvisual__text-sub {
    width: 35px;
  }
}

.page-heading.fl {
  float: none;
}
@media screen and (min-width: 768px) {
  .page-heading.fl {
    float: left;
  }
}
.page-heading__content {
  margin: 0;
  padding: 0;
}
.page-heading__content--left {
  text-align: left;
}
.page-heading__content--center {
  text-align: center;
}
.page-heading__content--right {
  text-align: right;
}
.page-heading__text-main {
  font-weight: 500;
  font-family: "Jost";
  font-size: 4.8vw;
  color: #999;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-heading__text-main {
    font-size: 1.875vw;
  }
}
@media screen and (min-width: 1280px) {
  .page-heading__text-main {
    font-size: 24px;
  }
}
.page-heading__text-main.col2 {
  color: #344963;
}
.page-heading__text-main.size2 {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.7;
  padding-top: 8vw;
  font-size: 6.4vw;
}
#top-faq .page-heading__text-main.size2 {
  font-weight: 400;
}
#top-howto .page-heading__text-main.size2 {
  font-size: 7.4vw;
}
@media screen and (min-width: 768px) {
  #top-howto .page-heading__text-main.size2 {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 1280px) {
  #top-howto .page-heading__text-main.size2 {
    font-size: 36px;
  }
}
#top-approach .page-heading__text-main.size2 {
  font-size: 7.4vw;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  #top-approach .page-heading__text-main.size2 {
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 1280px) {
  #top-approach .page-heading__text-main.size2 {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .page-heading__text-main.size2 {
    padding-top: 2.34375vw;
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 1280px) {
  .page-heading__text-main.size2 {
    padding-top: 30px;
    font-size: 36px;
  }
}
.page-heading__text-main.size2 > span {
  font-family: inherit;
  font-weight: normal;
  display: block;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .page-heading__text-main.size2 > span {
    font-size: 1.875vw;
  }
}
@media screen and (min-width: 1280px) {
  .page-heading__text-main.size2 > span {
    font-size: 24px;
  }
}
.page-heading__text-main.size3 {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
  font-size: 7.4vw;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .page-heading__text-main.size3 {
    font-size: 2.8125vw;
    padding-left: 4.6875vw;
  }
}
@media screen and (min-width: 1280px) {
  .page-heading__text-main.size3 {
    font-size: 36px;
    padding-left: 60px;
  }
}
.page-heading__text-main.size4 {
  font-weight: 500;
  line-height: 1.4;
  color: #0099E4;
  text-transform: uppercase;
  position: relative;
  font-size: 10.67vw;
  top: 0;
  margin-top: 5.3vw;
}
@media screen and (min-width: 768px) {
  .page-heading__text-main.size4 {
    line-height: 1.2;
    font-size: 6.25vw;
    padding-left: 4.6875vw;
    top: -1.5625vw;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .page-heading__text-main.size4 {
    font-size: 80px;
    padding-left: 60px;
    top: -20px;
  }
}
.page-heading__text-sub {
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  color: #0099E4;
  font-size: 8.5vw;
  padding: 8vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .page-heading__text-sub {
    font-size: 3.75vw;
    padding: 3.125vw 0 0 0;
  }
}
@media screen and (min-width: 1280px) {
  .page-heading__text-sub {
    font-size: 48px;
    padding: 40px 0 0 0;
  }
}
.page-heading__text-sub.col2 {
  font-weight: 500;
  font-family: "Jost";
  color: #344963;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .page-heading__text-sub.col2 {
    line-height: 1.2;
    font-size: 5vw;
    padding: 4.687vw 0 0 0;
  }
  .page-heading__text-sub.col2.type2 {
    font-size: 3.125vw;
    padding: 3.125vw 0 0 0;
  }
}
@media screen and (min-width: 1280px) {
  .page-heading__text-sub.col2 {
    font-size: 64px;
    padding: 60px 0 0 0;
  }
  .page-heading__text-sub.col2.type2 {
    font-size: 40px;
    padding: 40px 0 0 0;
  }
}
.page-heading__text-sub2 {
  font-weight: 500;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0099E4;
  font-size: 4.2vw;
  padding: 8vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .page-heading__text-sub2 {
    font-size: 1.875vw;
    padding: 2.34vw 0 0 0;
  }
}
@media screen and (min-width: 1280px) {
  .page-heading__text-sub2 {
    font-size: 24px;
    padding: 30px 0 0 0;
  }
}
.page-heading__text-sub2.col3 {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #344963;
  letter-spacing: 0.05em;
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .page-heading__text-sub2.col3 {
    font-size: 1.875vw;
  }
}
.page-heading__text-sub2.col2 {
  color: #344963;
  font-family: initial;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: initial;
  font-size: 3.7vw;
  padding: 2.6vw 0 0 0;
}
@media screen and (min-width: 768px) {
  .page-heading__text-sub2.col2 {
    font-size: 1.25vw;
    padding: 1.56vw 0 0 0;
  }
}
@media screen and (min-width: 1280px) {
  .page-heading__text-sub2.col2 {
    font-size: 16px;
    padding: 20px 0 0 0;
  }
}
.page-heading__message {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 6.4rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
}

.page-heading-sub__content {
  margin: 0;
  padding: 0;
}
.page-heading-sub__content--left {
  text-align: left;
}
.page-heading-sub__content--center {
  text-align: center;
}
.page-heading-sub__content--right {
  text-align: right;
}
.page-heading-sub__text {
  position: relative;
  font-size: 2.4rem;
}
.page-heading-sub__text:before {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 1.6em;
  margin-right: 0.8rem;
  border-radius: 3px;
  background: #08aeb0;
  content: "";
}
.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: url(../img/footer/back-sp.jpg) left bottom -27vw no-repeat;
  background-size: 100% auto;
  min-height: 127vw;
}
@media screen and (min-width: 768px) {
  .footer__container {
    background: url(../img/footer/back.jpg) left bottom no-repeat;
    background-size: 100% auto;
    min-height: 40.703125vw;
  }
}
@media screen and (min-width: 1280px) {
  .footer__container {
    min-height: 521px;
  }
}
.footer__delivery {
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  flex-direction: column;
  max-width: 56.27vw;
  padding: 5.3vw 0;
}
.footer__delivery p {
  font-size: 4.267vw;
  text-align: center;
  line-height: 2.4;
}
.footer__delivery figure {
  max-width: 10.67vw;
}
@media screen and (min-width: 768px) {
  .footer__delivery {
    flex-direction: row;
    max-width: 27.96875vw;
    padding: 1.484375vw 3.125vw;
  }
  .footer__delivery p {
    font-size: 1.5625vw;
    line-height: 1.7;
  }
  .footer__delivery figure {
    max-width: 4.6875vw;
  }
}
@media screen and (min-width: 1280px) {
  .footer__delivery {
    max-width: 358px;
    padding: 19px 40px;
  }
  .footer__delivery p {
    font-size: 20px;
  }
  .footer__delivery figure {
    max-width: 60px;
  }
}
.footer__info {
  width: 100%;
  margin: 0 auto;
  color: #fff;
  line-height: 2.2;
  font-weight: bold;
  text-align: center;
  max-width: 100vw;
  padding: 4.53vw 0 5.87vw;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .footer__info {
    text-align: left;
    max-width: 27.1875vw;
    padding: 1.875vw 0 3.4375vw;
    font-size: 1.09375vw;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1280px) {
  .footer__info {
    max-width: 348px;
    padding: 24px 0 44px;
    font-size: 14px;
    white-space: nowrap;
  }
}
.footer__info a, .footer__info a:hover, .footer__info a:active, .footer__info a:visited {
  text-decoration: none;
  color: #fff;
  position: relative;
  display: inline-block;
  width: 100%;
}
.footer__info a:after, .footer__info a:hover:after, .footer__info a:active:after, .footer__info a:visited:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/footer/ico-insta.png) center center no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 12%;
  width: 6.67vw;
  height: 6.67vw;
}
@media screen and (min-width: 768px) {
  .footer__info a:after, .footer__info a:hover:after, .footer__info a:active:after, .footer__info a:visited:after {
    right: 0;
    width: 1.953125vw;
    height: 1.953125vw;
  }
}
@media screen and (min-width: 1280px) {
  .footer__info a:after, .footer__info a:hover:after, .footer__info a:active:after, .footer__info a:visited:after {
    right: 0;
    width: 25px;
    height: 25px;
  }
}
.footer__copy {
  font-weight: 500;
  font-family: "Jost";
  color: #fff;
  text-align: center;
  line-height: 1.7;
  padding: 5.3vw 0 7.4vw;
  font-size: 3.2vw;
  border-top: 1px solid #fff;
  width: 100%;
  max-width: 84vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    padding: 1.5625vw 0 2.34375vw;
    font-size: 0.9375vw;
    max-width: 75vw;
  }
}
@media screen and (min-width: 1280px) {
  .footer__copy {
    padding: 20px 0 30px;
    font-size: 12px;
    max-width: 960px;
  }
}

.btn {
  font-weight: 500;
  font-family: "Jost";
  letter-spacing: 0.15em;
  width: 100%;
  display: block;
  text-align: center;
  background-color: #fff;
  color: #344963;
  border: 0.53vw solid #344963;
  border-radius: 2.6vw;
  max-width: 53.3vw;
  padding: 3.46vw;
  margin: 10.67vw 0 5.3vw;
  font-size: 3.73vw;
}
.btn:hover {
  background-color: #344963;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .btn {
    border: 0.15625vw solid #344963;
    border-radius: 0.78125vw;
    max-width: 15.625vw;
    padding: 1.015625vw;
    margin: 1.5625vw 0;
    font-size: 1.09375vw;
  }
}
@media screen and (min-width: 1280px) {
  .btn {
    border: 2px solid #344963;
    border-radius: 10px;
    max-width: 200px;
    padding: 13px;
    margin: 20px 0;
    font-size: 14px;
  }
}
.btn.type2 {
  background-color: transparent;
  color: #344963;
}
.btn.type2:hover {
  background-color: #344963;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .btn.type2 {
    max-width: 20.3125vw;
    padding: 1.25vw;
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1280px) {
  .btn.type2 {
    max-width: 260px;
    padding: 16px;
    font-size: 16px;
  }
}

.button-detail {
  display: flex;
  flex-wrap: wrap;
  max-width: 60rem;
  margin: 0 auto;
}
.button-detail .button-detail__button--next, .button-detail .button-detail__button--prev, .button-detail .button-detail__button--back, .button-detail .button-detail__button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  margin-bottom: 2.4rem;
  padding: 1.6rem 2.4rem;
  border-radius: 0.4rem;
  background: #eeeeee;
  color: #222222;
}
.button-detail .button-detail__button--next:hover, .button-detail .button-detail__button--prev:hover, .button-detail .button-detail__button--back:hover, .button-detail .button-detail__button:hover, .button-detail .button-detail__button--next:focus, .button-detail .button-detail__button--prev:focus, .button-detail .button-detail__button--back:focus, .button-detail .button-detail__button:focus {
  background: #08aeb0;
  color: #ffffff;
}
.button-detail__button--back {
  width: 100%;
}
.button-detail__button--back:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e896";
  margin-right: 0.8rem;
}
.button-detail__button--prev {
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .button-detail__button--prev {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}
.button-detail__button--prev:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cb";
  margin-right: 0.8rem;
}
.button-detail__button--next {
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .button-detail__button--next {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}
.button-detail__button--next:after {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cc";
  margin-left: 0.8rem;
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * Page
 * -------------------------------------------------------------------
 */
.top-concept__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  padding: 23.2vw 0 26.67vw;
}
@media screen and (min-width: 768px) {
  .top-concept__container {
    padding: 7.81vw 0 12.5vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__container {
    padding: 100px 0 160px;
  }
}
.top-concept__heading {
  margin-bottom: 6.4rem;
}
@media screen and (min-width: 768px) {
  .top-concept__content {
    display: flex;
  }
}
.top-concept__content.center {
  align-items: center;
}
.top-concept__content:first-child .top-concept__content-image {
  position: absolute;
  width: 46.67vw;
  right: 0;
  top: 104vw;
  z-index: 1;
}
.top-concept__content:last-child .top-concept__content-image {
  width: 68.67vw;
}
@media screen and (min-width: 768px) {
  .top-concept__content:first-child .top-concept__content-image {
    position: relative;
    right: unset;
    top: unset;
    width: 38.28%;
  }
  .top-concept__content:last-child .top-concept__content-image {
    width: 54.68%;
  }
}
.top-concept__content-text {
  flex: 1;
  padding: 0;
  text-align: left;
  padding: 0 8vw;
}
@media screen and (min-width: 768px) {
  .top-concept__content-text {
    padding: 0 5.469vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__content-text {
    padding: 0 70px;
  }
}
.top-concept__content-text:first-child {
  background: url("../img/concept/back.jpg") left 40vw no-repeat;
  background-size: 70vw;
  padding-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  .top-concept__content-text:first-child {
    background: url("../img/concept/back.jpg") left 11.5vw no-repeat;
    background-size: 40.8vw;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__content-text:first-child {
    background: url("../img/concept/back.jpg") left 148px no-repeat;
    background-size: 523px;
  }
}
@media screen and (min-width: 768px) {
  .top-concept__content-text:last-child {
    padding-left: 7.031vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__content-text:last-child {
    padding-left: 90px;
  }
}
.top-concept__content-text p {
  color: #344963;
  line-height: 2.5;
  font-size: 4.26vw;
  padding-top: 8vw;
}
@media screen and (min-width: 768px) {
  .top-concept__content-text p {
    padding-top: 0;
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-concept__content-text p {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .top-concept__content-text-inner {
    padding: 0 8vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .top-concept__content-text-inner {
    padding: 0 5.469vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .top-concept__content-text-inner {
    padding: 0 70px;
  }
}
.top-concept__guide {
  padding-top: 6.4rem;
}

.top-product__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  padding: 13.3vw 8vw 26.6vw;
  background: url("../img/product/back-sp.jpg") left top repeat-x;
  background-size: 100% 120vw;
  min-height: 600px;
}
@media screen and (min-width: 768px) {
  .top-product__container {
    background: url("../img/product/back.jpg") left top repeat-x;
    background-size: 100% 46.8vw;
    padding: 7.81vw 10.9vw 12.5vw;
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__container {
    background-size: initial;
    padding: 100px 140px 160px;
  }
}
#top-product2 .top-product__container {
  flex-direction: row-reverse;
  background: none;
  padding-top: 5.33vw;
}
@media screen and (min-width: 768px) {
  #top-product2 .top-product__container {
    padding-top: 7.81vw;
    background: url("../img/product/product-back.jpg") center center no-repeat;
    background-size: cover;
    min-height: 78.125vw;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  #top-product2 .top-product__container {
    min-height: 1000px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .top-product__heading {
    width: 56%;
  }
}
@media screen and (min-width: 768px) {
  .top-product__heading__inner {
    padding: 0 4.687vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__heading__inner {
    padding: 0 60px;
  }
}
@media screen and (min-width: 768px) {
  #top-product2 .top-product__heading {
    width: 51.4%;
  }
}
@media screen and (min-width: 768px) {
  #top-product2 .top-product__heading__inner {
    padding: 0 2.890625vw;
  }
}
@media screen and (min-width: 1280px) {
  #top-product2 .top-product__heading__inner {
    padding: 0 37px;
  }
}
#top-product2 .top-product__heading__inner.feature {
  padding-right: 0;
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  #top-product2 .top-product__heading__inner.feature {
    margin-top: 2.34375vw;
  }
}
@media screen and (min-width: 1280px) {
  #top-product2 .top-product__heading__inner.feature {
    margin-top: 60px;
  }
}
#top-product2 .top-product__heading__inner.feature .feature_list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 4vw;
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  #top-product2 .top-product__heading__inner.feature .feature_list {
    gap: 1.5625vw;
    margin-top: 1.5625vw;
    width: 108%;
  }
}
@media screen and (min-width: 1280px) {
  #top-product2 .top-product__heading__inner.feature .feature_list {
    gap: 20px;
    margin-top: 20px;
  }
}
#top-product2 .top-product__heading__inner.feature .feature_list li {
  box-sizing: border-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.7;
  border: 0.53vw solid #0099E4;
  border-radius: 1.3vw;
  color: #0099E4;
  padding: 2.6vw 4.8vw;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  #top-product2 .top-product__heading__inner.feature .feature_list li {
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    padding: 0.78125vw 1.4vw;
    font-size: 1.25vw;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1280px) {
  #top-product2 .top-product__heading__inner.feature .feature_list li {
    padding: 10px 18px;
    font-size: 16px;
  }
}
#top-product2 .top-product__heading__inner.feature .feature_list.type2 li {
  color: #fff;
  background: #0099E4;
  border: 2px solid #0099E4;
}
.top-product__heading .price {
  font-weight: 500;
  font-family: "Jost";
  line-height: 1.7;
  color: #344963;
  border-bottom: 1px solid #344963;
  padding: 2.67vw 0;
  font-size: 4vw;
  width: 53.3vw;
}
@media screen and (min-width: 768px) {
  .top-product__heading .price {
    width: 100%;
    font-size: 2.5vw;
    padding: 0.78125vw 0;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__heading .price {
    font-size: 32px;
    padding: 10px 0;
  }
}
.top-product__heading .price .price_tax {
  font-family: initial;
  line-height: 1.7;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .top-product__heading .price .price_tax {
    font-size: 1.09375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__heading .price .price_tax {
    font-size: 14px;
  }
}
.top-product__heading .price .amount {
  line-height: 1.7;
  font-size: 3.7vw;
}
@media screen and (min-width: 768px) {
  .top-product__heading .price .amount {
    font-size: 1.40625vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__heading .price .amount {
    font-size: 18px;
  }
}
.top-product__heading .description {
  color: #344963;
  line-height: 1.7;
  font-size: 3.2vw;
  padding: 2.6vw 0;
  width: 53.3vw;
}
@media screen and (min-width: 768px) {
  .top-product__heading .description {
    width: 100%;
    font-size: 1.09375vw;
    padding: 1.5625vw 0;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__heading .description {
    font-size: 14px;
    padding: 20px 0;
  }
}
.top-product__heading .attention {
  color: #7D7D7D;
  line-height: 1.7;
  font-feature-settings: "palt";
  font-size: 2.66vw;
}
@media screen and (min-width: 768px) {
  .top-product__heading .attention {
    font-size: 0.9375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__heading .attention {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  #top-product2 .top-product__heading .attention {
    color: #344963;
  }
}
.top-product__heading .alert {
  width: 100%;
  background: #FFFFFF;
  padding: 0;
  border-radius: 2.6vw;
  margin-top: 4vw;
  border: 1.1vw solid #FF8A00;
}
@media screen and (min-width: 768px) {
  .top-product__heading .alert {
    border-radius: 0.78125vw;
    margin-top: 1.5625vw;
    border: 0.3125vw solid #FF8A00;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__heading .alert {
    border-radius: 10px;
    margin-top: 20px;
    border: 4px solid #FF8A00;
  }
}
.top-product__heading .alert figure {
  float: left;
  width: 100%;
  max-width: 18.6vw;
  margin: 2vw 3vw;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-product__heading .alert figure {
    max-width: 7.8125vw;
    margin: 0 0.78125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__heading .alert figure {
    max-width: 100px;
    margin: 0 10px;
  }
}
.top-product__heading .alert h4 {
  background-color: #FF8A00;
  font-weight: 700;
  color: #FFFFFF;
  border-radius: 1vw 1vw 0 0;
  position: relative;
  top: -0.5vw;
  font-size: 2.6vw;
  padding: 1.8vw 1.8vw 1.8vw 33vw;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .top-product__heading .alert h4 {
    border-radius: 0.2vw 0.2vw 0 0;
    top: -1px;
    font-size: 0.9375vw;
    padding: 0.390625vw 0.78125vw 0.703125vw 13.28125vw;
    line-height: 1.40625vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__heading .alert h4 {
    font-size: 12px;
    padding: 5px 10px 9px 170px;
    line-height: 18px;
  }
}
.top-product__heading .alert h4 img {
  display: inline-block;
  vertical-align: bottom;
  width: 4.8vw;
  height: 4.352vw;
}
@media screen and (min-width: 768px) {
  .top-product__heading .alert h4 img {
    width: 1.5625vw;
    height: 1.40625vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__heading .alert h4 img {
    width: 20px;
    height: 18px;
  }
}
.top-product__heading .alert p {
  font-size: 2.6vw;
  padding: 1.8vw 1vw 1.8vw 24vw;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .top-product__heading .alert p {
    font-feature-settings: unset;
    font-size: 0.9375vw;
    padding: 0.78125vw 1.171875vw 0.78125vw 9.375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__heading .alert p {
    font-size: 12px;
    padding: 10px 15px 10px 120px;
  }
}
.top-product__content {
  position: absolute;
  top: 29vw;
  right: 5.33vw;
  width: 29.3vw;
}
@media screen and (min-width: 768px) {
  .top-product__content {
    position: relative;
    top: unset;
    right: unset;
    width: 100%;
    flex: 1;
  }
}
.top-product__content figure {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-product__content figure {
    max-width: 17.1875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-product__content figure {
    max-width: 220px;
  }
}
.top-product__text {
  color: #aaaaaa;
  font-size: 1.6rem;
}
.top-product__guide {
  padding-top: 6.4rem;
}

.top-problem {
  position: relative;
}
.top-problem::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 20vw solid transparent;
  border-right: 20vw solid transparent;
  border-top: 13vw solid rgba(0, 153, 228, 0.05);
}
@media screen and (min-width: 768px) {
  .top-problem::after {
    border-left: 11.71875vw solid transparent;
    border-right: 11.71875vw solid transparent;
    border-top: 5.859375vw solid rgba(0, 153, 228, 0.05);
  }
}
@media screen and (min-width: 1280px) {
  .top-problem::after {
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-top: 75px solid rgba(0, 153, 228, 0.05);
  }
}
.top-problem__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  padding: 21.3vw 8vw 16vw;
  background: rgba(0, 153, 228, 0.05);
  min-height: 600px;
}
@media screen and (min-width: 768px) {
  .top-problem__container {
    padding: 6.25vw 10.9vw 7.8125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-problem__container {
    padding: 80px 140px 100px;
  }
}
.top-problem__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-bottom: 20vw;
}
@media screen and (min-width: 768px) {
  .top-problem__content {
    padding-bottom: 0;
    flex-direction: row;
    margin-top: 4.6875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-problem__content {
    margin-top: 60px;
  }
}
.top-problem__content > figure {
  width: 100%;
  margin: 10.67vw 0 8vw;
}
@media screen and (min-width: 768px) {
  .top-problem__content > figure {
    margin-top: 0;
    width: 40%;
  }
}
.top-problem__content > div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-problem__content > div {
    width: 48%;
    margin-right: 1.5625vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-problem__content > div {
    margin-right: 20px;
  }
}
.top-problem__content > div > p {
  background: rgba(153, 153, 153, 0.2);
  line-height: 2.5;
  font-weight: 700;
  color: #344963;
  display: block;
  position: relative;
  font-size: 3.7vw;
  border-radius: 4vw;
  padding: 5.3vw 4vw;
}
.top-problem__content > div > p:after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/problem/fukidashi.png) left top no-repeat;
  background-size: contain;
  left: 32vw;
  bottom: -14vw;
  width: 14.67vw;
  height: 12vw;
}
@media screen and (min-width: 768px) {
  .top-problem__content > div > p:after {
    left: 14.84375vw;
    bottom: -6.25vw;
    width: 5.46875vw;
    height: 4.6875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-problem__content > div > p:after {
    left: 190px;
    bottom: -80px;
    width: 70px;
    height: 60px;
  }
}
@media screen and (min-width: 768px) {
  .top-problem__content > div > p {
    font-size: 1.40625vw;
    border-radius: 2.34375vw;
    padding: 2.34375vw 3.125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-problem__content > div > p {
    font-size: 18px;
    border-radius: 30px;
    padding: 30px 40px;
  }
}
.top-problem__content > div > figure {
  float: right;
  position: relative;
  width: 37.3vw;
  top: -6vw;
}
@media screen and (min-width: 768px) {
  .top-problem__content > div > figure {
    width: 15.625vw;
    top: -1.5625vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-problem__content > div > figure {
    width: 200px;
    top: -20px;
  }
}
@media screen and (min-width: 768px) {
  .top-problem__content + .page-heading {
    margin-top: 2.34375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-problem__content + .page-heading {
    margin-top: 30px;
  }
}
.top-problem__content_col2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin-top: 10.67vw;
  gap: 8vw;
}
@media screen and (min-width: 768px) {
  .top-problem__content_col2 {
    flex-direction: row;
    margin-top: 3.125vw;
    gap: 4.6875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-problem__content_col2 {
    margin-top: 40px;
    gap: 60px;
  }
}
.top-problem__content_col2 + .top-problem__content_col2 {
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .top-problem__content_col2 + .top-problem__content_col2 {
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 4.6875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-problem__content_col2 + .top-problem__content_col2 {
    margin-top: 60px;
  }
}
.top-problem__content_col2 > figure {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-problem__content_col2 > figure {
    width: 50%;
  }
}
.top-problem__content_col2 > div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-problem__content_col2 > div {
    width: 340px;
  }
}
.top-problem__content_col2 > div span {
  color: #0099E4;
  font-size: 3.7vw;
}
@media screen and (min-width: 768px) {
  .top-problem__content_col2 > div span {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-problem__content_col2 > div span {
    font-size: 16px;
  }
}
.top-problem__content_col2 > div h3 {
  color: #344963;
  font-size: 6.4vw;
  padding: 2.6vw 0 5.3vw;
}
@media screen and (min-width: 768px) {
  .top-problem__content_col2 > div h3 {
    font-size: 2.5vw;
    padding: 0.78125vw 0 3.125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-problem__content_col2 > div h3 {
    font-size: 32px;
    padding: 10px 0 40px;
  }
}
.top-problem__content_col2 > div p {
  color: #344963;
  font-size: 3.7vw;
}
@media screen and (min-width: 768px) {
  .top-problem__content_col2 > div p {
    font-size: 1.40625vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-problem__content_col2 > div p {
    font-size: 18px;
  }
}

.top-approach {
  background: url(../img/approach/back-sp.jpg) left top no-repeat;
  background-size: 100vw auto;
}
@media screen and (min-width: 768px) {
  .top-approach {
    background: url(../img/approach/back.jpg) left top no-repeat;
    background-size: 49.21875vw auto;
  }
}
@media screen and (min-width: 1280px) {
  .top-approach {
    background-size: 630px auto;
  }
}
.top-approach__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  padding: 25.8vw 8vw 45vw;
  min-height: 600px;
}
@media screen and (min-width: 768px) {
  .top-approach__container {
    padding: 10.546875vw 10.9vw 13.28125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-approach__container {
    padding: 135px 140px 170px;
  }
}
.top-approach__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column-reverse;
  margin-top: 10.67vw;
  gap: 10.67vw;
}
@media screen and (min-width: 768px) {
  .top-approach__content {
    flex-direction: row;
    gap: 4.6875vw;
    margin-top: 3.125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-approach__content {
    gap: 60px;
    margin-top: 40px;
  }
}

.top-howto__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  padding: 21.3vw 0 93vw;
  flex-direction: row-reverse;
  background: rgba(0, 153, 228, 0.1) url("../img/howto/back-sp.png") left bottom no-repeat;
  background-size: 100vw;
}
@media screen and (min-width: 768px) {
  .top-howto__container {
    background: url("../img/howto/back.jpg") center top no-repeat;
    background-size: contain;
    padding: 6.25vw 0;
    min-height: 62.1875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-howto__container {
    padding: 80px 0;
    min-height: 796px;
  }
}
.top-howto__content-text {
  padding: 0;
  text-align: left;
  box-sizing: content-box;
  padding: 0 8vw;
}
@media screen and (min-width: 768px) {
  .top-howto__content-text {
    padding: 0 5.469vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-howto__content-text {
    padding: 0 70px;
  }
}
@media screen and (min-width: 768px) {
  .top-howto__content-text {
    max-width: 46.875vw;
    padding-left: 42.1875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-howto__content-text {
    max-width: 600px;
    padding-left: 540px;
  }
}
.top-howto__content-text p {
  color: #344963;
  line-height: 2.5;
}
@media screen and (min-width: 768px) {
  .top-howto__content-text p {
    padding-top: 9.375vw;
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-howto__content-text p {
    padding-top: 120px;
    font-size: 16px;
  }
}
.top-howto__content-text2 {
  padding: 0;
  text-align: left;
  box-sizing: content-box;
  padding: 0 8vw;
  margin-top: 10.67vw;
}
@media screen and (min-width: 768px) {
  .top-howto__content-text2 {
    padding: 0 5.469vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-howto__content-text2 {
    padding: 0 70px;
  }
}
@media screen and (min-width: 768px) {
  .top-howto__content-text2 {
    max-width: 39.0625vw;
    padding-left: 55.3125vw;
    margin-top: 7.03125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-howto__content-text2 {
    max-width: 500px;
    padding-left: 708px;
    margin-top: 90px;
  }
}
.top-howto__content-text2 .timeline {
  color: #344963;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 3.4vw;
  background: url(../img/howto/arrow.png) 14.345vw 3vw no-repeat;
  background-size: 2vw auto;
}
@media screen and (min-width: 768px) {
  .top-howto__content-text2 .timeline {
    font-size: 1.40625vw;
    background: url(../img/howto/arrow.png) 6.40625vw 0.78125vw no-repeat;
    background-size: 0.9375vw 23vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-howto__content-text2 .timeline {
    font-size: 18px;
    background: url(../img/howto/arrow.png) 82px 10px no-repeat;
  }
}
.top-howto__content-text2 .timeline > li {
  overflow: hidden;
  margin: 0;
  position: relative;
}
.top-howto__content-text2 .timeline .timeline-date {
  font-weight: 500;
  font-family: "Jost";
  line-height: 1.9;
  color: #0099E4;
  float: left;
  width: 18vw;
}
@media screen and (min-width: 768px) {
  .top-howto__content-text2 .timeline .timeline-date {
    width: 6.796875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-howto__content-text2 .timeline .timeline-date {
    width: 87px;
  }
}
.top-howto__content-text2 .timeline .timeline-content {
  float: left;
  padding-left: 25px;
  line-height: 1.7;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .top-howto__content-text2 .timeline .timeline-content {
    padding-left: 1.953125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-howto__content-text2 .timeline .timeline-content {
    padding-left: 25px;
  }
}
.top-howto__content-text2 .timeline .timeline-content > p {
  padding-bottom: 5.3vw;
}
@media screen and (min-width: 768px) {
  .top-howto__content-text2 .timeline .timeline-content > p {
    padding-bottom: 3.125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-howto__content-text2 .timeline .timeline-content > p {
    padding-bottom: 40px;
  }
}
.top-howto__content-text2 .timeline .timeline-content.start {
  color: #999999;
}
.top-howto__content-text2 .timeline .timeline-content:before {
  content: "";
  background: #0099E4;
  position: absolute;
  border-radius: 100%;
  width: 2.6vw;
  height: 2.6vw;
  left: 14vw;
  top: 1.7vw;
}
@media screen and (min-width: 768px) {
  .top-howto__content-text2 .timeline .timeline-content:before {
    width: 0.78125vw;
    height: 0.78125vw;
    left: 6.484375vw;
    top: 0.78125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-howto__content-text2 .timeline .timeline-content:before {
    width: 10px;
    height: 10px;
    left: 83px;
    top: 10px;
  }
}
.top-howto__content-text2 .timeline .timeline-content.end {
  font-weight: 500;
  font-family: "Jost";
  border-left: 0;
  color: #0099E4;
  font-weight: 700;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .top-howto__content-text2 .timeline .timeline-content.end {
    font-size: 1.875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-howto__content-text2 .timeline .timeline-content.end {
    font-size: 24px;
  }
}
.top-howto__content-text2 .timeline .timeline-content.end:before {
  display: none;
}

.top-situation__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  padding: 0;
  padding-bottom: 53.3vw;
  background: url(../img/situation/back-sp.jpg) left bottom no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .top-situation__container {
    background: url(../img/situation/back.jpg) left bottom no-repeat;
    background-size: 100% auto;
    padding: 0;
    padding-bottom: 31.25vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-situation__container {
    padding: 0;
    padding-bottom: 400px;
  }
}
.top-situation__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 8vw;
  padding-top: 10.67vw;
}
@media screen and (min-width: 768px) {
  .top-situation__header {
    padding: 0 5.469vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-situation__header {
    padding: 0 70px;
  }
}
@media screen and (min-width: 768px) {
  .top-situation__header {
    padding-top: 4.6875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-situation__header {
    padding-top: 60px;
  }
}
.top-situation__header .page-heading.fl {
  float: none;
}
@media screen and (min-width: 768px) {
  .top-situation__header .page-heading.fl {
    float: left;
  }
}
.top-situation__content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top-situation__content {
    flex-direction: row;
  }
}
.top-situation__content div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  line-height: 1.7;
  min-height: 93.3vw;
  font-size: 7.4vw;
}
@media screen and (min-width: 768px) {
  .top-situation__content div {
    min-height: 56.25vw;
    font-size: 2.8125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-situation__content div {
    min-height: 720px;
    font-size: 36px;
  }
}
.top-situation__content div span {
  font-weight: 500;
  font-family: "Jost";
  font-size: 9.6vw;
}
@media screen and (min-width: 768px) {
  .top-situation__content div span {
    font-size: 3.75vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-situation__content div span {
    font-size: 48px;
  }
}
.top-situation__content div:nth-of-type(1) {
  background: url(../img/situation/01.jpg) center center no-repeat;
  background-size: 100% auto;
  padding-top: 24vw;
}
@media screen and (min-width: 768px) {
  .top-situation__content div:nth-of-type(1) {
    padding-top: 0;
  }
}
.top-situation__content div:nth-of-type(2) {
  background: url(../img/situation/02.jpg) center center no-repeat;
  background-size: 100% auto;
}
.top-situation__content div:nth-of-type(3) {
  background: url(../img/situation/03.jpg) center center no-repeat;
  background-size: 100% auto;
}

.top-story__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  padding: 16vw 0 12.5vw;
}
@media screen and (min-width: 768px) {
  .top-story__container {
    padding: 9.140625vw 0 12.5vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__container {
    padding: 117px 0 160px;
  }
}
.top-story__header {
  padding: 0 8vw;
}
@media screen and (min-width: 768px) {
  .top-story__header {
    padding: 0 5.469vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__header {
    padding: 0 70px;
  }
}
.top-story__content {
  clear: both;
  background: url(../img/story/back-sp.jpg) left 0 no-repeat;
  background-size: 100%;
  margin-top: 10.67vw;
  padding-top: 50vw;
}
@media screen and (min-width: 768px) {
  .top-story__content {
    background: url(../img/story/back.jpg) left 4.6875vw no-repeat;
    background-size: 100%;
    margin-top: 0;
    padding-top: 50vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content {
    background: url(../img/story/back.jpg) left 60px no-repeat;
    background-size: 100%;
    padding-top: 640px;
  }
}
.top-story__content img {
  border-radius: 4vw;
}
@media screen and (min-width: 768px) {
  .top-story__content img {
    border-radius: 2.34375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content img {
    border-radius: 30px;
  }
}
.top-story__content img.right {
  border-radius: 0 4vw 4vw 0;
}
@media screen and (min-width: 768px) {
  .top-story__content img.right {
    border-radius: 0 2.34375vw 2.34375vw 0;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content img.right {
    border-radius: 0 30px 30px 0;
  }
}
.top-story__content img.left {
  border-radius: 4vw 0 0 4vw;
}
@media screen and (min-width: 768px) {
  .top-story__content img.left {
    border-radius: 2.34375vw 0 0 2.34375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content img.left {
    border-radius: 30px 0 0 30px;
  }
}
.top-story__content > h3 {
  font-weight: 500;
  font-family: "Jost";
  line-height: 120%;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(0, 153, 228, 0.2);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 17vw;
  padding: 16vw 0 0 8vw;
  letter-spacing: 1vw;
}
@media screen and (min-width: 768px) {
  .top-story__content > h3 {
    padding: 0 7.8125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content > h3 {
    padding: 0 100px;
  }
}
@media screen and (min-width: 768px) {
  .top-story__content > h3 {
    letter-spacing: 14px;
    font-size: 9.375vw;
    padding: 0;
    padding-top: 12.5vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content > h3 {
    font-size: 120px;
    padding-top: 160px;
  }
}
.top-story__content .story-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 0 8vw;
  gap: 8vw;
  padding-top: 16vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-story__content .story-item {
    padding-top: 0;
    flex-direction: row;
    padding-left: 7.8125vw;
    padding-right: 0;
    gap: 6.25vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .story-item {
    padding-left: 100px;
    gap: 80px;
  }
}
.top-story__content .story-item + .story-item {
  margin-top: 16vw;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .top-story__content .story-item + .story-item {
    margin-top: 4.6875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .story-item + .story-item {
    margin-top: 60px;
  }
}
.top-story__content .story-item.reverse {
  padding-left: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 8vw;
}
@media screen and (min-width: 768px) {
  .top-story__content .story-item.reverse {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 7.8125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .story-item.reverse {
    padding-right: 100px;
  }
}
.top-story__content .story-item.reverse div p {
  margin: 0 0 0 auto;
}
.top-story__content .story-item.reverse > figure {
  margin: 0 0 0 auto;
}
.top-story__content .story-item > figure {
  width: 48vw;
  margin: 0 auto 0 0;
}
@media screen and (min-width: 768px) {
  .top-story__content .story-item > figure {
    width: 35.15625vw;
    margin: 0;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .story-item > figure {
    width: 450px;
  }
}
.top-story__content .story-item > div {
  flex: 1;
}
.top-story__content .story-item > div p {
  text-align: justify;
  color: #344963;
  line-height: 2.5;
  font-size: 3.73vw;
}
@media screen and (min-width: 768px) {
  .top-story__content .story-item > div p {
    width: 35.15625vw;
    font-size: 1.09375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .story-item > div p {
    width: 450px;
    font-size: 14px;
  }
}
.top-story__content .story-item > div h3 {
  font-weight: 500;
  font-family: "Jost";
  line-height: 120%;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(0, 153, 228, 0.2);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 17vw;
  letter-spacing: 1vw;
}
@media screen and (min-width: 768px) {
  .top-story__content .story-item > div h3 {
    position: relative;
    letter-spacing: 1.09375vw;
    font-size: 9.375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .story-item > div h3 {
    letter-spacing: 14px;
    font-size: 120px;
  }
}
.top-story__content .story-item.back1:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  background: url(../img/story/back1.jpg) center center no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-story__content .story-item.back1:before {
    bottom: -46.875vw;
    width: 54.6875vw;
    height: 78.125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .story-item.back1:before {
    bottom: -600px;
    width: 700px;
    height: 1000px;
  }
}
.top-story__content .about-us-item {
  display: flex;
  flex-direction: column;
  margin-top: 10.67vw;
  gap: 8vw;
  position: relative;
}
.top-story__content .about-us-item.reverse {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top-story__content .about-us-item.reverse {
    flex-direction: row-reverse;
  }
}
.top-story__content .about-us-item.reverse > figure {
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  .top-story__content .about-us-item.reverse > figure {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .top-story__content .about-us-item {
    flex-direction: row;
    gap: 5.46875vw;
    margin-top: 4.6875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .about-us-item {
    gap: 70px;
    margin-top: 60px;
  }
}
.top-story__content .about-us-item > figure {
  z-index: 2;
  width: 82.67vw;
}
@media screen and (min-width: 768px) {
  .top-story__content .about-us-item > figure {
    width: 48.4375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .about-us-item > figure {
    width: 620px;
  }
}
.top-story__content .about-us-item > div {
  z-index: 2;
  width: 84vw;
  margin: 0 auto;
  font-size: 3.7vw;
}
@media screen and (min-width: 768px) {
  .top-story__content .about-us-item > div {
    margin: 0;
    width: 35.15625vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .about-us-item > div {
    width: 450px;
  }
}
.top-story__content .about-us-item > div .mt30 {
  padding-top: 8vw;
}
@media screen and (min-width: 768px) {
  .top-story__content .about-us-item > div .mt30 {
    padding-top: 2.34375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .about-us-item > div .mt30 {
    padding-top: 30px;
  }
}
.top-story__content .about-us-item > div .mt40 {
  padding-top: 10.67vw;
}
@media screen and (min-width: 768px) {
  .top-story__content .about-us-item > div .mt40 {
    padding-top: 3.125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .about-us-item > div .mt40 {
    padding-top: 40px;
  }
}
.top-story__content .about-us-item > div .mt60 {
  padding-top: 16vw;
}
@media screen and (min-width: 768px) {
  .top-story__content .about-us-item > div .mt60 {
    padding-top: 5vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .about-us-item > div .mt60 {
    padding-top: 64px;
  }
}
@media screen and (min-width: 768px) {
  .top-story__content .about-us-item > div {
    font-size: 1.09375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .about-us-item > div {
    font-size: 14px;
  }
}
.top-story__content .about-us-item > div .job {
  line-height: 1.4;
  color: #344963;
}
.top-story__content .about-us-item > div .job2 {
  line-height: 1.4;
  color: #999999;
}
.top-story__content .about-us-item > div .profile {
  line-height: 1.7;
  color: #344963;
}
.top-story__content .about-us-item#developer {
  background: url(../img/story/back2.jpg) right bottom no-repeat;
  background-size: 70vw auto;
}
@media screen and (min-width: 768px) {
  .top-story__content .about-us-item#developer {
    background: url(../img/story/back2.jpg) right bottom -5.46875vw no-repeat;
    background-size: 30.46875vw auto;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .about-us-item#developer {
    background: url(../img/story/back2.jpg) right bottom -70px no-repeat;
    background-size: 390px auto;
  }
}
.top-story__content .about-us-item#ambassador:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  bottom: -150px;
  left: -80px;
  width: 90vw;
  height: 90vw;
  background: url(../img/story/back3.jpg) center center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .top-story__content .about-us-item#ambassador:before {
    bottom: -19.140625vw;
    left: 29%;
    width: 39.6875vw;
    height: 40.15625vw;
    background: url(../img/story/back3.jpg) center center no-repeat;
    background-size: contain;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .about-us-item#ambassador:before {
    bottom: -245px;
    left: 29%;
    width: 508px;
    height: 514px;
  }
}
.top-story__content > .line {
  height: 1px;
  margin: 0 auto;
  background: #C2C2C2;
  width: 84vw;
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  .top-story__content > .line {
    width: 78.125vw;
    margin-top: 4.6875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content > .line {
    width: 1000px;
    margin-top: 60px;
  }
}
.top-story__content > .line + .about-us-item {
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  .top-story__content > .line + .about-us-item {
    margin-top: 4.6875vw;
  }
}
.top-story__content .scroll {
  width: 100%;
  text-align: center;
  overflow: hidden;
  padding-top: 26.7vw;
}
@media screen and (min-width: 768px) {
  .top-story__content .scroll {
    padding-top: 12.5vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .scroll {
    padding-top: 160px;
  }
}
.top-story__content .scroll span {
  font-weight: 500;
  font-family: "Jost";
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 16vw;
  background: linear-gradient(180deg, rgba(0, 153, 228, 0.6) 0%, rgba(0, 209, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  -webkit-animation: scrollAnime 30s linear infinite;
          animation: scrollAnime 30s linear infinite;
}
@media screen and (min-width: 768px) {
  .top-story__content .scroll span {
    font-size: 10.9375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-story__content .scroll span {
    font-size: 140px;
  }
}
@-webkit-keyframes scrollAnime {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrollAnime {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.top-faq {
  background: url(../img/faq/back.jpg) center top no-repeat;
  background-size: 100% 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.top-faq__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  padding: 0 8vw;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .top-faq__container {
    padding: 0 12.5vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-faq__container {
    padding: 0 160px;
  }
}
.top-faq__content {
  padding-top: 5.3vw;
}
@media screen and (min-width: 768px) {
  .top-faq__content {
    padding-top: 3.125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-faq__content {
    padding-top: 40px;
  }
}
.top-faq__content .faq {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 2.6vw;
  padding: 5.3vw;
}
@media screen and (min-width: 768px) {
  .top-faq__content .faq {
    border-radius: 10px;
    padding: 2.34375vw 3.125vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-faq__content .faq {
    padding: 30px 40px;
  }
}
.top-faq__content .faq + .faq {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .top-faq__content .faq + .faq {
    margin-top: 2.34375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-faq__content .faq + .faq {
    margin-top: 30px;
  }
}
.top-faq__content .faq h4 {
  color: #0099E4;
  display: flex;
  cursor: pointer;
  font-size: 3.73vw;
  padding-right: 7vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-faq__content .faq h4 {
    font-size: 1.5625vw;
    padding-right: 3vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-faq__content .faq h4 {
    font-size: 20px;
  }
}
.top-faq__content .faq h4:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: all 0.3s;
  background: url(../img/faq/arrow.png) right center no-repeat;
  background-size: 100%;
  width: 4.8vw;
}
@media screen and (min-width: 768px) {
  .top-faq__content .faq h4:after {
    width: 1.875vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-faq__content .faq h4:after {
    width: 24px;
  }
}
.top-faq__content .faq h4.active:after {
  transform: rotate(180deg);
}
.top-faq__content .faq p {
  display: none;
  width: 100% !important;
  color: #344963;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .top-faq__content .faq p {
    margin-top: 1.5625vw;
    font-size: 1.09375vw;
  }
}
@media screen and (min-width: 1280px) {
  .top-faq__content .faq p {
    margin-top: 20px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */