@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-bg-white:#fff;
  --color-bg-sub: #0a2d5f;
  --color-bg-black: #000;
  --color-font-base: #000;
  --color-font-white: #fff;
  --color-font-blue: #0a2d5f;
  --color-font-red:#830101;
  --color-border-white: #fff;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content: 1080px;
  --width-content-l: 1200px;
  --width-content-xl: 1400px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
}

/*!
component > button
------------------------------
*/
.c-button {
  display: block;
  color: var(--color-font-white);
  font-size: 16px;
  background: linear-gradient(to top, #0b1438, #3d4b80 50%, #0b1438);
  border: 2px solid var(--color-border-white);
  text-align: center;
  width: 100%;
  max-width: 300px;
  padding: 16px 0;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 24px;
    max-width: 400px;
  }
}

/*!
component > title
------------------------------
*/
/*! level2 */
.c-title-level2 {
  font-size: 32px;
  font-family: var(--font-family-base);
  font-weight: bold;
  max-width: 80vw;
  padding: 2%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-title-level2 {
    font-size: clamp(32px, 3vw, 52px);
  }
}

.c-title-group {
  font-size: 24px;
  font-weight: bold;
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-title-group {
    font-size: 48px;
  }
}

.c-title-img {
  width: 60%;
}

/*!
component > approach
------------------------------
*/
/*==================================================
背景色が伸びて出現
===================================*/
/*全共通*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

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

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333; /*伸びる背景色の設定*/
}

.problem-list-black .bgLRextend::before {
  background-color: #f1f1f1; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*==================================
じわっ
===================================*/
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.blurTrigger {
  opacity: 0;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/*==================================================
ボンッ
===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.zoomInTrigger {
  opacity: 0;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/*==================================================
ゆらゆら
===================================*/
.swing {
  transform-origin: center bottom;
  -webkit-animation: swingAnime 2s linear infinite;
          animation: swingAnime 2s linear infinite;
}

@-webkit-keyframes swingAnime {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}

@keyframes swingAnime {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
body {
  line-height: 2;
  font-size: 14px;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

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

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .sp-only-xl {
    display: none;
  }
}

/*!
layout > container
------------------------------
*/
.l-container-xl, .l-container-l, .l-container {
  width: 90%;
  margin: 0 auto;
}

.l-container {
  max-width: var(--width-content);
}

.l-container-l {
  max-width: var(--width-content-l);
}

.l-container-xl {
  max-width: var(--width-content-xl);
}

/*!
layout > header
------------------------------
*/
.header {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}
.header .c-button {
  padding: 12px 0;
  border-radius: 0px;
}
.header-logo {
  width: 100%;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .header-logo {
    margin-left: 30px;
  }
}
.header-logo img {
  position: absolute;
  top: 2px;
  left: 15px;
  max-width: 10vw;
  width: 100%;
  height: 4vw;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 100;
}

/*!
layout > footer
------------------------------
*/
.footer {
  text-align: center;
  background-color: var(--color-bg-sub);
  color: var(--color-font-white);
}

/*!
page > top-kv
------------------------------
*/
.kv {
  position: relative;
}
.kv-main {
  width: 100%;
}
.kv-img {
  width: 100%;
  aspect-ratio: 16/8;
  -o-object-fit: cover;
     object-fit: cover;
}
.kv-img-title {
  position: absolute;
  width: 40%;
  top: 8%;
  left: 3%;
  -webkit-animation: catch_anime 3s forwards 1s;
          animation: catch_anime 3s forwards 1s;
  opacity: 0;
}
.kv-img-copy {
  position: absolute;
  width: 45%;
  top: 30%;
  left: 2%;
  -webkit-animation: catch_anime 3s forwards 2s;
          animation: catch_anime 3s forwards 2s;
  opacity: 0;
}
@media screen and (min-width: 1200px) {
  .kv-img-copy {
    top: 35%;
  }
}
.kv-img-price {
  position: absolute;
  width: 38%;
  top: 25%;
  right: 2%;
  -webkit-animation: catch_anime 3s forwards 3s;
          animation: catch_anime 3s forwards 3s;
  opacity: 0;
}
@media screen and (min-width: 1200px) {
  .kv-img-price {
    top: 28%;
  }
}
.kv-video {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 101;
}
.kv-video-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 100;
}
.kv-contact-button {
  padding: 0 20px;
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--color-font-white);
}
@media screen and (min-width: 768px) {
  .kv-contact-button {
    max-width: 600px;
  }
}
.kv-contact-button-text {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .kv-contact-button-text {
    font-size: 24px;
  }
}
.kv-contact-button-text-link {
  display: block;
  width: 100vw;
  background-color: var(--color-bg-sub);
}
.kv-contact-button-text-bold {
  position: relative;
  font-size: 24px;
}
.kv-contact-button-text-bold::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 12px solid var(--color-bg-white);
  border-bottom: 0;
  top: 18px;
  right: -5px;
}
@media screen and (min-width: 768px) {
  .kv-contact-button-text-bold::after {
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    border-top: 24px solid var(--color-bg-white);
    top: 40px;
    right: 10px;
  }
}
@media screen and (min-width: 768px) {
  .kv-contact-button-text-bold {
    font-size: 48px;
  }
}

