.btn {
  max-width: 400px;
  width: 100%;
  padding: 23px 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-transform: capitalize;
  text-align: center;
  font-family: noto-sans-cjk-jp, sans-serif;
  display: block;
  white-space: nowrap;
  border-radius: 50px;
  position: relative;
  top: 0;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .btn {
    max-width: 300px;
    width: 100%;
    padding: 18px 10px;
  }
}
.btn:hover {
  top: -3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.btn-txt-white {
  background: #64629D;
  color: #FFFFFF;
  border: 2px solid #64629D;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2392156863);
}

.btn-txt-black {
  background: #FFFFFF;
  border: 2px solid #2D2D32;
  color: #2D2D32;
}

.btn-txt-purple {
  background: #FFFFFF;
  border: 2px solid #64629D;
  color: #64629D;
}

.common-title {
  font-family: futura-pt-bold, sans-serif;
  color: #9F9EC1;
  text-transform: capitalize;
  font-family: futura-pt-bold, sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .common-title {
    font-size: 22px;
  }
}

.common-subtitle {
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #64629D;
  font-family: Noto Sans JP;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 767px) {
  .common-subtitle {
    font-size: 30px;
    line-height: 42px;
  }
}

.inner {
  max-width: 1250px;
  width: 100%;
  margin: auto;
  padding: 0 25px;
}
@media (max-width: 767px) {
  .inner {
    max-width: 600px;
    padding: 0 20px;
  }
}

.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

.br-pc {
  display: block;
}
@media (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

.header {
  height: 72px;
  width: 100%;
  z-index: 10000;
  background-color: #FFFFFF;
  position: fixed;
  inset: 0;
}
@media (max-width: 767px) {
  .header {
    height: 52px;
  }
}

.layout-header {
  position: fixed;
  inset: 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  height: inherit;
  padding: 0 39px 0 25px;
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 20px;
  }
}

.header__logo {
  height: inherit;
  max-width: 83px;
  width: 100%;
}
@media (max-width: 767px) {
  .header__logo {
    max-width: 71px;
  }
}
.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}
.header__logo img {
  height: inherit;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 83/28;
  width: 100%;
}
@media (max-width: 767px) {
  .header__logo img {
    aspect-ratio: 71/24;
  }
}

.header__nav {
  display: flex;
  height: inherit;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__items {
  display: flex;
  justify-content: space-between;
  height: inherit;
}

.header__item {
  height: inherit;
}
.header__item a {
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.03em;
  height: inherit;
  display: flex;
  align-items: center;
  padding: 0 8px;
  position: relative;
  transition: 1s;
}
.header__item a::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 29%;
  background-color: #64629D;
  width: 50%;
  height: 1.35px;
  transition: 0.3s;
  opacity: 0;
}
.header__item a:hover::after {
  opacity: 1;
}

.header__btn-wrap {
  margin-left: 6px;
  display: flex;
  align-items: center;
  height: inherit;
}
@media (max-width: 767px) {
  .header__btn-wrap {
    display: none;
  }
}

.header__btn {
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  max-width: 180px;
  width: 100%;
}

.header__hamburger {
  position: relative;
  height: inherit;
  z-index: 2000;
}

