@charset "UTF-8";
/*====================================================================================
1. START MAIN VISUAL SECTION.
====================================================================================*/
.p-top-mainvisual {
  padding: 2.5rem 0;
  text-align: center;
}

.p-top-mainvisual__catch {
  background: url("../images/top/mv-catch-bg.webp") no-repeat top center;
  background-size: 100%;
  width: 29rem;
  height: 7.5rem;
  text-align: center;
  font-weight: 900;
  font-size: 1.4rem;
  color: #000;
  padding-top: 4.3rem;
  margin: 1.5rem auto 0;
}

@media only screen and (max-width: 767px) {
  .p-top-mainvisual {
    background: url("../images/top/sp_mv-bg.webp") no-repeat top 1rem center, var(--gray);
    background-size: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .p-top-mainvisual {
    background: url("../images/top/mv-bg.webp") no-repeat top -1rem center, var(--gray);
    padding: 5rem 0;
  }
  .p-top-mainvisual .c-btn__link {
    margin-top: 3.5rem;
  }
  .p-top-mainvisual__catch {
    width: 37.1rem;
    height: 10rem;
    font-size: 1.8rem;
    padding-top: 5rem;
    margin: 3.5rem auto 0;
  }
}
/*====================================================================================
2. START MAIN PAGE
====================================================================================*/
/*============================== START SEC NEWS ==============================*/
.c-news {
  background: var(--gray);
  padding-bottom: 3rem;
}

.c-news__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
}

.c-news__title {
  width: 17rem;
}
.c-news__title h2 {
  background: url("../images/top/icon-info.webp") no-repeat left center;
  padding-left: 2.5rem;
  font-size: 1.6rem;
}

.c-news__cont {
  display: flex;
  flex-flow: column;
  width: 100%;
  gap: 1rem;
}

.c-news__item {
  width: 100%;
}

.c-news__link {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  text-decoration: none;
}