@-webkit-keyframes catch_anime {
  0% {
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes catch_anime {
  0% {
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*!
page > top-problem
------------------------------
*/
.problem-list {
  text-align: left;
  font-size: clamp(12px, 2vw, 32px);
  padding: 10px 0;
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .problem-list {
    margin: 60px 0;
    padding: 30px 0;
  }
}
.problem-list-group {
  position: relative;
  background-image: url(/img/problem-list-img01.jpg);
  background-size: 100%;
  padding-bottom: 200px;
  background-repeat: no-repeat;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .problem-list-group {
    padding-bottom: 500px;
  }
}
.problem-list-group-02 {
  position: relative;
  background-image: url(/img/problem-list-img02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 45vw;
  z-index: -3;
}
@media screen and (min-width: 1080px) {
  .problem-list-group-02 {
    padding-bottom: 42vw;
  }
}
.problem-list-img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0 10px;
  width: 60vw;
  max-width: 900px;
  bottom: 0;
  right: 0;
}
.problem-list-img-02 {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  width: 80vw;
  max-width: 1200px;
  bottom: 0;
  right: 0;
}
.problem-list-item {
  display: inline-block;
  margin: 1% 20px;
  padding: 5px 3% 5px 5px;
  font-size: clamp(12px, 2.5vw, 24px);
}
@media screen and (min-width: 768px) {
  .problem-list-item {
    margin: 1% 50px;
  }
}
.problem-list-item-bold {
  font-size: clamp(24px, 5vw, 68px);
  margin-bottom: 3%;
  padding: 5px 2% 5px 5px;
}
.problem-list-title-white, .problem-list-title-black {
  position: relative;
  display: inline-block;
}
.problem-list-title-white {
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .problem-list-title-white {
    margin-left: 50px;
  }
}
.problem-list-title-black {
  margin-top: 50px;
  margin-left: calc(100vw - 220px);
}
@media screen and (min-width: 768px) {
  .problem-list-title-black {
    margin-left: calc(100vw - 350px);
  }
}
.problem-list-title-white::before, .problem-list-title-black::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 70px;
  bottom: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .problem-list-title-white::before, .problem-list-title-black::before {
    width: 280px;
    height: 100px;
  }
}
.problem-list-title-white::before {
  left: 0;
  background: var(--color-bg-black);
}
.problem-list-title-black::before {
  background: var(--color-bg-white);
}
.problem-list-title-img {
  width: 180px;
}
@media screen and (min-width: 768px) {
  .problem-list-title-img {
    width: 250px;
  }
}
.problem-list-white {
  background-color: var(--color-bg-black);
  color: var(--color-font-white);
}
.problem-list-black {
  background-color: var(--color-bg-white);
  color: var(--color-font-base);
}

/*!
page > top-service
------------------------------
*/
#service {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  #service {
    margin-top: 200px;
  }
}
#service .c-button {
  margin: 0 auto;
}

