@charset "UTF-8";
:root {
  --screen-height:100vh;
  --screen-width:0;
}

@counter-style middle-dot {
  system: cyclic;
  symbols: ・;
  suffix: " ";
  fallback: disc;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*********************************************************************
 * Hover Scale系.
 *********************************************************************/
@keyframes hover-scale {
  0%, 50%, 70% {
    transform: scale(1, 1) translate(0, 0);
  }
  10% {
    transform: scale(1.15, 1.15) translate(0, 0);
  }
  30% {
    transform: scale(0.95, 0.95) translate(0, 0);
  }
}
@keyframes hover-scale-small {
  0%, 50%, 70% {
    transform: scale(1, 1) translate(0, 0);
  }
  10% {
    transform: scale(1.01, 1.01) translate(0, 0);
  }
  30% {
    transform: scale(0.99, 0.99) translate(0, 0);
  }
}
@keyframes pin-fall {
  0% {
    opacity: 0;
    transform: translateY(-40%);
  }
  30% {
    opacity: 1;
    transform: translateY(0%);
  }
  50% {
    opacity: 1;
    transform: translateY(-15%);
  }
  60% {
    opacity: 1;
    transform: translateY(0%);
  }
  70% {
    opacity: 1;
    transform: translateY(-7%);
  }
  75% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes shadow-fall {
  0% {
    opacity: 0;
    transform: translateY(-15%) translateX(40%);
  }
  30% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  50% {
    opacity: 1;
    transform: translateY(-5%) translateX(15%);
  }
  60% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  70% {
    opacity: 1;
    transform: translateY(-3%) translateX(7%);
  }
  75% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
}
/*********************************************************************
 * Bounce系.
 *********************************************************************/
@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(30%) scale(1.1, 0.9);
  }
  45% {
    opacity: 1;
    transform: translateY(-5%);
  }
  70% {
    opacity: 1;
    transform: translateY(5%) scale(1.05, 0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1, 1);
  }
}
@keyframes bounce-shadow {
  0% {
    transform: translateX(0%) translateY(0%);
  }
  40% {
    transform: translateX(20%) translateY(-10%);
  }
  70% {
    transform: translateX(0%) translateY(0%);
  }
  80% {
    transform: translateX(0%) translateY(0%);
  }
  100% {
    transform: translateX(0%) translateY(0);
  }
}
@keyframes bounce-cloud {
  0% {
    transform: translateX(50%) scale(1.05);
  }
  50% {
    transform: translateX(50%) scale(1);
  }
  100% {
    transform: translateX(50%) scale(1.05);
  }
}
@keyframes bounce-char {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-scale {
  0% {
    transform: translateY(50%) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10%) scale(1, 1);
    opacity: 1;
  }
  35% {
    transform: translateY(5%) scale(1.1, 1);
    opacity: 1;
  }
  50% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes op-button-scale {
  0% {
    transform: translateY(50%) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10%) scale(1.1, 1.1);
    opacity: 1;
  }
  35% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes inview-scale {
  0% {
    transform: translateY(50px) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10px) scale(1, 1);
    opacity: 1;
  }
  35% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes inview-scale-sp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-loop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  45% {
    transform: translateX(16px);
    opacity: 0;
  }
  46% {
    transform: translateX(-16px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrow-loop-vertical {
  0% {
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
  45% {
    transform: rotate(90deg) translateX(16px);
    opacity: 0;
  }
  46% {
    transform: rotate(90deg) translateX(-16px);
    opacity: 0;
  }
  100% {
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
}
@keyframes raise-character {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes raise-character-svg {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
/************************************************************************
 * FAQ css
 *************************************************************************/
div#wrapper h2.head {
  margin-bottom: 56px;
}
@media screen and (max-width: 743px) {
  div#wrapper h2.head {
    margin-bottom: 40px;
  }
}
div#wrapper h2.ttl {
  margin-top: 56px;
  margin-bottom: 24px;
  font-size: 32px;
}
@media screen and (max-width: 743px) {
  div#wrapper h2.ttl {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 16px;
  }
}
div#wrapper .faq-box {
  padding: 24px;
  background-color: #fff;
  border-radius: 1rem;
  cursor: pointer;
}
@media screen and (min-width: 744px) {
  div#wrapper .faq-box:hover .faq-q-box p.label {
    color: #009AB6;
  }
  div#wrapper .faq-box:hover .faq-q-box::after {
    background-color: #009AB6;
  }
}
@media screen and (max-width: 743px) {
  div#wrapper .faq-box {
    padding: 1rem;
    border-radius: 0.5rem;
  }
}
div#wrapper .faq-box:nth-child(n+3) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper .faq-box:nth-child(n+3) {
    margin-top: 1rem;
  }
}
div#wrapper .faq-box p.head {
  flex-shrink: 0;
  width: 43px;
  font-size: 48px;
  font-weight: bold;
  color: #009AB6;
  margin-right: 15px;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 743px) {
  div#wrapper .faq-box p.head {
    font-size: 40px;
  }
}
div#wrapper .faq-box.open .faq-q-box::after {
  transform: translateY(50%) rotate(-90deg);
}
div#wrapper .faq-box.open .faq-a-box {
  grid-template-rows: 1fr;
}
div#wrapper .faq-box.open .faq-a-box .faq-a-box-inner {
  margin-top: 1rem;
}
div#wrapper .faq-box .faq-q-box {
  display: flex;
  align-items: center;
  position: relative;
}
div#wrapper .faq-box .faq-q-box::after {
  content: "";
  mask: url("../img/common/arrow2.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  width: 24px;
  height: 24px;
  background-color: black;
}
@media screen and (max-width: 743px) {
  div#wrapper .faq-box .faq-q-box::after {
    mask: url("../img/common/arrow2.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    width: 20px;
    height: 20px;
    background-color: black;
  }
}
div#wrapper .faq-box .faq-q-box::after {
  position: absolute;
  background-color: #2D3234;
  right: 0;
  bottom: 50%;
  transform: translateY(50%) rotate(90deg);
  transition: transform 0.3s, background-color 0.3s;
}
div#wrapper .faq-box .faq-q-box .label {
  font-size: 1.5rem;
  font-weight: bold;
  padding-right: 3.5rem;
  transition: color 0.3s;
}
@media screen and (max-width: 743px) {
  div#wrapper .faq-box .faq-q-box .label {
    font-size: 1.125rem;
    padding-right: 2rem;
  }
}
div#wrapper .faq-box .faq-a-box {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
div#wrapper .faq-box .faq-a-box .faq-a-box-inner {
  overflow: hidden;
  display: flex;
  transition: margin-top 0.3s ease;
}
div#wrapper .faq-box .faq-a-box .faq-a-box-inner .label {
  line-height: 180%;
}
@media screen and (min-width: 744px) {
  div#wrapper .faq-box .faq-a-box .faq-a-box-inner .label {
    padding-right: 3rem;
  }
}
@media screen and (max-width: 743px) {
  div#wrapper .faq-box .faq-a-box .faq-a-box-inner .label {
    font-size: 0.9rem;
  }
}
div#wrapper .faq-box .faq-a-box .faq-a-box-inner .label a {
  color: #009AB6;
  transition: color 0.3s;
}
div#wrapper .faq-box .faq-a-box .faq-a-box-inner .label a:hover {
  text-decoration: none;
}

/*# sourceMappingURL=faq.css.map */