.hamburger {
  padding: 10px 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
.hamburger.is-active .hamburger__bar-wrap span:nth-of-type(1) {
  top: 68%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active .hamburger__bar-wrap span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__bar-wrap span:nth-of-type(3) {
  top: 39%;
  transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 767px) {
  .hamburger {
    display: block;
  }
}

.hamburger__bar-wrap {
  height: inherit;
  display: block;
  z-index: 1000;
  width: 21px;
  height: 21px;
}
.hamburger__bar-wrap span {
  position: relative;
  width: 100%;
  display: block;
  height: 3px;
  background-color: #64629D;
  transform: translateY(-50%);
  transition: 0.3s;
}
.hamburger__bar-wrap span:nth-of-type(1) {
  top: 40%;
}
.hamburger__bar-wrap span:nth-of-type(2) {
  top: 64%;
  width: 13.12px;
  margin-left: auto;
  display: block;
}
.hamburger__bar-wrap span:nth-of-type(3) {
  top: 91%;
}

.hamburger__txt {
  font-size: 6px;
  font-weight: 700;
  line-height: 6px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #64629D;
  text-transform: uppercase;
}

.header__drawer {
  display: none;
  position: relative;
  inset: 0;
  z-index: 1000;
}
.header__drawer.is-active {
  display: block;
}

.drawer {
  width: 100%;
  height: 100vh;
  background-color: #EDECFC;
  position: absolute;
  content: "";
  z-index: 1500;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  padding: 60px 0 196px;
}

.drawer__nav {
  margin: auto;
  max-width: 300px;
  width: 100%;
}

.drawer__item {
  position: relative;
}
.drawer__item a {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.03em;
  padding: 20px 20px 20px 67px;
}
.drawer__item:before {
  position: absolute;
  content: "";
  border: 2px solid #64629D;
  transform: rotate(45deg) translateY(-50%);
  width: 17px;
  height: 17px;
  top: 50%;
  left: 8%;
}

.drawer__btn-wrap {
  margin-top: 44px;
  height: inherit;
}
.drawer__btn-wrap a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  margin: auto;
}
.drawer__btn-wrap a:nth-of-type(n+2) {
  margin-top: 32px;
}

.top {
  background-color: #EDECFC;
  height: 100vh;
  width: 100%;
  min-height: 700px;
  position: relative;
}

.top__inner {
  height: inherit;
  min-height: inherit;
}

.top__wrap {
  width: 94%;
  height: auto;
  max-width: 1187px;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .top__wrap {
    max-width: 600px;
    width: 90%;
    top: 54%;
  }
}

.top__content {
  width: 56.0204953032%;
  position: relative;
  z-index: 900;
}
@media (max-width: 767px) {
  .top__content {
    width: 100%;
  }
}

.top__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 86.88px;
}
@media (max-width: 767px) {
  .top__title {
    font-size: 30px;
    line-height: 48px;
  }
}

.top__txt {
  font-size: 18px;
  line-height: 32.4px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .top__txt {
    font-size: 16px;
    line-height: 25.6px;
    margin-top: 17px;
  }
}

.top__btn-wrap {
  margin-top: 33px;
  display: flex;
  gap: 37px;
  position: relative;
}
@media (max-width: 767px) {
  .top__btn-wrap {
    display: block;
    margin-top: -9px;
  }
}

.top__btn {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  padding: 18px 26px;
  max-width: 250px;
}
@media (max-width: 767px) {
  .top__btn {
    margin: auto;
    max-width: 300px;
    padding: 18px;
  }
  .top__btn:nth-of-type(n+2) {
    margin-top: 10%;
  }
}

.top__img {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 43.9795046968%;
  display: block;
  max-width: 515px;
}
.top__img img {
  aspect-ratio: 515/515;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .top__img {
    position: static;
    transform: translateY(0%);
    margin: -9% auto 0;
    max-width: 305px;
    width: 100%;
  }
}

.layout-about {
  margin-top: 89px;
}
@media (max-width: 767px) {
  .layout-about {
    margin-top: 75px;
  }
}

.about__content {
  margin: auto;
}

.about__subtitle {
  margin-top: 5px;
}
@media (max-width: 767px) {
  .about__subtitle {
    margin-top: 10px;
  }
}

.about__txt-bold {
  font-size: 18px;
  font-weight: 700;
  line-height: 32.4px;
  text-align: center;
  margin-top: 11px;
}
@media (max-width: 767px) {
  .about__txt-bold {
    font-size: 16px;
    line-height: 25.6px;
    margin-top: 22px;
  }
}

.about__txt-normal {
  font-size: 18px;
  line-height: 32.4px;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .about__txt-normal {
    font-size: 16px;
    line-height: 25.6px;
    margin-top: 25px;
  }
}

.about__btn {
  margin: 40px auto 0;
  font-size: 24px;
}
@media (max-width: 767px) {
  .about__btn {
    margin-top: 24px;
    font-size: 18px;
  }
}

.feature {
  padding: 83px 0 103px;
  background-color: #F9F9F9;
}
@media (max-width: 767px) {
  .feature {
    padding: 58px 0 45px;
    overflow-x: hidden;
  }
}

.layout-feature {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .layout-feature {
    margin-top: 60px;
  }
}

.feature__subtitle {
  margin-top: 10px;
}
.feature__subtitle span {
  font-size: 65px;
  font-family: futura-pt-bold, sans-serif;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0.05em;
  color: #64629D;
}
@media (max-width: 767px) {
  .feature__subtitle {
    margin-top: 2px;
  }
}

.feature__items {
  max-width: 1180px;
  width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .feature__items {
    max-width: 100%;
  }
}

