@charset "UTF-8";

#func_detail {
    background: var(--bg);
}
@media screen and (min-width: 768px){
    section > .inner {
        max-width: 1240px;
        
    }
}
.box {
    padding: 2em 20px;
    background: #fff;
    border-radius: 1.5rem;
}
@media screen and (min-width: 768px){
    .box {
        padding-top: 3.75em;
        padding-bottom: 3.75em;
    }
}
.section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3em auto;
}
@media screen and (min-width: 768px){
    .section {
        margin-bottom: 4em;
    }
}
.section:last-child {
    margin-bottom: 0;
}
.section_title {
    margin-bottom: 1.5em;
    font-size: 125%;
    font-weight: 700;
    line-height: 1.7;
}
@media screen and (min-width: 768px){
    .section_title {
        font-size: 150%;
    }
}
.section_title span {
    border-bottom: 1px solid var(--main);
    color: var(--main);
    font-weight: 700;
}
.section img {
    width: 100%;
    margin-bottom: 0;
    text-align: center;
}
.section figure figcaption {
    margin-bottom: 0.5em;
    font-size: 87.5%;
    text-align: center;
    display: inline-block;
    position: relative;
}
.section figure figcaption::before {
    content: '';
    width: 0;
    height: 0;
    margin-right: 0.5em;
    border-left: 0.5em solid transparent;
    border-right: 0.5em solid transparent;
    border-top: 1em solid var(--main);
    display: inline-block;
}
.section figure img {
    width: 100%;
    display: block;
}


.func_list {
    padding: 1.5em 20px;
    border-radius: 1.2rem;
}
@media screen and (min-width: 768px){
    .func_list {
        padding: 2.25em;
    }
}
.func_list h3 {
    margin-bottom: 1.5em;
    color: var(--main);
    font-weight: 700;
    font-size: 125%;
}
.func_list h3 span {
    border-bottom: 1px solid var(--main);
}
.func_list li {
    margin-right: 1em;
    margin-bottom: 1em;
    background: #fff;
    padding: 0.625em 1em;
    border: 1px solid var(--main);
    border-radius: 0.25em;
    font-size: 87.5%;
    font-weight: 500;
}
@media screen and (min-width: 768px){
    .func_list li {
        padding: 0.625em 2.5em;
        font-size: 100%;
    }
}
.func_list li:last-child {
    margin-right: 0;
}