.c-news .date {
  color: var(--orange);
  font-weight: bold;
}
.c-news .text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media only screen and (max-width: 767px) {
  .c-news__main {
    gap: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-news {
    padding-bottom: 6rem;
  }
  .c-news__main {
    padding: 2rem 3rem;
    border-radius: 6rem;
  }
  .c-news__cont {
    width: calc(100% - 17rem);
    gap: 2rem;
  }
  .c-news__link:hover .text {
    color: var(--orange);
  }
  .c-news .date {
    width: 10rem;
  }
  .c-news .text {
    width: calc(100% - 12rem);
  }
}
/*============================== START SEC intro ==============================*/
.c-intro {
  position: relative;
  background: var(--gray) url("../images/top/s1-bg.webp") no-repeat center bottom;
  padding-bottom: 3rem;
}
.c-intro:after {
  position: absolute;
  content: "";
  background: url("../images/top/s1-dot.webp") no-repeat;
  background-size: 100%;
  width: 0.45rem;
  height: 4.7rem;
  left: 0;
  right: 0;
  bottom: -3.5rem;
  margin: auto;
  z-index: 3;
}

.c-intro__list {
  display: flex;
  flex-flow: column;
  width: 22rem;
  gap: 0.8rem;
  margin: auto;
}
.c-intro__list li {
  position: relative;
  background: #fff url("../images/top/icon-tick.webp") no-repeat center left 0.7rem;
  border-radius: 2rem;
  padding: 0.5rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .c-intro {
    background-size: 170%;
  }
  .c-intro__list li {
    background: #fff url("../images/top/icon-tick.webp") no-repeat center left 0.5rem;
    background-size: 1.8rem;
    font-size: 1.2rem;
    padding-left: 3.3rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-intro {
    padding-bottom: 6rem;
  }
  .c-intro:after {
    width: 0.9rem;
    height: 9.4rem;
    bottom: -7rem;
  }
  .c-intro__list {
    width: 46.5rem;
  }
  .c-intro__list li {
    padding-left: 4rem;
  }
}
/*============================== START SEC services ==============================*/
.c-services {
  padding: 4rem 0 6rem;
}

.c-services__head {
  display: flex;
  justify-content: center;
  align-items: top;
  gap: 1rem;
}

.c-services__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.c-services__txt {
  font-weight: bold;
  margin-top: 1rem;
}
.c-services__txt small {
  display: block;
  font-weight: normal;
}

@media only screen and (max-width: 767px) {
  .c-services__head .ballon img {
    width: 5.5rem;
  }
  .c-services__list {
    gap: 2rem 0;
  }
  .c-services__item {
    width: 48%;
  }
}
@media only screen and (min-width: 768px) {
  .c-services {
    padding: 8rem 0 12rem;
  }
}
/*============================== START SEC features ==============================*/
.c-features {
  position: relative;
  background: url("../images/top/features-bg_right.webp") top right repeat-y, url("../images/top/features-bg_left.webp") top left repeat-y, var(--gray);
  background-size: 45%;
  padding: 3rem 0 6rem;
}

.c-features__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.c-features__item {
  position: relative;
  background: #fff;
  width: 100%;
  border-radius: 1.6rem;
  text-align: center;
}
.c-features__item.item-warranty:after {
  position: absolute;
  content: "1年間保証付";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  background: #000;
  color: var(--yellow);
  text-align: center;
  padding: 0.5rem;
  line-height: normal;
  top: 2rem;
  left: -0.5rem;
}

.c-features__number {
  color: var(--yellow);
  font-weight: bold;
  font-size: 1.8rem;
  font-family: var(--font-Noto-en);
  padding: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.c-features__title {
  background: var(--yellow);
  font-weight: bold;
  font-size: 1.8rem;
  padding: 1rem 0.5rem;
}
.c-features__title small {
  display: block;
  font-size: 1.4rem;
}

.c-features__txt {
  padding: 1rem 0.5rem;
}

@media only screen and (min-width: 768px) {
  .c-features {
    padding: 6rem 0 13rem;
  }
  .c-features__list {
    gap: 2.5rem;
  }
  .c-features__item {
    width: calc((100% - 5rem) / 3);
  }
  .c-features__item.item-warranty:after {
    width: 7.1rem;
    height: 7.1rem;
    font-size: 1.6rem;
    padding: 1rem;
    top: 3rem;
    left: -1rem;
  }
  .c-features__number {
    font-size: 2.4rem;
    padding: 1rem;
  }
  .c-features__title {
    font-size: 2.4rem;
    padding: 1.5rem 1rem;
  }
  .c-features__title small {
    font-size: 1.6rem;
  }
  .c-features__txt {
    padding: 1.7rem 1rem;
  }
}
/*============================== START SEC price ==============================*/
.c-price {
  position: relative;
  padding: 3rem 0 6rem;
}

.c-price__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.c-price__item {
  position: relative;
  width: 100%;
  border-radius: 1.6rem;
  border: 3px solid #000;
}

.c-price__txt-head {
  text-align: center;
  padding: 1rem 0.5rem;
}
.c-price__txt-head span {
  position: relative;
  font-weight: bold;
  color: #000;
  padding: 0 1rem;
}
.c-price__txt-head span:after, .c-price__txt-head span:before {
  position: absolute;
  content: "";
  background: #000;
  width: 1px;
  height: 80%;
  bottom: 0;
}
.c-price__txt-head span:after {
  left: 0;
  transform: rotate(-25deg);
}
.c-price__txt-head span:before {
  right: 0;
  transform: rotate(25deg);
}

.c-price__title {
  position: relative;
  background: var(--yellow);
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
}
.c-price__title:after, .c-price__title:before {
  position: absolute;
  content: "";
  background: var(--yellow);
  width: 1.3rem;
  height: 100%;
  top: 0;
}
.c-price__title:after {
  left: -1.3rem;
}
.c-price__title:before {
  right: -1.3rem;
}
.c-price__title span {
  position: relative;
  display: inline-block;
  width: 100%;
  box-shadow: 0px 4px 0px 0px rgb(240, 240, 240);
}
.c-price__title span:after, .c-price__title span:before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  background: #d0c400;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  bottom: -1rem;
}
.c-price__title span:after {
  left: -1.3rem;
}
.c-price__title span:before {
  right: -1.3rem;
  transform: scale(-1, 1);
}

.c-price__price {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  color: #000;
}
.c-price__price small {
  font-size: 2rem;
}

.c-price__detail {
  border-top: 1px solid var(--gray);
  padding: 1rem 1.5rem;
  font-weight: 500;
}
.c-price__detail ul li {
  margin-bottom: 0.2rem;
}

.c-price__two-col {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-price__two-col p {
  text-align: left;
}
.c-price__two-col p.c-bracket {
  position: absolute;
  left: 60%;
}
@media only screen and (max-width: 767px) {
  .c-price__two-col p.c-bracket {
    left: 54%;
  }
}

.c-price__warning {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background: var(--gray);
  border-radius: 1.6rem;
  margin-bottom: 2.5rem;
}

.c-price__warning-icon {
  position: relative;
  width: 100%;
  text-align: center;
}

.c-price__warning-detail {
  position: relative;
  padding: 2rem 1rem;
}
.c-price__warning-detail p + p {
  margin-top: 0.5rem;
}
.c-price__warning-detail:after {
  position: absolute;
  content: "";
  margin: auto;
  left: 0;
  top: 0;
}
.c-price__warning-detail .c-bracket {
  font-size: 1.4rem;
  margin: 1rem 0;
}
.c-price__warning-detail .c-bracket .c-price__two-col {
  align-items: flex-start;
  gap: 1rem;
}

.c-price__options {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  border-radius: 1.6rem;
  overflow: hidden;
}

.c-price__options-item {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.4rem;
}

.c-price__options-head {
  background: url("../images/top/arrow.webp") no-repeat bottom -1.5rem right 1.5rem, #f5f5f5;
  font-weight: bold;
  font-size: 1.6rem;
}
.c-price__options-head h3 {
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.c-price__options-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 767px) {
  .c-price__list {
    padding: 0 1rem;
  }
  .c-price__warning-icon {
    padding: 2rem;
  }
  .c-price__warning-detail:after {
    background-repeat: repeat-x;
    background: url("../images/top/sp_warning-dot.webp") top left repeat-x;
    width: calc(100% - 3rem);
    height: 0.4rem;
    right: 0;
  }
  .c-price__warning-detail .c-bracket .c-price__two-col {
    flex-wrap: wrap;
    gap: 0;
  }
  .c-price__warning-detail .c-bracket .c-price__two-col .c-list_dot {
    width: 100%;
  }
  .c-price__options-item {
    border-bottom: 1px solid #ccc;
  }
  .c-price__options-item:last-child {
    border-bottom: none;
  }
}
@media only screen and (min-width: 768px) {
  .c-price {
    padding: 6rem 0 13rem;
  }
  .c-price__list {
    gap: 3.5rem;
    margin-bottom: 5rem;
  }
  .c-price__item {
    width: calc((100% - 10.5rem) / 3);
  }
  .c-price__title {
    font-size: 3rem;
  }
  .c-price__title:after, .c-price__title:before {
    width: 1.5rem;
  }
  .c-price__title:after {
    left: -1.5rem;
  }
  .c-price__title:before {
    right: -1.5rem;
  }
  .c-price__title span:after, .c-price__title span:before {
    width: 1.2rem;
    height: 1.2rem;
    bottom: -1.2rem;
  }
  .c-price__title span:after {
    left: -1.5rem;
  }
  .c-price__title span:before {
    right: -1.5rem;
  }
  .c-price__price {
    font-size: 6.4rem;
  }
  .c-price__price small {
    font-size: 3.2rem;
  }
  .c-price__detail {
    padding: 2rem;
  }
  .c-price__warning {
    margin-bottom: 5rem;
  }
  .c-price__warning-icon {
    width: 24rem;
  }
  .c-price__warning-detail {
    width: calc(100% - 24rem);
    padding: 4rem;
  }
  .c-price__warning-detail:after {
    background: url("../images/top/warning-dot.webp") repeat-y;
    width: 0.4rem;
    height: 75%;
    bottom: 0;
  }
  .c-price__warning-detail .c-bracket {
    font-size: 1.6rem;
  }
  .c-price__warning-detail .c-bracket .c-price__two-col {
    gap: 2rem;
  }
  .c-price__options-item {
    width: 33.3333333333%;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 4rem;
  }
  .c-price__options-item:nth-child(3n+3) {
    border-right: none;
  }
  .c-price__options-item:nth-child(4), .c-price__options-item:nth-child(5), .c-price__options-item:nth-child(6) {
    border-bottom: none;
  }
  .c-price__options-head h3 {
    font-size: 3.6rem;
  }
  .c-price__options-title {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.c-bracket {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  padding: 0 1rem;
  line-height: normal;
}
.c-bracket:after, .c-bracket:before {
  position: absolute;
  content: "";
  width: 0.7rem;
  height: 100%;
  border: 1px solid #4d4d4d;
  top: 0;
}
.c-bracket:after {
  left: 0;
  border-right: none;
}
.c-bracket:before {
  right: 0;
  border-left: none;
}

.c-bracket--red:after, .c-bracket--red:before {
  border-color: var(--red);
}

@media only screen and (min-width: 768px) {
  .c-bracket {
    font-size: 1.4rem;
  }
}
.c-list_dot li {
  position: relative;
  padding-left: 1.5rem;
}
.c-list_dot li:after {
  position: absolute;
  content: "";
  background: #4d4d4d;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  top: 1rem;
  left: 0;
}

/*============================== START SEC case ==============================*/
.c-case {
  position: relative;
  background: url("../images/top/case-bg.webp") no-repeat top center;
  padding: 3rem 0 6rem;
}

.c-case__item {
  background: #fff;
  border-radius: 1.6rem;
}
.c-case__item:not(.c-case__item:last-child) {
  margin-bottom: 2rem;
}

.c-case__head {
  position: relative;
  background: url("../images/top/case-icon.webp") no-repeat top 1rem right 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #ccc;
  padding: 1.5rem 0;
}

.c-case__number {
  position: relative;
  z-index: 0;
}
.c-case__number:before {
  position: absolute;
  content: "";
  background: var(--gray);
  clip-path: polygon(calc(100% - 1.5rem) 0, 100% 50%, calc(100% - 1.5rem) 100%, 0 100%, 0 0);
  width: 100%;
  height: 100%;
  left: 0;
  top: 4px;
  z-index: -1;
}
.c-case__number:after {
  position: absolute;
  content: "";
  background: #d0c400;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  width: 1rem;
  height: 1rem;
  bottom: -1rem;
  left: -1rem;
}
.c-case__number span {
  position: relative;
  display: inline-block;
  width: calc(100% + 1rem);
  background: var(--yellow);
  clip-path: polygon(calc(100% - 1.5rem) 0, 100% 50%, calc(100% - 1.5rem) 100%, 0 100%, 0 0);
  text-align: center;
  font-size: 1.6rem;
  font-family: var(--font-Noto-en);
  font-weight: bold;
  color: #000;
  padding: 0.3rem;
  margin-left: -1rem;
  z-index: 0;
}

.c-case__title {
  font-size: 1.6rem;
  font-weight: bold;
  padding-right: 0.5rem;
}

.c-case__detail {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem 1rem;
}

.c-case__arrow {
  width: 100%;
  background: url("../images/top/case-arr.webp") no-repeat center left;
  background-size: 3rem;
  padding-left: 4rem;
}

@media only screen and (max-width: 767px) {
  .c-case {
    background-repeat: repeat;
    background-size: contain;
  }
  .c-case__list {
    padding: 0 1rem;
  }
  .c-case__number {
    width: 9rem;
    min-width: 9rem;
  }
  .c-case__number span {
    padding: 1rem 0.3rem;
  }
  .c-case__arrow {
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-case {
    padding: 6rem 0 13rem;
  }
  .c-case__item:not(.c-case__item:last-child) {
    margin-bottom: 5rem;
  }
  .c-case__head {
    padding: 3rem 0;
    gap: 2rem;
  }
  .c-case__number {
    width: 22rem;
  }
  .c-case__number:before {
    clip-path: polygon(calc(100% - 2.5rem) 0, 100% 50%, calc(100% - 2.5rem) 100%, 0 100%, 0 0);
  }
  .c-case__number:after {
    width: 1.2rem;
    height: 1.2rem;
    bottom: -1.2rem;
    left: -1.2rem;
  }
  .c-case__number span {
    width: calc(100% + 1.2rem);
    clip-path: polygon(calc(100% - 2.5rem) 0, 100% 50%, calc(100% - 2.5rem) 100%, 0 100%, 0 0);
    margin-left: -1.2rem;
    font-size: 2.4rem;
  }
  .c-case__title {
    font-size: 2rem;
  }
  .c-case__detail {
    padding: 4rem;
  }
  .c-case__arrow {
    width: 40%;
    background-size: 4.4rem;
    padding-left: 7rem;
  }
}
/*============================== START SEC workflow ==============================*/
.c-workflow {
  position: relative;
  padding: 3rem 0 5rem;
}

.c-workflow__list {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.c-workflow__list:after {
  position: absolute;
  content: "";
  background: var(--yellow);
  left: 0;
  right: 0;
  top: 5rem;
  margin: auto;
  z-index: -1;
}

.c-workflow__item {
  position: relative;
  text-align: center;
  font-size: 1.4rem;
  counter-increment: number;
}
.c-workflow__item:after, .c-workflow__item:before {
  position: absolute;
  font-family: var(--font-Noto-en);
  font-weight: bold;
  text-align: center;
}
.c-workflow__item:after {
  content: counter(number, decimal-leading-zero);
  background: var(--yellow);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #000;
}
.c-workflow__item:before {
  content: "STEP";
  color: var(--yellow);
  font-weight: bold;
  letter-spacing: 1px;
}

.c-workflow__img {
  margin-bottom: 1.5rem;
}

.c-workflow__title {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.c-workflow__arrow {
  position: absolute;
  content: "";
  left: 0;
  bottom: 2rem;
  background: var(--yellow);
  font-weight: bold;
  text-align: center;
  color: #000;
}

@media only screen and (max-width: 767px) {
  .c-workflow__list {
    padding-left: 8rem;
  }
  .c-workflow__list:after {
    left: 4.2rem;
    right: auto;
    width: 4px;
    height: 75%;
    top: 0;
    bottom: 0;
  }
  .c-workflow__item {
    width: 100%;
    padding: 2rem 4rem 2rem 1.5rem;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
  }
  .c-workflow__item:after {
    left: -6rem;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .c-workflow__item:before {
    width: 5rem;
    height: 5rem;
    writing-mode: vertical-lr;
    left: -8rem;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .c-workflow__img {
    width: 12rem;
    height: auto;
    margin: 0 auto 1.5rem;
  }
  .c-workflow__arrow {
    width: 3rem;
    height: 65.2%;
    clip-path: polygon(50% 0, 100% 1.5rem, 100% calc(100% - 1.5rem), 50% 100%, 0 calc(100% - 1.5rem), 0 1.5rem);
    top: 9%;
    left: auto;
    right: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.5rem;
    line-height: normal;
    writing-mode: vertical-lr;
    text-orientation: upright;
  }
}
@media only screen and (min-width: 768px) {
  .c-workflow {
    padding: 7rem 0 10rem;
  }
  .c-workflow__list {
    padding-top: 10rem;
  }
  .c-workflow__list:after {
    width: 75%;
    height: 4px;
  }
  .c-workflow__item {
    width: 25%;
    padding: 2rem 2rem 8rem;
    border-left: 1px solid #ccc;
  }
  .c-workflow__item:nth-child(4) {
    border-right: 1px solid #ccc;
  }
  .c-workflow__item:after, .c-workflow__item:before {
    left: 0;
    right: 0;
    margin: auto;
  }
  .c-workflow__item:after {
    width: 7rem;
    height: 7rem;
    font-size: 2.4rem;
    top: -8rem;
  }
  .c-workflow__item:before {
    top: -10.5rem;
  }
  .c-workflow__img {
    margin-bottom: 3rem;
  }
  .c-workflow__title {
    font-size: 2rem;
  }
  .c-workflow__arrow {
    width: 75%;
    clip-path: polygon(1.5rem 0, calc(100% - 1.5rem) 0, 100% 50%, calc(100% - 1.5rem) 100%, 1.5rem 100%, 0% 50%);
  }
}
/*============================== START SEC faq ==============================*/
.c-faq {
  position: relative;
  background: var(--gray);
  padding: 3rem 0 6rem;
}

.c-faq__list {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  z-index: 2;
}
.c-faq__list:after, .c-faq__list:before {
  position: absolute;
  top: 0;
  font-family: var(--font-Noto-en);
  font-size: 5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  writing-mode: vertical-lr;
  line-height: 0.8;
  z-index: -1;
}
.c-faq__list:after {
  content: "questions";
  left: -1.5rem;
}
.c-faq__list:before {
  content: "answers";
  right: -1.5rem;
}

.c-faq__item {
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 1.6rem;
}

.c-faq__Q, .c-faq__A {
  position: relative;
  width: 100%;
  padding: 1.8rem 1rem 1.5rem;
  padding-left: 5rem;
}

.c-faq__Q:after, .c-faq__A:after {
  position: absolute;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: bold;
  font-family: var(--font-Noto-en);
  top: 1.5rem;
  left: 1rem;
}

.c-faq__Q {
  position: relative;
  font-weight: bold;
}
.c-faq__Q:after {
  background: #000;
  content: "Q";
  color: var(--yellow);
}
.c-faq__Q:before {
  position: absolute;
  content: "";
  background: url("../images/top/faq-arrow.webp") no-repeat;
  width: 1.2rem;
  height: 2.4rem;
  top: 24%;
  right: -1.2rem;
}
.c-faq__Q h3 {
  font-size: 1.4rem;
}

.c-faq__A:after {
  background: var(--yellow);
  content: "A";
  color: #000;
}

@media only screen and (max-width: 767px) {
  .c-faq__list {
    padding: 0 2rem;
  }
  .c-faq__Q {
    border-bottom: 2px solid #ddd;
  }
  .c-faq__Q:before {
    top: auto;
    bottom: -1.8rem;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(90deg);
  }
}
@media only screen and (min-width: 768px) {
  .c-faq {
    padding: 6rem 0 13rem;
  }
  .c-faq__list {
    gap: 2.5rem;
  }
  .c-faq__list:after, .c-faq__list:before {
    font-size: 16rem;
  }
  .c-faq__list:after {
    left: -15rem;
  }
  .c-faq__list:before {
    right: -15rem;
  }
  .c-faq__Q, .c-faq__A {
    width: 50%;
    padding: 3.5rem 3rem 3.5rem 2rem;
    padding-left: 8rem;
  }
  .c-faq__Q:after, .c-faq__A:after {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 3rem;
    top: 2.5rem;
    left: 2rem;
  }
  .c-faq__Q {
    border-right: 2px solid #ddd;
  }
  .c-faq__Q h3 {
    font-size: 1.6rem;
  }
}