.feature__item {
  display: flex;
  position: relative;
  margin-top: 20%;
}
.feature__item:nth-of-type(2) {
  margin-top: 14%;
}
.feature__item:nth-of-type(3) {
  margin-top: 22%;
}
@media (max-width: 767px) {
  .feature__item {
    padding-top: 49%;
    display: block;
  }
  .feature__item:nth-of-type(2) {
    padding-top: 62%;
  }
  .feature__item:nth-of-type(3) {
    padding-top: 47%;
  }
}
.feature__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .feature__wrap {
    max-width: 600px;
    width: 100%;
  }
}

.feature__flex {
  display: flex;
  align-items: flex-start;
  background-color: #FFFFFF;
  width: 64%;
  padding: 65px 40px;
  border-radius: 40px;
}
@media (max-width: 767px) {
  .feature__flex {
    display: block;
    padding: 40px 20px;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.feature__img {
  position: absolute;
  content: "";
  width: 43.3333333333%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .feature__img {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.feature__img img {
  aspect-ratio: 520/520;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .feature__img {
    width: 83%;
  }
}

.feature-img01 {
  right: 3%;
  top: 31%;
}
@media (max-width: 767px) {
  .feature-img01 {
    top: 21%;
    left: 50%;
  }
}

.feature-img02 {
  left: -1%;
  top: 77%;
}
@media (max-width: 767px) {
  .feature-img02 {
    left: 50%;
    top: 29%;
  }
}

.feature-img03 {
  right: 0;
  top: 27%;
}
@media (max-width: 767px) {
  .feature-img03 {
    right: 0;
    top: 20%;
  }
}

.feature__nbr {
  font-family: futura-pt-bold, sans-serif;
  font-size: 72px;
  font-weight: 400;
  color: #64629D;
  line-height: 1;
}
@media (max-width: 767px) {
  .feature__nbr {
    font-size: 42px;
  }
}

.feature__content {
  margin-left: 19px;
}
@media (max-width: 767px) {
  .feature__content {
    margin-left: initial;
  }
}

.feature__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 52.13px;
}
.feature__heading span {
  font-family: futura-pt-bold, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 52.13px;
}
@media (max-width: 767px) {
  .feature__heading {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0.01em;
    line-height: 31.86px;
  }
}

.feature__txt {
  line-height: 28.8px;
  margin-top: 11px;
  max-width: 470px;
  width: 100%;
}
@media (max-width: 767px) {
  .feature__txt {
    margin-top: 13px;
    font-family: Noto Sans JP;
    font-size: 14px;
    line-height: 22.4px;
  }
}

.trial {
  background: #2D2D32;
  padding: 62px 0;
}
@media (max-width: 767px) {
  .trial {
    padding: 40px 0;
  }
}

.trial__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 52.13px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .trial__title {
    font-size: 18px;
    line-height: 28.8px;
  }
}

.trial__btn {
  margin: 31px auto 0;
  padding: 23px 53px;
  max-width: 400px;
  width: 100%;
  font-size: 24px;
}
@media (max-width: 767px) {
  .trial__btn {
    margin-top: 24px;
    max-width: 300px;
    padding: 18px 42px;
    font-size: 16px;
    line-height: 18px;
  }
}

.users {
  padding-top: 84px;
}
@media (max-width: 767px) {
  .users {
    padding-top: 56px;
  }
}

.users__subtitle {
  margin-top: 7px;
}
@media (max-width: 767px) {
  .users__subtitle {
    margin-top: 4px;
  }
}

.users__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  row-gap: 50px;
  max-width: 972px;
  width: 100%;
  margin: auto;
  margin-top: 21px;
}
@media (max-width: 767px) {
  .users__items {
    margin-top: 13px;
    gap: 11px;
    row-gap: 12px;
  }
}

.users__item {
  max-width: 213px;
  width: 100%;
}
.users__item img {
  aspect-ratio: 213/169;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.flow {
  background-color: #F9F9F9;
  padding: 87px 0 80px;
}
@media (max-width: 767px) {
  .flow {
    padding: 54px 0 74px;
  }
}

.layout-flow {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .layout-flow {
    margin-top: 60px;
  }
}

.flow__subtitle {
  margin-top: 8px;
}

.flow__items {
  margin: 35px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 107px;
  max-width: 1086px;
  width: 100%;
}
@media (max-width: 767px) {
  .flow__items {
    margin-top: 40px;
    display: block;
    max-width: 100%;
  }
}

.flow__item {
  max-width: 280px;
  width: 100%;
  padding: 5px;
}
.flow__item a {
  height: 100%;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .flow__item {
    margin-top: 60px;
    max-width: 100%;
    width: 100%;
  }
}

.flow__nbr {
  position: absolute;
  content: "";
  left: -5px;
  top: -20px;
  width: 100%;
  max-width: 60px;
}
.flow__nbr img {
  aspect-ratio: 60/48;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .flow__nbr {
    left: 0;
    top: -30px;
  }
}

.flow__img {
  background: #EDECFC;
  border-radius: 30px;
  width: 100%;
  padding: 19px 42px;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .flow__img {
    padding: 22px 68px;
  }
}
.flow__img img {
  aspect-ratio: 189/137;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .flow__img img {
    aspect-ratio: 199/148;
  }
}

.flow__img-02 {
  position: relative;
}
.flow__img-02:before {
  position: absolute;
  content: url(../img/Polygon\ 1.svg);
  top: 50%;
  left: 0;
  display: block;
  transform: translate(-282%, -50%);
}
@media (max-width: 767px) {
  .flow__img-02:before {
    content: none;
  }
}
.flow__img-02:after {
  position: absolute;
  content: url(../img/Polygon\ 1.svg);
  top: 50%;
  right: 0;
  transform: translate(300%, -50%);
}
@media (max-width: 767px) {
  .flow__img-02:after {
    content: none;
  }
}

.flow__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 34.75px;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .flow__heading {
    font-size: 20px;
    margin-top: 16px;
  }
}

.flow__txt {
  line-height: 28.8px;
  margin-top: 7px;
  overflow-wrap: break-word;
}

.price {
  padding-top: 87px;
}
@media (max-width: 767px) {
  .price {
    overflow-x: auto;
    padding-top: 55px;
  }
}

.price__subtitle {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .price__subtitle {
    margin-top: 12px;
  }
}

.price__table {
  margin: auto;
  margin-top: 52px;
}
@media (max-width: 767px) {
  .price__table {
    overflow-x: auto;
    margin-top: 28px;
  }
}

.table {
  max-width: 1024px;
  width: 100%;
  table-layout: fixed;
  text-align: center;
  border-collapse: collapse;
}
.table tr:nth-of-type(2n) {
  background-color: #EDECFC;
}
.table th:nth-of-type(1) {
  width: 243px;
}
@media (max-width: 767px) {
  .table th:nth-of-type(1) {
    width: 151px;
  }
}
.table td {
  padding: 19px 5px;
  font-size: 18px;
  line-height: 1;
  text-align: center;
}
.table td:nth-of-type(2) {
  font-size: 24px;
  font-weight: 700;
  line-height: 18px;
}
@media (max-width: 767px) {
  .table td:nth-of-type(2) {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .table td {
    font-size: 14px;
    padding: 14px 0;
  }
}
@media (max-width: 767px) {
  .table {
    width: initial;
    max-width: 100%;
  }
}
.table .btn-txt-white:hover {
  background-color: #fff;
  color: #64629D;
  opacity: 1;
  border: 2px solid #64629D;
}
.table .btn-txt-black:hover {
  background-color: #2d2d2d;
  color: #fff;
  border: 2px solid #fff;
  opacity: 1;
}

.table__wrap {
  text-align: center;
  padding: 59px 5px 41px;
  background-color: #64629D;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.6);
  height: 286px;
}
@media (max-width: 767px) {
  .table__wrap {
    height: 232px;
  }
}

.table__plan {
  height: 286px;
}
@media (max-width: 767px) {
  .table__plan {
    height: 232px;
  }
}
.table__plan:nth-of-type(2n) {
  padding-top: 16px;
}
@media (max-width: 767px) {
  .table__plan:nth-of-type(2n) {
    padding-top: 32px;
  }
}
.table__plan:nth-of-type(2n) .table__wrap {
  padding: 47px 5px 41px;
  background-color: #2D2D32;
  box-shadow: none;
  height: 270px;
}
@media (max-width: 767px) {
  .table__plan:nth-of-type(2n) .table__wrap {
    height: 200px;
    padding: 28px 7px;
  }
}
.table__plan:nth-of-type(3) .table__heading {
  font-size: 28px;
}
.table__plan .table__btn {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .table__plan .table__btn {
    margin-top: 19px;
  }
}
.table__plan:nth-of-type(3) .table__btn {
  border: 2px solid #FFFFFF;
  box-shadow: none;
}
.table__plan:nth-of-type(3) .table__txt span {
  font-size: 45px;
}
@media (max-width: 767px) {
  .table__plan:nth-of-type(3) .table__txt span {
    font-size: 40px;
  }
}

.table__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 34.75px;
  color: #fff;
}
@media (max-width: 767px) {
  .table__heading {
    font-size: 20px;
    line-height: 28.96px;
  }
}

.table__btn {
  padding: 16px 5px;
  max-width: 234px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  margin: auto;
  position: static;
}
@media (max-width: 767px) {
  .table__btn {
    font-size: 16px;
    padding: 13px 19px;
  }
}

.table__txt {
  margin-top: 37px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28.96px;
  color: #fff;
}
.table__txt span {
  font-size: 39px;
  font-weight: 700;
  line-height: 28.96px;
  color: #fff;
}
@media (max-width: 767px) {
  .table__txt span {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .table__txt {
    font-size: 14px;
    margin-top: 11px;
  }
}

.table__name {
  width: 260px;
  padding: 13px 5px 13px 31px;
  font-size: 22px;
  display: block;
  text-align: left;
}
@media (max-width: 767px) {
  .table__name {
    padding: 10px 5px 10px 20px;
    font-size: 15px;
  }
}

.question {
  background-color: #F9F9F9;
  padding: 97px 0 99px;
}
@media (max-width: 767px) {
  .question {
    padding: 60px 0;
  }
}

.layout-question {
  margin-top: 87px;
}
@media (max-width: 767px) {
  .layout-question {
    margin-top: 90px;
  }
}

.question__subtitle {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .question__subtitle {
    margin-top: 12px;
  }
}

.question__content {
  max-width: 920px;
  width: 100%;
  margin: 42px auto 0;
}
@media (max-width: 767px) {
  .question__content {
    margin-top: 29px;
    max-width: 100%;
  }
}

.question__heading {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #64629D;
  border-radius: 10px;
  padding: 22px 0 22px 56px;
  margin-top: 24px;
  position: relative;
}
.question__heading:before {
  position: absolute;
  content: "Q";
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: block;
}
@media (max-width: 767px) {
  .question__heading:before {
    top: 23px;
    left: 15px;
  }
}
@media (max-width: 767px) {
  .question__heading {
    padding: 10px 10px 10px 47px;
    font-size: 16px;
    line-height: 25.6px;
  }
}

.question__txt {
  font-size: 18px;
  line-height: 32.4px;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 14px;
  padding: 21px 25px 22px 56px;
  position: relative;
}
.question__txt:before {
  position: absolute;
  content: "A";
  left: 24px;
  top: 21px;
  color: #2D2D32;
  font-size: 22px;
  font-weight: 700;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .question__txt:before {
    top: 11px;
    left: 14px;
  }
}
@media (max-width: 767px) {
  .question__txt {
    margin-top: 16px;
    padding: 12px 16px 12px 40px;
    font-size: 16px;
    line-height: 25.6px;
  }
}

.footer {
  background-color: #000000;
  padding: 27px 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1187px;
}
@media (max-width: 767px) {
  .footer__content {
    flex-direction: column-reverse;
    max-width: 100%;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .footer__left {
    text-align: center;
  }
}

.footer__logo {
  width: 100%;
  max-width: 69px;
}
.footer__logo img {
  aspect-ratio: 89/24;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .footer__logo img {
    aspect-ratio: 69/24;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    margin: auto;
  }
}

.footer__items {
  display: flex;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .footer__items {
    display: block;
    margin-top: 18px;
  }
}

.footer__item a {
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.03em;
  padding: 0 14px;
  color: #fff;
}
.footer__item a:nth-of-type(1) {
  padding-left: 0;
}
.footer__item a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .footer__item {
    margin-top: 14px;
  }
}

.footer__small {
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  letter-spacing: 0.03em;
  margin-top: 19px;
  color: #fff;
  display: block;
}
@media (max-width: 767px) {
  .footer__small {
    margin-top: 28px;
    line-height: 20px;
  }
}

.footer__sns {
  font-family: futura-pt-bold, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 17.9px;
  color: #fff;
  letter-spacing: 0.05em;
}

.footer__sns-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.footer__sns-logo {
  width: 100%;
  max-width: 24px;
  margin-right: 15px;
}
.footer__sns-logo img {
  aspect-ratio: 24/24;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.footer__sns-logo a:hover {
  opacity: 0.7;
}