.top__primary-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: #756564;
    border-radius: 6px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top__primary-button:hover {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

.top__secondary-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: #fff;
    border-radius: 6px;
    color: #756564;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #b7a6a5;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top__secondary-button:hover {
    color: #756564;
    background-color: #f5f5f5;
    text-decoration: none;
}

.top__container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.top__hero {
    padding: 5rem 0;
    background-color: #fbfaf5;
}

@media screen and (max-width: 768px) {
    .top__hero {
        padding: 5rem 1rem;
    }
}

.top__hero > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

@media screen and (max-width: 768px) {
    .top__hero > div {
        flex-direction: column;
    }
}

.top__hero > div > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.top__hero h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #756564;
}

.top__hero p {
    font-size: 1.5rem;
    color: #756564;
    margin-bottom: 0.5rem;
}

.top__hero img {
    width: 400px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .top__hero img {
        width: 100%;
        height: auto;
    }
}

.top_register {
    padding: 5rem 0;
}

@media screen and (max-width: 768px) {
    .top_register {
        padding: 5rem 1rem;
    }
}

.top_register h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #756564;
    margin: 0;
}

.top_register p {
    font-size: 1.5rem;
    color: #756564;
    margin-bottom: 0.5rem;
}

.top_register > div {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 5rem;
}

@media screen and (max-width: 768px) {
    .top_register > div {
        align-items: center;
    }
}

.top_register > div > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.top_register > div > div:last-child {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media screen and (max-width: 768px) {
    .top_register > div > div:last-child {
        flex-direction: column;
        align-items: flex-start;
    }
}

.top__needs {
    padding: 5rem 0;
    background-color: #ececde;
}

@media screen and (max-width: 768px) {
    .top__needs {
        padding: 5rem 1rem;
    }
}

.top__needs h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #756564;
}

.top__needs p {
    font-size: 1.5rem;
    color: #756564;
    margin-bottom: 0.5rem;
}

.top__needs img {
    width: auto;
    height: 350px;
}

@media screen and (max-width: 768px) {
    .top__needs img {
        width: 100%;
        height: auto;
    }
}

.top__needs > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.top__needs > div > div {
    width: 100%;
}

.top__how-to-use {
    padding: 5rem 0;
    background-color: #fbfaf5;
}

@media screen and (max-width: 768px) {
    .top__how-to-use {
        padding: 5rem 1rem;
    }
}

.top__how-to-use > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.top__how-to-use > div > div {
    width: 100%;
}

.top__how-to-use h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #756564;
}

.top__how-to-use h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #756564;
    margin-top: 1rem;
}

.top__how-to-use p {
    font-size: 1.5rem;
    color: #756564;
    margin-bottom: 0.5rem;
}

.top__how-to-use ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 2rem;
    width: 100%;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .top__how-to-use ul {
        gap: 5rem;
        grid-template-columns: repeat(1, 1fr);
    }
}

.top__how-to-use ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #fa6c60;
    border-radius: 50%;
    height: 220px;
    width: 220px;
    padding: 2rem 0 0;
    background-color: #fff;
    position: relative;
}

.top__how-to-use ul > li:not(:last-child)::after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 24px;
    height: 24px;
    left: 227px;
    bottom: 90px;
    background-image: url("/assets/svg/top/how-to-use-arrow.svg");
}

@media screen and (max-width: 768px) {
    .top__how-to-use ul > li:first-child::after {
        content: none;
    }

    .top__how-to-use ul > li:not(:first-child)::after {
        content: '';
        display: inline-block;
        position: absolute;
        width: 24px;
        height: 24px;
        left: 97px;
        bottom: 227px;
        transform: rotate(90deg);
        background-image: url("/assets/svg/top/how-to-use-arrow.svg");
    }
}

.top__how-to-use ul > li > p {
    font-size: 1.3rem;
    color: #756564;
    text-align: center;
}

.top__how-to-use img {
    width: 55px;
    height: auto;
}

.top__purpose {
    padding: 5rem 0;
    background-color: #fbfaf5;
}

@media screen and (max-width: 768px) {
    .top__purpose {
        padding: 5rem 1rem;
    }
}

.top__purpose > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.top__purpose > div > div {
    width: 100%;
}

.top__purpose h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #756564;
}