.c-title-img-group {
  position: relative;
}
.c-title-img-group::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(/img/problem-title01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20%;
  height: 20%;
  top: -20px;
  left: 100px;
}

.service:nth-of-type(2) {
  padding-top: 15px;
}
.service-group {
  display: flex;
}
.service-img {
  filter: drop-shadow(15px 10px 10px rgba(0, 0, 0, 0.25));
  width: 90%;
}
.service-note {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service-note {
    width: 100%;
    font-size: 28px;
  }
}
@media screen and (min-width: 1080px) {
  .service-note {
    width: 100%;
    font-size: 32px;
  }
}
.service-price-img {
  padding-left: 50px;
}
.service-text {
  padding: 0 0 30px;
  font-size: 16x;
}
@media screen and (min-width: 768px) {
  .service-text {
    padding: 50px 10px;
    font-size: 24px;
  }
}

/*!
page > top-contact
------------------------------
*/
#contact .c-title-level2 {
  text-align: center;
  margin: 70px auto 0;
}
@media screen and (min-width: 768px) {
  #contact .c-title-level2 {
    margin: 100px auto 20px;
  }
}

.contact-group {
  display: flex;
  padding-top: 50px;
  flex-direction: row-reverse;
  justify-content: space-around;
}
@media screen and (min-width: 768px) {
  .contact-group {
    padding-top: 70px;
  }
}
@media screen and (min-width: 1080px) {
  .contact-group {
    padding-top: 150px;
  }
}
.contact-group-img {
  position: relative;
  width: 18vw;
  height: 25vw;
  margin: auto 0 0;
}
.contact-group-img-man {
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-group-img-question {
  position: absolute;
  width: 10vw;
  top: -3vw;
  right: -3vw;
}
.contact-group-text {
  padding-left: 30px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .contact-group-text {
    font-size: clamp(14px, 2vw, 24px);
  }
}

.contact-text:nth-child(3) {
  font-size: clamp(12px, 2vw, 16px);
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .contact-text:nth-child(3) {
    font-size: clamp(14px, 2vw, 24px);
  }
}

.c-bold {
  font-size: clamp(16px, 2vw, 32px);
  font-weight: bold;
}

.c-red {
  font-size: clamp(18px, 2.5vw, 48px);
  color: transparent;
  background: linear-gradient(to left, #750101, #af0001 50%, #750101);
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transpare;
}

.contactform {
  background: var(--color-bg-sub);
  padding: 40px 0;
}
.contactform form {
  background: var(--color-bg-white);
  border-radius: 20px;
  width: 90%;
  margin: 0 auto;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .contactform form {
    padding: 50px;
    max-width: 1200px;
  }
}
.contactform-title {
  color: var(--color-font-white);
  font-size: 24px;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .contactform-title {
    font-size: 52px;
  }
}
@media screen and (min-width: 768px) {
  .contactform-label {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
  }
}
.contactform-label-title {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .contactform-label-title {
    width: 30%;
    font-size: clamp(14px, 2vw, 24px);
  }
}
.contactform-label-text {
  font-size: 16px;
  border: 1px solid #898989;
  border-radius: 5px;
  margin: 10px 10px 30px;
}
@media screen and (min-width: 768px) {
  .contactform-label-text {
    width: 60%;
    font-size: clamp(14px, 2vw, 24px);
  }
}

.must,
.optional {
  color: var(--color-font-white);
  font-size: 12px;
  font-weight: bold;
  padding: 6px 8px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .must,
.optional {
    font-size: 14px;
  }
}

.must {
  background-color: var(--color-font-red);
}

.optional {
  background-color: var(--color-font-blue);
}

/*!
page > top-reason
------------------------------
*/
#reason {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  #reason {
    margin-top: 250px;
  }
}

