@charset "UTF-8";

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #555;
}
h1, h2, h3, .font-rounded {
    font-family: 'M PLUS Rounded 1c', sans-serif;
}
.btn-main {
    background-color: #e78713;
    color: white;
    transition: background-color 0.3s;
}
.btn-green:hover {
    background-color: #2E533F;
}
.btn-white {
    background-color: white;
    border: 1px solid #e78713;
    transition: all 0.3s;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f8ce59;
}

/* もっと見る */
@media screen and (min-width: 768px) {
    .btn-white:hover {
        background-color: #e78713;
        color: white;
    }
}

/* アコーディオン　アイコン */

/* .summary:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top:#e78713 3px solid;
    border-right:#e78713 3px solid;
    border-radius: 3px;
    transform: rotate(var(--icon-rotate));
    position: absolute;
    right: -20px;
    top: calc(50% - 3px);
    transform: translate(.4s);
} */

.summary::after,
.summary::before {
    content: "";
    display: block;
    height: 2px;
    width: 15px;
    background-color: #e78713;
    position: absolute;
    right: -25px;
    top: 50%;
}
.summary::after {
    transform: rotate(var(--icon-rotate));
    transform: translate(.4s);
}

.list-content {
    list-style: disc;
    padding-left: 17px;
}