.top__purpose p {
    font-size: 1.5rem;
    color: #756564;
    margin-bottom: 0.5rem;
}

.top__purpose .swiper {
    width: 100%;
    height: 240px;
}

.top__purpose .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #d9d9d9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.top__purpose .swiper-slide > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #f5ebd2;
    padding: 3rem 2rem;
    flex-grow: 1;
}

.top__purpose .swiper-slide img {
    width: auto;
    height: 100px;
}

.top__purpose .swiper-slide span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 1.2rem;
    font-weight: 600;
    color: #756564;
    padding: 1rem;
    min-height: 60px; /* FIXME: 絶対値を使わない */
}

.top__category {
    padding: 5rem 0;
    background-color: #fbfaf5;
}

@media screen and (max-width: 768px) {
    .top__category {
        padding: 5rem 1rem;
    }
}

.top__category > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.top__category > div > div {
    width: 100%;
}

.top__category h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #756564;
}

.top__category p {
    font-size: 1.5rem;
    color: #756564;
    margin-bottom: 0.5rem;
}

.top__category .swiper {
    width: 100%;
    height: 240px;
}

.top__category .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #d9d9d9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.top__category .swiper-slide > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #e1e9d4;
    padding: 3rem 2rem;
    flex-grow: 1;
}

.top__category .swiper-slide img {
    width: auto;
    height: 100px;
}

.top__category .swiper-slide span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 1.2rem;
    font-weight: 600;
    color: #756564;
    padding: 1rem;
    min-height: 60px; /* FIXME: 絶対値を使わない */
}

.top__matter {
    padding: 5rem 0;
    background-color: #f2f1ef;
}

@media screen and (max-width: 768px) {
    .top__matter {
        padding: 5rem 1rem;
    }
}

.top__matter > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.top__matter > div > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.top__matter h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #756564;
}

.top__matter p {
    font-size: 1.5rem;
    color: #756564;
    margin-bottom: 0.5rem;
}

.top__review {
    padding: 5rem 0;
    background-color: #fbfaf5;
}

@media screen and (max-width: 768px) {
    .top__review {
        padding: 5rem 1rem;
    }
}

.top__review > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.top__review > div > div {
    width: 100%;
}

.top__review h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #756564;
}

.top__review p {
    font-size: 1.5rem;
    color: #756564;
    margin-bottom: 0.5rem;
}

.top__review-content-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .top__review-content-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.top__review-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #d9d9d9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.top__review-content-category {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top__review-content-category > span {
    font-size: 1.3rem;
    color: #756564;
    padding: 0.5rem 1rem;
    background-color: #d9d9d9;
    border-radius: 6px;
}

.top__review-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.star5_rating {
    position: relative;
    z-index: 0;
    display: inline-block;
    white-space: nowrap;
    color: #ccc;
    font-size: 2rem;
}

.star5_rating:before, .star5_rating:after {
    content: '★★★★★';
}

.star5_rating:after {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #fbe184;
}

.star5_rating[data-rate="5"]:after {
    width: 100%;
}

.star5_rating[data-rate="4.5"]:after {
    width: 90%;
}

.star5_rating[data-rate="4"]:after {
    width: 80%;
}

.star5_rating[data-rate="3.5"]:after {
    width: 70%;
}

.star5_rating[data-rate="3"]:after {
    width: 60%;
}

.star5_rating[data-rate="2.5"]:after {
    width: 50%;
}

.star5_rating[data-rate="2"]:after {
    width: 40%;
}

.star5_rating[data-rate="1.5"]:after {
    width: 30%;
}

.star5_rating[data-rate="1"]:after {
    width: 20%;
}

.star5_rating[data-rate="0.5"]:after {
    width: 10%;
}

.star5_rating[data-rate="0"]:after {
    width: 0;
}

.top__contact {
    padding: 5rem 0;
}

.top__contact > div {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.top__contact > div > div {
    width: 100%;
}

.top__contact h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #756564;
}

.top__contact p {
    font-size: 1.5rem;
    color: #756564;
    margin-bottom: 0.5rem;
}

.top__contact form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.top__contact label {
    font-size: 1.3rem;
    color: #756564;
    font-weight: 600;
}

.top__contact input,
.top__contact textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #b7a6a5;
    border-radius: 6px;
    font-size: 1.3rem;
    margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: #756564 !important;
}

