@charset "UTF-8";
/* Scss Document */
/* CSS Document */
/* fonts */
@font-face {
  src: url(../fonts/NotoSansJP-Bold.woff) format("woff"), url(../fonts/NotoSansJP-Bold.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../fonts/NotoSansJP-Medium.woff) format("woff"), url(../fonts/NotoSansJP-Medium.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url(../fonts/NotoSansJP-Regular.woff) format("woff"), url(../fonts/NotoSansJP-Regular.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url(../fonts/Lato-Bold.woff) format("woff"), url(../fonts/Lato-Bold.woff2) format("woff2");
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../fonts/ZenKakuGothicNew-Bold.woff) format("woff"), url(../fonts/ZenKakuGothicNew-Bold.woff2) format("woff2");
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../fonts/ZenKakuGothicNew-Regular.woff) format("woff"), url(../fonts/ZenKakuGothicNew-Regular.woff2) format("woff2");
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
/* font:rem=px デザインしたwidthを割る  */
html {
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 769px) {
  html {
    font-size: 0.78125vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  font-display: optional;
}

/* common */
.pc_hide {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc_hide {
    display: block;
  }
}

.sp_hide {
  display: block;
}
@media only screen and (max-width: 768px) {
  .sp_hide {
    display: none;
  }
}

.en {
  font-family: "Lato", sans-serif;
  line-height: 1;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .en {
    font-size: 1.2rem;
  }
}

.orange {
  color: #DE7B28;
}

.cta .btn {
  display: inline-block;
  background: linear-gradient(180deg, #F3F025 0%, #F3F025 50%, #F4DC44 51%, #F4DC44 100%);
  font-size: 2.4rem;
  line-height: 1.4;
  position: relative;
  padding: 0.8em 3em;
  text-align: center;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .cta .btn {
    font-size: 1.6rem;
  }
}
.cta .btn::after {
  position: absolute;
  content: "";
  background: url(../images/cta_arrow.svg) no-repeat center/contain;
  width: 1em;
  height: 1em;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
}

.inner {
  padding: 6rem 19rem;
}
@media only screen and (max-width: 768px) {
  .inner {
    padding: 4rem 2.5rem;
  }
}

h2 {
  color: #288ADF;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 0.625em;
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 3rem;
    line-height: 1.2;
  }
}

/**/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 999;
}
.header h1 {
  margin: 1.5rem 2rem;
}
@media only screen and (max-width: 768px) {
  .header h1 {
    margin: 1.5rem;
  }
}
.header h1 img {
  width: 15rem;
}
@media only screen and (max-width: 768px) {
  .header h1 img {
    width: 10rem;
  }
}
.header .btn {
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .header .btn a {
    display: block;
    color: #fff;
    background: linear-gradient(90deg, #288ADF 0%, #14456F 100%);
    font-size: 1.6rem;
    margin-right: 5rem;
    padding: 1.5rem;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .header .nav_btn {
    display: block;
    position: fixed;
    top: 1.7rem;
    right: 1.5rem;
    width: 2rem;
    height: 1.6rem;
    transition: all 0.4s;
    z-index: 1000;
  }
}
.header .nav_btn span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #206FB3;
  transition: all 0.4s;
}
.header .nav_btn span:first-of-type {
  top: 0;
}
.header .nav_btn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .nav_btn span:last-of-type {
  bottom: 0;
}
.header .nav_btn.open span:first-of-type {
  top: 1rem;
  transform: rotate(-45deg);
}
.header .nav_btn.open span:nth-last-of-type(2) {
  display: none;
}
.header .nav_btn.open span:last-of-type {
  top: 1rem;
  transform: rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .header .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    font-size: 1.4rem;
    transition: all 0.4s;
    z-index: 999;
  }
}
.header .nav.open {
  right: 0;
}
@media only screen and (max-width: 768px) {
  .header .nav .nav_menu {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 769px) {
  .header .nav .nav_menu {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    align-items: center;
  }
}
.header .nav .nav_menu li {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .header .nav .nav_menu li a {
    display: block;
    padding: 1em 0;
  }
}
.header .nav .nav_menu li.btn a {
  font-size: 2rem;
  padding: 1em 2em;
  display: block;
  color: #fff;
  background: linear-gradient(90deg, #288ADF 0%, #14456F 100%);
}

/**/
.splide__slide img {
  width: 10rem;
  height: auto;
}

/**/
.fv {
  display: flex;
  align-items: center;
  position: relative;
  background: url(../images/fv_person.webp) no-repeat bottom right -15rem/74%;
}
@media only screen and (max-width: 768px) {
  .fv {
    flex-direction: column;
    background: url(../images/fv_person.webp) no-repeat bottom center/150%;
  }
}
.fv .chatch_wrap {
  background: url(../images/back_blue.webp) no-repeat top left/cover, #288ADF;
  background-blend-mode: multiply, normal;
  padding: 10rem 0 8rem;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .fv .chatch_wrap {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .fv .chatch_wrap {
    padding: 4rem 0 5rem;
    width: 100%;
  }
}
.fv .chatch_wrap h2 {
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .fv .chatch_wrap h2 {
    margin-bottom: 2rem;
  }
}
.fv .chatch_wrap h2 .sub {
  font-size: 3rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .fv .chatch_wrap h2 .sub {
    font-size: 2rem;
  }
}
.fv .chatch_wrap h2 .main {
  font-size: 5.2rem;
}
@media only screen and (max-width: 768px) {
  .fv .chatch_wrap h2 .main {
    font-size: 3.2rem;
  }
}
.fv .chatch_wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .fv .chatch_wrap ul {
    gap: 1.5rem;
  }
}
.fv .chatch_wrap ul li {
  background: #EAF4FC;
  color: #206FB3;
  font-size: 2rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .fv .chatch_wrap ul li {
    font-size: 1.2rem;
    width: 9rem;
    height: 9rem;
  }
}
.fv .chatch_wrap ul + div {
  margin-top: 4.5rem;
}
@media only screen and (max-width: 768px) {
  .fv .chatch_wrap ul + div {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .fv .image_wrap {
    height: 37.3rem;
  }
}
.fv .image_wrap .purchase {
  position: absolute;
  right: 1rem;
}
@media only screen and (min-width: 769px) {
  .fv .image_wrap .purchase {
    bottom: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .fv .image_wrap .purchase {
    width: 9.1rem;
    top: 38.5rem;
  }
}

/**/
.plan {
  background: #F6F6F6;
}
@media only screen and (min-width: 769px) {
  .plan ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.plan ul li {
  text-align: center;
  padding: 1.5rem 2rem 2.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border-top: solid 0.5rem #288ADF;
  background: #fff;
}
.plan ul li h4 {
  color: #288ADF;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.plan ul li .explain {
  font-size: 1.2rem;
  margin-top: 0.5em;
  color: #206FB3;
}
.plan ul li .price {
  font-size: 1.2rem;
  font-weight: 700;
}
.plan ul li .price .number {
  font-size: 3rem;
  background: linear-gradient(180deg, #DE9828 0%, #DE9828 50%, #DE7B28 51%, #DE7B28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan ul li .price .yen {
  position: relative;
}
.plan ul li .price .yen .tax {
  white-space: nowrap;
  position: absolute;
  top: -1em;
  left: 0;
  font-size: 1rem;
  font-weight: 400;
}
.plan ul li .price + .spec {
  margin-top: 1.5rem;
}
.plan ul li .spec dl {
  border: solid 1px #ddd;
}
.plan ul li .spec dl div {
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  vertical-align: middle;
}
.plan ul li .spec dl div dt {
  background: #EAF4FC;
  border-right: solid 1px #ddd;
  width: 33%;
  padding: 0.5em 0;
}
.plan ul li .spec dl div dd {
  width: 67%;
  padding: 0.5em 0;
  word-break: break-all;
}
.plan ul li .spec dl div + div {
  border-top: solid 1px #ddd;
}
.plan ul li .spec + .cta {
  margin-top: 1rem;
}
.plan ul li .cta .btn {
  width: 100%;
  font-size: 1.4rem;
}
.plan ul li .cta + .modal_btn {
  margin-top: 1rem;
}
.plan ul li .modal_btn {
  background: #333;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.5em 0;
  cursor: pointer;
}
.plan ul li .note {
  text-align: left;
  margin-top: 1em;
  color: #888888;
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .plan ul li + li {
    margin-top: 2rem;
  }
}
.plan .modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.plan .modal .modal-box {
  background-color: #F6F6F6;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  animation-name: modalopen;
  animation-duration: 1s;
  position: relative;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.8rem;
  row-gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .plan .modal .modal-box {
    width: 85%;
    height: 90vh;
    padding: 2rem 1.5rem;
    font-size: 1.4rem;
    overflow-y: scroll;
  }
}
@media only screen and (min-width: 769px) {
  .plan .modal .modal-box ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
}
.plan .modal .modal-box ul li {
  text-align: center;
  padding: 1.5rem 1.5rem 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border-top: solid 0.5rem #288ADF;
  background: #fff;
}
.plan .modal .modal-box ul li h5 {
  color: #288ADF;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 769px) {
  .plan .modal .modal-box ul li h5 {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 769px) {
  .plan .modal .modal-box ul li h5.small {
    font-size: 1.2rem;
    letter-spacing: -0.05em;
    white-space: nowrap;
  }
}
.plan .modal .modal-box ul li .explain {
  font-size: 1.2rem;
  margin-top: 0.5em;
  color: #206FB3;
}
.plan .modal .modal-box ul li .price {
  font-size: 1.2rem;
  font-weight: 700;
}
.plan .modal .modal-box ul li .price .number {
  font-size: 2.4rem;
  background: linear-gradient(180deg, #DE9828 0%, #DE9828 50%, #DE7B28 51%, #DE7B28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan .modal .modal-box ul li .price .yen {
  position: relative;
}
.plan .modal .modal-box ul li .price .yen .tax {
  white-space: nowrap;
  position: absolute;
  top: -1em;
  left: 0;
  font-size: 1rem;
  font-weight: 400;
}
.plan .modal .modal-box ul li .price_taxin {
  font-size: 1rem;
}
.plan .modal .modal-box ul li .price_taxin + .spec {
  margin-top: 1.5rem;
}
.plan .modal .modal-box ul li .spec dl {
  border: solid 1px #ddd;
}
.plan .modal .modal-box ul li .spec dl div {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  vertical-align: middle;
}
.plan .modal .modal-box ul li .spec dl div dt {
  background: #EAF4FC;
  border-right: solid 1px #ddd;
  width: 33%;
  padding: 0.5em 0;
}
.plan .modal .modal-box ul li .spec dl div dd {
  width: 67%;
  padding: 0.5em 1em;
  word-break: break-all;
}
.plan .modal .modal-box ul li .spec dl div + div {
  border-top: solid 1px #ddd;
}
@media only screen and (max-width: 768px) {
  .plan .modal .modal-box .cta {
    width: 100%;
  }
}
.plan .modal .modal-box .cta a {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .plan .modal .modal-box .cta a {
    padding: 0.8em 0;
  }
}

/**/
@media only screen and (min-width: 769px) {
  .comparison .inner .table_wrap {
    width: 80%;
    margin: 0 auto;
  }
}
.comparison .inner .table_wrap table {
  width: 100%;
}
.comparison .inner .table_wrap table thead th {
  text-align: center;
  vertical-align: middle;
  color: #fff;
  padding: 0.8em 0;
}
@media only screen and (max-width: 768px) {
  .comparison .inner .table_wrap table thead th {
    padding: 0.5em 0;
  }
}
.comparison .inner .table_wrap table thead th.purchasepc {
  background: #888;
  font-size: 1.6rem;
  border-right: solid 1px #fff;
}
@media only screen and (max-width: 768px) {
  .comparison .inner .table_wrap table thead th.purchasepc {
    font-size: 1.4rem;
  }
}
.comparison .inner .table_wrap table thead th.rentalpc {
  background: #288ADF;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .comparison .inner .table_wrap table thead th.rentalpc {
    font-size: 1.6rem;
  }
}
.comparison .inner .table_wrap table tbody tr th {
  text-align: center;
  vertical-align: middle;
  width: 16%;
  background: #EAF4FC;
  border-top: solid 1px #fff;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .comparison .inner .table_wrap table tbody tr th {
    font-size: 1.2rem;
    width: 20%;
  }
}
.comparison .inner .table_wrap table tbody tr td {
  text-align: center;
  vertical-align: middle;
  width: 42%;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  padding: 1rem;
}
@media only screen and (max-width: 768px) {
  .comparison .inner .table_wrap table tbody tr td {
    width: 40%;
  }
}
.comparison .inner .table_wrap table tbody tr td figure {
  margin: 0 auto;
  width: 4rem;
  height: 4rem;
}
.comparison .inner .table_wrap table tbody tr td p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .comparison .inner .table_wrap table tbody tr td p {
    font-size: 1rem;
  }
}
.comparison .inner .table_wrap table tbody tr td.rentalpc p {
  color: #DE7B28;
  font-weight: 600;
}

/**/
.cleaning {
  background: #F6F6F6;
}
.cleaning .intro {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: #206FB3;
}
.cleaning .intro .note {
  font-size: 1.2rem;
  margin-top: 1em;
  color: #888888;
  font-weight: 400;
}
.cleaning .intro + ul {
  margin-top: 5rem;
}
.cleaning ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .cleaning ul {
    display: block;
  }
}
.cleaning ul li {
  position: relative;
  counter-increment: number;
  background: #fff;
  border-radius: 0.5rem;
}
.cleaning ul li figure img {
  border-radius: 0.5rem 0.5rem 0 0;
}
.cleaning ul li p {
  padding: 1.5rem 2rem 2rem;
  font-size: 1.4rem;
  line-height: 1.4;
}
.cleaning ul li::before {
  position: absolute;
  content: "0" counter(number);
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  background: #288ADF;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-family: "Lato", sans-serif;
}
.cleaning ul li:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 100%;
  background: #288ADF;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  width: 1rem;
  height: 2rem;
}
@media only screen and (max-width: 768px) {
  .cleaning ul li:not(:last-child)::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 1rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
@media only screen and (max-width: 768px) {
  .cleaning ul li + li {
    margin-top: 4rem;
  }
}

/**/
.cta_area {
  text-align: center;
  background: url(../images/back_blue.webp) no-repeat center center/cover, #288ADF;
  background-blend-mode: multiply, normal;
}
@media only screen and (min-width: 769px) {
  .cta_area .inner {
    padding: 6rem 0 6.5rem;
  }
}
.cta_area .cta_top {
  color: #fff;
}
.cta_area .cta_top span {
  font-size: 2rem;
  padding: 0 1.25em;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .cta_area .cta_top span {
    font-size: 1.5rem;
  }
}
.cta_area .cta_top span::after, .cta_area .cta_top span::before {
  position: absolute;
  content: "";
  top: 50%;
  width: 1em;
  height: 2px;
  background: #fff;
}
.cta_area .cta_top span::before {
  left: 0;
  transform: translateY(-50%) rotate(70deg);
}
.cta_area .cta_top span::after {
  right: 0;
  transform: translateY(-50%) rotate(-70deg);
}
.cta_area .cta_top + .cta {
  margin-top: 1.5rem;
}

/**/
.support {
  background: url(../images/support_bg.webp) no-repeat top left/cover;
}
@media only screen and (max-width: 768px) {
  .support {
    background: url(../images/support_bg.webp) no-repeat top left/130%, linear-gradient(to top, #F6F6F6 0%, rgba(246, 246, 246, 0) 20%, rgba(246, 246, 246, 0) 100%);
  }
}
.support .inner {
  padding: 9rem 19rem;
}
@media only screen and (max-width: 768px) {
  .support .inner {
    padding: 31.5rem 2.5rem 4rem;
  }
}
.support .inner .contents {
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .support .inner .contents {
    width: 60%;
    margin-left: auto;
    margin-right: -5rem;
  }
}
.support .inner .contents h2 {
  display: inline-block;
  font-size: 2.4rem;
  background: #288ADF;
  padding: 1rem 1em;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .support .inner .contents h2 {
    font-size: 2.2rem;
  }
}
.support .inner .contents h3 {
  position: static;
  font-size: 2rem;
  color: #206FB3;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .support .inner .contents h3 {
    font-size: 1.6rem;
  }
}
.support .inner .contents p {
  font-size: 1.6rem;
  text-align: left;
  width: 90%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .support .inner .contents p {
    font-size: 1.4rem;
  }
}
.support .inner .contents p + .cta {
  margin-top: 4rem;
}

/**/
.flow .inner .intro {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4rem;
}
.flow .inner .intro .strong {
  font-size: 2rem;
}
.flow .inner ul {
  position: relative;
}
@media only screen and (min-width: 769px) {
  .flow .inner ul {
    width: 60%;
    margin: 0 auto;
  }
}
.flow .inner ul::after {
  position: absolute;
  content: "";
  top: 1.5rem;
  left: 0.75rem;
  width: 2px;
  height: 83%;
  background: #288ADF;
  z-index: -1;
}
.flow .inner ul li {
  display: flex;
  gap: 3rem;
}
@media only screen and (max-width: 768px) {
  .flow .inner ul li {
    gap: 2rem;
  }
}
.flow .inner ul li .step {
  white-space: nowrap;
  position: relative;
  font-size: 1.6rem;
  color: #288ADF;
  font-family: "Lato", sans-serif;
  padding-left: 1.5em;
  margin-top: 0.3rem;
}
.flow .inner ul li .step::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: #fff;
  border: solid 2px #288ADF;
  width: 1.5rem;
  height: 1.5rem;
  top: 0.3em;
  left: 0;
}
.flow .inner ul li dl dt {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .flow .inner ul li dl dt {
    font-size: 1.6rem;
  }
}
.flow .inner ul li dl dd {
  font-size: 1.2rem;
  margin-top: 1em;
}
.flow .inner ul li + li {
  margin-top: 2.5rem;
}

/**/
.faq {
  background: #F6F6F6;
}
@media only screen and (min-width: 769px) {
  .faq ul {
    width: 80%;
    margin: 0 auto;
  }
}
.faq ul li .question {
  cursor: pointer;
  padding: 2rem 5rem;
  font-size: 1.6rem;
  position: relative;
  background: #fff;
  border-bottom: solid 1px #F6F6F6;
}
@media only screen and (max-width: 768px) {
  .faq ul li .question {
    font-size: 1.4rem;
    padding: 1.5rem 5rem;
  }
}
.faq ul li .question::before {
  position: absolute;
  content: "Q";
  font-family: "Lato", sans-serif;
  line-height: 1;
  color: #288ADF;
  font-size: 2.4rem;
  top: 2rem;
  left: 2rem;
}
.faq ul li .question::after {
  position: absolute;
  content: "";
  background: url(../images/faq_arrow.svg) no-repeat center/contain;
  width: 1.6rem;
  height: 0.8rem;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .faq ul li .question::after {
    width: 1rem;
    height: 0.5rem;
  }
}
.faq ul li .question.open::after {
  transform: translateY(-50%) scale(1, -1);
}
.faq ul li .answer {
  display: none;
  padding: 1.5rem 2rem 2rem 5rem;
  font-size: 1.4rem;
  position: relative;
  background: #fff;
}
.faq ul li .answer::before {
  position: absolute;
  content: "A";
  font-family: "Lato", sans-serif;
  line-height: 1;
  color: #DE7B28;
  font-size: 2.4rem;
  top: 1.5rem;
  left: 2rem;
}
.faq ul li + li {
  margin-top: 1rem;
}

/**/
.footer {
  background: #333;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 1em 0;
}/*# sourceMappingURL=style.css.map */