.reason-list {
  background-image: url(/img/reason-background.jpg);
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: overlay;
  margin: 0px 0 70px;
}
@media screen and (min-width: 768px) {
  .reason-list {
    margin: 70px 0;
  }
}
.reason-list-item {
  position: relative;
  text-align: left;
  padding-top: 30px;
}
@media screen and (min-width: 460px) {
  .reason-list-item {
    padding-top: 60px;
  }
}
.reason-list-item:nth-child(1)::before {
  content: "01";
}
.reason-list-item:nth-child(2)::before {
  content: "02";
}
.reason-list-item:nth-child(3)::before {
  content: "03";
}
.reason-list-item::before {
  position: absolute;
  font-size: 48px;
  font-weight: bold;
  top: 40px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .reason-list-item::before {
    top: 52px;
    font-size: 58px;
  }
}
.reason-list-item-title {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  margin-left: 80px;
}
@media screen and (min-width: 768px) {
  .reason-list-item-title {
    font-size: 24px;
    margin-left: 100px;
  }
}
.reason-list-item-title span {
  font-size: 26px;
  color: transparent;
  background: linear-gradient(to left, #750101, #af0001 50%, #750101);
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transpare;
}
@media screen and (min-width: 768px) {
  .reason-list-item-title span {
    font-size: 48px;
  }
}
.reason-list-item-text {
  font-size: 14px;
  outline: 3px solid var(--color-bg-sub);
  border-radius: 20px;
  background: var(--color-bg-main);
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .reason-list-item-text {
    font-size: 24px;
  }
}

.sm-only {
  display: block;
}
@media screen and (min-width: 460px) {
  .sm-only {
    display: none;
  }
}

/*!
page > top-price
------------------------------
*/
#price .c-button {
  margin: 70px auto 150px;
}

.price-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.price-img-group {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 8vw 32vw 8vw;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.price-img-group-item:nth-child(1) {
  grid-area: 1/1/2/2;
}
.price-img-group-item:nth-child(2) {
  grid-area: 2/1/3/2;
}
.price-img-group-item:nth-child(3) {
  grid-area: 3/1/4/2;
}
.price-img-group-item:nth-child(4) {
  grid-area: 1/2/4/3;
}
.price-text {
  font-size: clamp(12px, 1vw, 14px);
}
@media screen and (min-width: 768px) {
  .price-text {
    font-size: clamp(16px, 1.5vw, 24px);
  }
}
.price-text-bold {
  font-weight: bold;
  font-size: clamp(20px, 2.5vw, 48px);
}

/*!
page > top-faq
------------------------------
*/
#faq {
  margin-top: 150px;
}
#faq .c-title-level2 {
  text-align: center;
}
#faq .c-button {
  margin: 0 auto;
}

.faq-list {
  margin: 70px auto 150px;
  width: 95%;
}
.faq-list-item {
  margin-bottom: 70px;
}
.faq-list-item-question {
  position: relative;
  font-weight: bold;
  border-bottom: 2px dotted var(--color-bg-black);
  padding: 5px;
  font-size: clamp(16px, 2vw, 28px);
}
.faq-list-item-question span {
  display: block;
  width: 85%;
}
.faq-list-item-question::before, .faq-list-item-question::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--color-bg-black);
  transition: all 0.5s 0s ease;
}
@media screen and (min-width: 768px) {
  .faq-list-item-question::before, .faq-list-item-question::after {
    width: 30px;
  }
}
.faq-list-item-question::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.faq-list-item-question::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.faq-list-item-question.close::after {
  transform: rotate(0deg);
}
.faq-list-item-answer {
  display: none;
  padding: 10px;
  font-size: clamp(12px, 1.5w, 24px);
}
/*# sourceMappingURL=style.css.map */