@keyframes yurari {
  0% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes yurari_2deg {
  0% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}
@keyframes yurari_1deg {
  0% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
@keyframes yurari_10deg {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(-7deg);
  }
}
@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  40% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  80% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes passing-bar {
  0% {
    transform: scaleX(0) translateX(-100%);
  }
  50% {
    transform: scaleX(1) translateX(0);
  }
  51% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(101%);
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes mask-bg {
  0% {
    transform: translate(0, 101%);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: calc(100% - 20px);
    width: 100%;
    opacity: 1;
  }
}
@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: calc(100% - 20px);
    height: 100%;
    opacity: 1;
  }
}
p,
a,
li,
dt,
dd,
th,
td {
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  p,
  a,
  li,
  dt,
  dd,
  th,
  td {
    line-height: 1.8;
  }
}

.display_w600 {
  display: none;
}
@media screen and (max-width: 600px) {
  .display_w600 {
    display: block;
  }
}

.f_en {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

section {
  padding: 80px 0;
}
section:nth-of-type(2) {
  background-color: #efefef;
}

.flow__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .flow__list {
    flex-direction: column;
  }
}

.flow__item {
  width: 20%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .flow__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.flow__item .img {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--main);
  width: auto;
  height: 150px;
  margin: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .flow__item .img {
    height: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .flow__item .img {
    margin-bottom: 10px;
  }
}
.flow__item .title {
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
.flow__item .txt {
  background-color: #efefef;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .flow__item .txt {
    padding: 10px;
  }
}
.flow__item svg {
  width: 5%;
  position: absolute;
  top: 10%;
  right: -8%;
}
.flow__item svg path {
  fill: var(--main);
}
@media screen and (max-width: 1024px) {
  .flow__item svg {
    position: unset;
    margin: auto;
    transform: rotate(90deg);
    display: block;
  }
}
.flow__item:last-of-type svg {
  display: none;
}

.faq__list li {
  margin-bottom: 10px;
  width: 100%;
}

._q {
  padding-left: 35px;
  background-repeat: no-repeat;
  background-size: 30px auto;
  font-size: 1.6rem;
  color: var(--txt);
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
@media screen and (max-width: 1024px) {
  ._q {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
._q::before {
  content: "Q";
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--main);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  ._q::before {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  ._q::before {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  ._q::before {
    height: 15px;
  }
}
@media screen and (max-width: 1024px) {
  ._q::before {
    top: 4px;
  }
}
._q:last-of-type {
  border-bottom: none;
}
._q:hover {
  opacity: 0.7;
  cursor: pointer;
}

._a {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  padding-left: 35px;
  padding-right: 30px;
  font-size: 1.6rem;
  color: var(--txt);
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  ._a {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
._a::before {
  content: "A";
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--main);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  ._a::before {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
@media screen and (max-width: 1024px) {
  ._a::before {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  ._a::before {
    height: 15px;
  }
}
@media screen and (max-width: 1024px) {
  ._a::before {
    top: 4px;
  }
}

.plus {
  display: inline-block;
  vertical-align: 0.3em;
  color: var(--main);
  line-height: 1;
  width: 1em;
  height: 3px;
  background: currentColor;
  border-radius: 0.1em;
  position: absolute;
  top: 10px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .plus {
    top: 5px;
  }
}
.plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.plus.active:before {
  transform: rotate(0deg);
}

@media screen and (max-width: 1024px) {
  ._q,
  ._a {
    padding-left: 28px;
    background-repeat: no-repeat;
    background-size: 25px auto;
    background-position: top 1px left 0;
    font-size: 1.2rem;
  }
  .faq__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.faq__list {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .faq__list {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .faq__list {
    border-radius: 10px;
  }
}