@charset "UTF-8";

/* リンク折り返し */
a {
    word-break: break-word;
    overflow-wrap: break-word;
}


/* --------------パンくずリスト------------ */
.sec-top {
    padding-top: 16rem;
}

.sec-top .breadcrumb {
    overflow-x: scroll;
    white-space: nowrap;
    display: flex;
    flex-wrap: wrap;
}

.sec-top .breadcr10umb::-webkit-scrollbar {
    display: none;
}

.sec-top .breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    padding: 0;
    margin: 0;
    list-style: none;
}

.fa-solid {
    font-family: "Font Awesome 6 Free";
}

.fa-house:before {
    content: "\f015";
}

.sec-top .breadcrumb ul li::after {
    content: ">";
    padding: 0 3px;
    color: #555;
}

.sec-top .breadcrumb ul li:last-child::after {
    content: none;
}

.sec-top .breadcrumb ul li a {
    display: inline-block;
    color: #26854c;
}

.sec__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 5rem;
}

.breadcrumb li {
    font-size: 13px;
}

.wrap {
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

.inner,
.inner-column,
.category-box {
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.top-inner {
    max-width: 330px;
    margin-bottom: 40px;
    margin-right: auto;
    margin-left: auto;
}

.top-inner p {
    font-size: 12px;
    margin-left: 15px;
}

.top-title {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.top-title img {
    width: 60px;
    margin-right: 5px;
}

.top-title h1 {
    font-size: 35px;
}

/* 検索枠 */
.highlight {
    background: #FFB600;
    border-radius: 5px;
    font-weight: bold;
    padding: 2px;
}

/* 初期状態は非表示 */
.js_target {
    display: none;
}

/* 条件に一致したものだけ表示 */
.js_target.js_selected {
    display: block;
}

.searchStatus {
    margin: 2rem;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 3px solid #01b1b4;
    width: fit-content;
}

.search-box {
    display: flex;
    align-items: center;
}

.select-box-text {
    font-size: 16px;
    font-weight: 600;
}

.search-wrap {
    border: 1px solid #9e9e9e;
    margin-left: 20px;
    border-radius: 5px;
}

.search-box input {
    padding: 3px 11px;
    font-size: 12px;
    border-radius: 5px 0 0 5px;
}

.search-btn {
    font-size: 13px;
    background-color: #a5a3a3;
    border-radius: 0 4px 4px 0;
}

.search-button {
    padding: 3px 8px;
}

.fa-magnifying-glass {
    color: #fff;
}

.c-black {
    color: #000;
    margin-right: 1rem;
}

.select-box {
    margin-top: 1.5em;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.category-btn,
.category-name {
    padding: 2px 7px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    transition: 0.4s ease;
    font-size: 13px;
}

.category-btn:hover,
.category-name:hover {
    background-color: #e2e2e2;
}

.reset-btn {
    margin-top: 10px;
    padding: 2px 7px;
    border: 1px solid #26854c;
    border-radius: 6px;
    color: #26854c;
    cursor: pointer;
    transition: 0.4s ease;
    font-size: 13px;
}

.reset-btn:hover {
    background-color: #26854c;
    color: #fff;
}

/* 各カテゴリーの色 */
.category-btn.is-active {
    background-color: #969696;
    color: #ffffff;
}

/* タブレット版 */
@media(768px < width) {

    .inner,
    .inner-column {
        padding: 0 50px;
    }

    .sec-top {
        padding-top: 12rem;
    }

    .top-inner {
        max-width: 600px;
        text-align: center;
        margin-bottom: 70px;
    }

    .top-title img {
        width: 100px;
    }

    .top-title h1 {
        font-size: 50px;
    }

    .top-inner p {
        font-size: 19px;
    }

    .search-box {
        justify-content: center;
    }

    .select-box-text {
        font-size: 25px;
    }

    .search-wrap {
        margin-left: 40px;
        border-radius: 10px;
    }

    .search-box input,
    .search-btn {
        font-size: 25px;
    }

    .select-box {
        margin-top: 30px;
    }
}

/* PC版 */
@media(1024px < width) {
    .top-title {
        align-items: center;
    }

    .top-title h1 {
        font-size: 35px;
    }

    .top-inner p {
        font-size: 17px;
    }

    .search-box input,
    .search-btn {
        font-size: 18px;
    }

    .sec-top .breadcrumb {
        overflow-x: hidden;
    }

    .breadcrumb li {
        font-size: 15px;
    }
}

@media(1200px < width) {
    .column_article-wrap {
        max-width: 60%;
        margin-bottom: 15rem;
    }

    .breadcrumb li {
        font-size: 16px;
    }
}

/* コラム記事 */
.result {
    margin-top: 20px;
}

.topic__subtitle {
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 4.5rem;
    text-align: center;
}

.topic__subtitle:before {
    content: "|";
    display: inline-block;
    font-size: 1.2em;
    font-weight: normal;
    margin: 0 0.5em 0 0;
    transform: rotate(-45deg);
}

.topic__subtitle:after {
    content: "|";
    display: inline-block;
    font-size: 1.2em;
    font-weight: normal;
    margin: 0 0 0 0.5em;
    transform: rotate(45deg);
}

.column-box {
    max-width: 320px;
    width: 320px;
    border: #cccccc 1px solid;
    border-radius: 10px;
    padding: 20px 10px;
    box-shadow: 1px 4px 4px 2px rgba(136, 136, 136, 0.4);
    transition: 0.4s ease;
    margin-right: auto;
    margin-left: auto;
}

.article-box {
    margin-top: 25px;
    transition: 0.4s ease;
}

.column-link {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 5px;
    height: 320px;
}

.column-img,
.column-text {
    max-width: 270px;
    margin-right: auto;
    margin-left: auto;
    transition: 0.4s ease;
}

.column-img:hover {
    scale: 1.05;
}

.column-text {
    margin: 10px;
}

.column-text time {
    font-size: 14px;
}

.column-text a {
    width: fit-content;
    margin-top: 10px;
}

.column-text .category-name {
    background-color: #26854c;
    border: #26854c 1px solid;
    color: #fff;
}

.column-text .category-name:hover {
    background-color: #fff;
    color: #26854c;
}



.column-label {
    font-size: 15px;
    margin-bottom: 1rem;
}

.column-title {
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.column-title:hover {
    text-decoration: underline;
    opacity: 0.7;
}

@media(768px < width) {
    .column-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 4.35em;
    }

    .result h2 {
        text-align: center;
    }

    .column-text time {
        font-size: 1.6rem;
    }

    .column-label {
        font-size: 1.5rem;
    }

    .column-title {
        font-size: 1.7rem;
    }
}

/* リンクまとめ */
.call-to-action {
    margin-top: 50px;
    margin-bottom: 50px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.call-to-action h2 {
    font-weight: 600;
    font-size: 17px;
    text-align: center;
}


.link-btn-item {
    padding: 0;
    margin-top: 10px;
}

.offer__fukidashi {
    margin: 1rem auto;
}

.link-btn-item {
    margin: auto;
    width: 71.2rem;
}

.link-btn-item {
    margin: auto;
    width: 71.2rem;
}

.link-btn-item {
    width: 71.2rem;
}

.link-btn-item-column-1 {
    margin-top: 4em;
}

.link-btn-item a {
    margin: 0 auto;
    position: relative;
    width: 71.2rem;
}

.link-btn-item img {
    position: relative;
    transition: 0.2s;
    z-index: 2;
}

.link-btn-item a:hover img {
    transform: translate(0.5rem, 0.5rem);
}

.link-btn-item a:after,
.link-btn-item-column a:after {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5.55rem;
    content: "";
    height: 11.1rem;
    left: 0.5rem;
    position: absolute;
    bottom: -0.5rem;
    width: 100%;
    z-index: 1;
}

.mt-45em {
    margin-top: 4.5em;
}

@media(767px < width) {
    .call-to-action h2 {
        font-size: 30px;
    }

    .call-to-action {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .mt-0 {
        margin-top: 30px;
    }
}

@media(1200px < width) {
    .link-btn-box {
        flex-direction: column;
    }

    .link-btn-box {
        padding: 10px;
    }

}

@media(900px < width) {
    .link-btn-box {
        display: flex;
        justify-content: space-evenly;
    }

    .link-box-end {
        align-items: end;
    }

    .nocolumn {
        flex-direction: row;
    }

    .link-btn-item a:after,
    .link-btn-item-column a:after {
        height: 8rem;
    }

    .link-btn-item,
    .link-btn-item a {
        width: 45rem;
        margin: 0;
    }

    .link-btn-item a:after,
    .link-btn-item-column a:after {
        height: 7.1rem;
    }

    .mt-8rem {
        margin-top: 0.4em;
    }

    .mt-1em {
        margin-top: 0.4em;
    }
}

@media(1100px < width) {

    .link-btn-item,
    .link-btn-item a {
        width: 52rem;
    }

    .link-btn-item a:after,
    .link-btn-item-column a:after {
        height: 8.3rem;
    }

    .mt-8rem-c {
        margin-top: 4.4rem;
    }
}

@media(1200px < width) {
    .link-box-start {
        align-items: flex-start;
    }

}

/* ページネーション設定 */
.pagination-box {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 4rem;
}

.pagination {
    display: flex;
    gap: 3rem;
    margin-top: 50px;
}

.pagination button,
.prev,
.next {
    width: 50px;
    height: 50px;
    font-size: 14px;
    border: 1px solid #26854c;
    background-color: #fff;
    color: #26854c;
    cursor: pointer;
    text-align: center;
}

.pagination button:hover,
.prev:hover,
.next:hover {
    opacity: 0.7;
}

.pagination button.active {
    background-color: #26854c;
    color: #fff;
    border-color: #26854c;
    ;
}

.pagination button.disabled {
    cursor: default;
    opacity: 0.5;
}

@media(1000px < width) {

    .pagination button,
    .prev,
    .next {
        width: 5rem;
        height: 5rem;
        font-size: 2rem;
    }
}

/* フェードインアニメーション */
.article-box {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.article-box.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.article-box.is-visible .js_target {
    display: block !important;
}

@media (prefers-reduced-motion: reduce) {
    .article-box {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
        display: block !important;
    }

    .article-box.is-visible .js_target {
        display: block !important;
    }
}

/* コラム個別記事CSS */
.article-time p,
.article-category a,
.column_article-box p,
.column_article-wrap ul {
    font-size: 14px;

}

.article-time {
    margin-bottom: 2rem;
}

.column_article-wrap {
    margin-top: 5rem;
}

.article-category a {
    margin-top: 0.5rem;
    width: fit-content;
}

.article-title h1 {
    font-size: 19px;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.column_article-box {
    margin-top: 7rem;
    margin-bottom: 7rem;
}

.column_article-box h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2rem;
    border-left: 6px solid #26854c;
    padding-left: 10px;
}

.column_article-box h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-left: 5px double #26854c;
    padding-left: 8px;
}

.article-text {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.article-text p {
    line-height: 1.7em;
    margin-bottom: 10px;
}

.article-text span {
    font-size: 13px;
}

.article-text span a {
    color: #0066c0;
    text-decoration: underline;
}

.article-text span a:hover {
    opacity: 0.7;
    text-decoration: none;
}

.article-text table {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 13.5px;
}

.article-text table td,
.article-text table th {
    padding: 5px 15px 5px 5px;
}

.article-text table th {
    text-align: center;
}

.article-text table,
.article-text table td,
.article-text table th {
    border: 1px solid #000;
}

.writing_person-container {
    border-radius: 10px;
    background-color: #f0f8ff;
    padding: 3rem;
}

.writing_person-container img {
    max-width: 130px;
    margin-right: auto;
    margin-left: auto;
}

.writing_title {
    background-color: #fff;
    padding: 1rem 2.5rem;
    margin: 2rem auto;
    font-size: 3rem;
    font-weight: 600;
    color: #26854c;
    width: fit-content;
}

.writing_name {
    text-align: center;
    font-size: 18px;
    margin: 1rem;
    font-weight: 600;
}

.writing_text {
    font-size: 2.5rem;
    line-height: 1.7em;
}

.sns-box {
    display: flex;
    justify-content: space-evenly;
    margin: 5rem;
}

.sns-btn {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 0.5rem 2rem;
}

.sns-btn:hover {
    background-color: #cfcfcf;
}

.sns-btn img {
    width: 17px;
    margin-right: 1.5rem;
}

.sns-btn span {
    font-size: 2rem;
}

.side-menu {
    margin-top: 7rem;
}

.category-box h4 {
    font-size: 4.5rem;
    font-weight: 600;
}

.category-name {
    font-size: 13px;
}

.side-menu-link {
    margin-top: 20px;
}

@media(767px < width) {
    .mt-column {
        margin-top: 30px;
    }

    .article-title h1 {
        font-size: 30px;
    }

    .column_article-box h2 {
        font-size: 25px;
    }

    .column_article-box h3 {
        font-size: 20px;
    }

    .article-time p,
    .article-category a,
    .column_article-box p,
    .column_article-wrap ul {
        font-size: 17px;
    }

    .article-text span {
        font-size: 15px;
    }

    .writing_text {
        font-size: 17px;
    }

    .writing_title {
        font-size: 19px;
    }
}

@media(1000px < width) {
    .writing_person-container {
        display: flex;
        align-items: center;
    }

    .writing_person-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .writing_title {
        margin: 0;
    }

    .writing_name {
        font-size: 23px;
    }

    .writing_person-container img {
        /* max-width: 200px; */
        margin-right: 3rem;
        width: 130%;
    }

    .sns-btn img {
        width: 30px;
        margin-right: 1.5rem;
    }

    .sns-btn span {
        font-size: 2rem;
    }


}

@media(1200px < width) {
    .side-menu {
        max-width: 25%;
        position: fixed;
        top: 15rem;
        right: 5%;
    }

    .link-btn-item-column a:after {
        height: 68%;
    }

    .link-btn-item-column-1 a:after {
        height: 100%;
    }

    .link-btn-item-column,
    .link__fukidashi-column,
    .link-btn-item-column a {
        width: 90%;
    }

    .mt-05em {
        margin-top: 1.5em;
    }


    .mt-column {
        margin-top: 20px;
    }

    .category-box h4 {
        font-size: 30px;
    }

    .select-box-column {
        gap: 10px;
    }

    .article-time p,
    .article-category a,
    .column_article-box p,
    .column_article-wrap ul {
        font-size: 16px;
    }

    .article-title h1 {
        font-size: 30px;
    }

    .column_article-box h2 {
        font-size: 25px;
    }

    .column_article-box h3 {
        font-size: 20px;
    }

    .writing_person-text p {
        font-size: 16px;
    }

    .writing_person-text p.writing_name {
        font-size: 18px;
        margin-left: 0;
    }

    .article-text span {
        font-size: 15px;
    }

    .article-text table {
        font-size: 16px;
    }

    .article-text ul {
        margin-bottom: 10px;
    }

    .sns-btn img {
        width: 25px;
        margin-right: 1.5rem;
    }

    .sns-btn span {
        font-size: 16px;
    }
}

@media(1450px < width) {
    .side-menu {
        right: 14%;
    }
}

/* 目次 */
.accordion-column {
    max-width: 700px;
    background-color: #f0f8ff;
    border-radius: 5px;
    margin-bottom: 10px;
}

.details-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em 2em;
    background-color: #26854c;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
}

.details-summary::-webkit-details-marker {
    display: none;
}

.details-summary::after {
    content: '';
    width: 9px;
    height: 9px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.accordion-column.open .details-summary::after {
    transform: rotate(225deg);
}

.details-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.6s ease, opacity 0.6s ease, transform 0.6s ease, padding 0.6s ease;
    padding: 0 2em;
    /* 上下はJSで制御 */
}

.details-content>ul>li {
    font-weight: bold;
    margin-bottom: 0.5em;
    /* font-size: 2.2rem; */
}

section[id]::before {
    content: "";
    display: block;
    height: 120px;
    margin-top: -120px;
    visibility: hidden;
}


.details-content>ul>li:not(:first-child) {
    margin-top: 2.8rem;
}

.details-content .toc-sub li {
    font-weight: normal;
    margin-bottom: 0;
    /* font-size: 2rem; */
    margin-left: 1em;
    margin-top: 1.5rem;
}

.details-content li a {
    text-decoration: underline #464646;
    width: fit-content;
}

.details-content a:hover {
    text-decoration: none;
    opacity: 0.7;
}

@media(1200px < width) {
    .details-content>ul>li {
        font-size: 15px;
    }

    .details-content .toc-sub li {
        font-size: 15px;
    }
}

.c-cookie__btn {
    gap: 5rem;
}