/*フォント設定*/


/*色*/
.main-color {
    color: #00442d;
}

/*PC SP非表示*/
@media screen and  (max-width: 768px) {
    .hidden {
        display: none;
    }
    .block {
        display: block;
    }
}   /*768以下*/

@media screen and(min-width: 768px) {
    .md\hidden {
        display: none;
    }
    .md\block {
        display: block;
    }
}   /*768以上*/

/*余白*/
.px {
    padding-inline: 24px;
}
@media screen and (min-width: 768px) {
    .px {
        padding-inline: clamp(24px,16.7vw,240px);
    }
}
.solution {
    padding-block-end: 24px;
}
@media screen and (min-width: 768px) {
    .solution {
        padding-block-end: 80px;
    }
}

/*ホバー時*/
.selector:hover {
    opacity: 0.5;
}
/*title*/
.title {
    font-family: "Futura", sans-serif;
    font-size: clamp(40px,5.2vw,64px);
    text-align: center;
    padding-block: 45px 2px;

}
@media screen and (min-width: 768px) {
    .title {
        text-align: center;
        padding-block-start: 55px;
        padding-block-end: 0;
    }
}

.sub-title {
    font-size: clamp(14px,1.25vw,18px);
    text-align: center;
    margin-block-end: 30px;
}
@media screen and (min-width: 768px) {
    .sub-title {
        margin-block-end: 37px;
    }
}
.solution-description{
    padding-block-end: 32px;
    font-size: 14px;
    text-align: left;.sub-title;
    color:#191919;
    line-height: 1.8;
}
@media screen and (min-width: 768px) {
    .solution-description{
        padding-block-end: 40px;
        text-align:  center;
        line-height: 2;
    }
}

/*solution-list*/
@media (min-width: 455px) and (max-width: 959px) {
    .solution-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 24px;
        row-gap: 40px;
        max-width: 960px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 960px) {
    .solution-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 24px;
        row-gap: 40px;
        max-width: 960px;
        margin: 0 auto;
    }
}

.solution-list_image {
    padding-block-end: 11px;
}
@media screen and (min-width: 768px) {
    .solution-list_image{
        padding-block-end: 12px;
    }
}
.solution-list_image figure {
    width: 100%;
}
.solution-list_image figure img{
    width: 100%;
}
@media screen and (min-width: 768px) {
    .solution-list_image figure img{
        width: 304px;
    }
}


.solution-list_category {
    display: flex;
    column-gap: 8px;
    row-gap: 0;
    flex-wrap: wrap;
    margin-block-end: 4px;
}

.solution-list_category span {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding-block: 5px;
    padding-inline: 12px;
    margin-block-end: 8px;
}
@media screen and (min-width: 1221px) {
    .solution-list_category span {
        padding-block: 4px;
        padding-inline: 12px;
    }
}

.solution-list_category span:last-child {
    margin-inline-end: 0;
}
.solution-list_category .sub-category {
    display: inline-block;
    border: 1px solid #bbbbbb;
    padding-block: 4px;
    padding-inline: 11px;
}
.research {
    display: inline-block;
    padding-block: 5px;
    background: #0090D9;
    color: #fff;
}
.date {
    display: inline-block;
    background: #E0599C;
    color: #fff;
}
.tvads {
    display: inline-block;
    background: #389970;
    color: #fff;
}

.solution-list h4 {
    color: #191919;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.6;
    padding-block-end: 32px;
}

@media (min-width: 455px) {
    .solution-list h4 {
        padding-block-end: 0;
    }
}



/*section-document*/
.section-document {
    padding: 40px 24px 40px;
    background: #00442d;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .section-document {
        padding-block: 45px 47px;
        background: #00442d;
        text-align: center;
    }
}

.section-document_first {
    color: #fff;
    font-size: clamp(22px,2.2vw,32px);
    font-weight: bold;
}

.section-document p{
    margin-block-end: 20px;
}
@media screen and (min-width: 768px) {
    .section-document p{
        margin-block-end: 37px;
    }
}

.section-document_first span {
    display: block;
    color: #f9c67f;
    font-size: clamp(18px, 1.7vw,22px);
}
.section-document_first .section-document_text {
    display: inline-block;
    margin-block-end: 22px;
    font-size: clamp(14px, 1.2vw,16px);
    line-height: 1.8;
    text-align: left;
    font-weight: normal;
}
@media screen and (min-width: 768px) {
    .section-document_first .section-document_text {
        margin-block-end: 38px;
        text-align: center;
    }
}

.section-document .cta {
    width: 280px;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .section-document .cta {
        width: 578px;
        margin: 0 auto;
    }
}

.section-document .cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    background: #c3314b;
    color: #fff;
    font-size: 18px;
    border-radius: 28px;
}
@media screen and (min-width: 768px) {
    .section-document .cta a {
        height: 72px;
        border-radius: 40px;
        font-size: 20px;
    }
}

/*section-btn*/
.section-btn {
    padding: 40px 24px 10px;
}
@media screen and (min-width: 768px) {
    .section-btn {
        padding: 50px 24px 0;
    }
}

.section-btn ul {
    display: grid;
    grid-template-columns: 272px;
    gap: 16px;
    justify-content: center;
    color: #fff;
}
@media screen and (min-width: 768px) {
    .section-btn ul {
        grid-template-columns: 240px 240px;
        gap: 24px;
    }
}
.section-btn li {
    max-width: 272px;
}

.section-btn li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 24px;
    color: #fff;
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    .section-btn li a {
        height: 56px;
        border-radius: 28px;
        font-size: 18px;
    }
}
.section-btn li:first-of-type a {
    background: #be9c6d;
}
.section-btn li:last-of-type a {
    background: #191919;
}
