.page-inner {
    margin: 0 auto;
    width: 95%;
    max-width: 1000px;
}
.page-head {
    margin: 0 0 25px;
}
.page-head h1,
.page-head h2 {
    font-size: 32px;
    font-weight: 700;
}
/* faq */
.faq.block {
    padding-top: 0;
}
.faq-list__item {
    background: #fff;
    border-radius: 5px;
    filter: drop-shadow(0 2px 5px rgb(0 0 0 / 10%));
    overflow: hidden;
}
.faq-list__item:not(:last-child) {
    margin: 0 0 15px;
}
.faq-list__item dt,
.faq-list__item dd {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.faq-list__item dt {
    padding: 20px 50px 15px 20px;
    position: relative;
}
.faq-list__item dd {
    border-top: 1px dashed #ccc;
    padding: 20px 20px 15px;
}
.faq-list__item dt::before,
.faq-list__item dd::before {
    font-family: var(--ft-poppin);
    font-size: 20px;
    font-weight: 700;
    position: relative;
    bottom: 2px;
    width: 30px;
}
.faq-list__item dt::after {
    background: url(../images/arrow-b.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 12px;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 1px;
    bottom: 0;
    transform: rotate(90deg);
    width: 7px;
}
.faq-list__item.open dt::after {
    transform: rotate(-90deg);
}
.faq-list__item dt::before {
    content: "Q";
    color: #d56363;
}
.faq-list__item dd::before {
    content: "A";
    color: #153963;
}
.faq-list__item dt p,
.faq-list__item dd p {
    width: calc(100% - 30px);
}
.faq-list__item dt p {
    font-size: 18px;
    font-weight: 600;
}
.faq-list__item dd p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8em;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .faq-list__item dt::before,
    .faq-list__item dd::before {
        font-size: 18px;
        bottom: 1px;
        width: 25px;
    }
    .faq-list__item dt p {
        font-size: 16px;
    }
}

/* about */
.about-top {
    margin: 0 auto 65px;
    padding: 0 0 35px;
    position: relative;
    width: 95%;
    max-width: 960px;
}
.about-top::after {
    background: var(--cr-male);
    content: "";
    display: block;
    height: 4px;
    margin: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100px;
}
.about-top__text {
    display: grid;
    gap: 5px;
    margin: 0 0 25px;
}
.about-top__text p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8em;
    text-align: left;
}
.about-note {
    background: var(--cr-male-bg);
    border-radius: 12px;
    margin: 0 auto;
    padding: 25px;
    width: 90%;
    max-width: 750px;
}
.about-note p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8em;
}
.about-bottom {
    margin: 0 auto;
    width: 95%;
    max-width: 1000px;
}
.about-bottom__ttl {
    border-left: 6px solid var(--cr-female);
    margin: 0 0 25px;
    padding: 2px 0 2px 8px;
    text-align: left;
}
.about-bottom__ttl h2 {
    font-size: 20px;
    font-weight: 700;
}
.about-cards {
    display: grid;
    gap: 25px;
}
.about-card {
    background: #fff;
    border-radius: 12px;
    filter: drop-shadow(0 2px 5px rgb(0 0 0 / 10%));
    padding: 20px;
}
.about-card__ttl {
    margin: 0 0 8px;
}
.about-card__ttl h4 {
    font-size: 18px;
    font-weight: 600;
}
.about-card__txt p {
    font-size: 16px;
    line-height: 1.8em;
}
.about-card__tables {
    margin: 20px 0 0;
}
.about-card__tables h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
}
.about-card__table {
    border: 2px solid #fff;
    border-radius: 12px;
    border-collapse: collapse;
    overflow: hidden;
    width: 100%;
}
.about-card__table th,
.about-card__table td {
    border: 2px solid #fff;
    padding: 10px;
}
.about-card__table th.male {
    background: var(--cr-male-bg);
}
.about-card__table th.female {
    background: var(--cr-female-bg);
}
.about-card__table th.unisex {
    background: var(--cr-unisex-bg);
}
.about-card__table td {
    background: #f1f1f1;
}
.about-card__table th p,
.about-card__table td p {
    font-size: 14px;
    font-weight: 500;
}
.about-card__table th p {
    font-weight: 700;
    white-space: nowrap;
}
.about-card__note {
    background: #f5f5f5;
    border-radius: 12px;
    margin: 15px 0 0;
    padding: 12px;
}
.about-card__note p {
    font-size: 14px;
    line-height: 1.8em;
}
@media screen and (max-width: 968px) {
    .about-top__text p {
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    .about-note {
        padding: 20px;
    }
    .about-note p {
        font-size: 14px;
    }
    .about-card {
        padding: 15px;
    }
    .about-bottom__ttl h2 {
        font-size: 18px;
    }
    .about-card__ttl h4 {
        font-size: 16px;
    }
    .about-card__txt p {
        font-size: 14px;
        line-height: 1.8em;
    }
    .about-card__table th,
    .about-card__table td {
        padding: 8px;
    }
    .about-card__note {
        padding: 10px;
    }
}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}