@charset "UTF-8";

* {
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
}

body {
    overflow: scroll;
}

img {
    vertical-align: middle;
}

.mb {
    margin-bottom: 20px;
}

.mbx2 {
    margin-bottom: 60px;
}

.pt {
    padding-top: 20px;
}

.pb {
    padding-bottom: 20px;
}

.mbm {
    margin-bottom: 10px;
}

pbm {
    padding-bottom: 10px;
}

.cen {
    text-align: center;
}

.inner {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.inner02 {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.inner03 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bpad {
    padding: 30px;
}

.mpad {
    padding: 10px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.alc {
    align-items: center;
}

.flexw {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flexc {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.flexwai {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.flexr {
    flex-direction: row-reverse;
}

.w50 {
    width: 49%;
}

.col2 {
    width: 49%;
}

.col4 {
    width: 24%;
}

a:hover {
    opacity: 1;
    -webkit-animation: none 1.5s;
    animation: none 1.5s;
}

a:hover,
a:hover img {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}

@-webkit-keyframes flash {
    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: .4;
    }

    100% {
        opacity: 1;
    }
}

#vanta-bg {
    position: fixed;
    z-index: 0;
    width: 100%;
    height: 100vh;
}

#top {
    position: relative;
    z-index: 1;
}

.search-box {
    position: relative;
    color: #fff;
    display: inline-block;
    /* アイコンの色 */
}

.search-box i.fa-search {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.search-box .clear-btn {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999999;
    font-size: 16px;
    display: none;
}

.search-box input:not(:placeholder-shown) + .clear-btn {
    display: block;
    /* テキスト入力時に✕マークを表示 */
}

.search-box input {
    padding-right: 35%;
    /* ✕マークの分のパディングを追加 */
}

.fa-search:before {
    content: "\f002";
    color: #999999;
}

input[type="text"] {
    background: rgba(255, 255, 255, 0.13);
    /* 半透明の白色 */
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* 薄い白の境界線 */
    border-radius: 4px;
    /* 角を丸くする */
    padding: 10px 15px;
    /* 内部のパディング */
    color: #333;
    /* テキストの色 */
    font-size: 16px;
    /* フォントサイズ */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* ソフトな影 */
    backdrop-filter: blur(5px);
    /* 背景のぼかし効果 */
    -webkit-backdrop-filter: blur(5px);
    /* Safari用の背景ぼかし効果 */
    outline: none;
    /* アウトラインを削除 */
    padding-left: 30px;
    /* アイコンのスペースを確保 */
}

.filter-clear {
    position: fixed;
    right: 10px;
    top: 10px;
    cursor: pointer;
    color: #333;
    /* ✕マークの色 */
    font-size: 20px;
    /* ✕マークのサイズ */
}

.status-link-container {
    position: relative;
    display: inline-block;
    /* または必要に応じて他の表示方法 */
}

.clear-status {
    position: absolute;
    right: -8px;
    top: -8px;
    cursor: pointer;
    color: #333;
    font-size: 22px;
    display: none;
    opacity: 0;
}

.active_status .clear-status {
    display: block;
}


.clear-category {
    position: absolute;
    right: -8px;
    top: -8px;
    cursor: pointer;
    color: #333;
    font-size: 22px;
    display: none;
    opacity: 0;
}

.active_category .clear-category {
    display: block;
    opacity: 0;
}

.tag_group {
    border: 1px solid #ddd;
    padding: 15px 15px 0px 15px;
    position: relative;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.tag {
    display: none;

}

.tag ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.tag ul li {
    margin-right: 5px;
    margin-bottom: 5px;
}

.tag ul li a {
    background-color: #ff6ca2;
    text-decoration: none;
    color: #ffffff;
    display: inline-block;
    padding: 3px 5px;
    border-radius: 15px;
    font-size: 10px;
}

.tag_status {}

.tag_status ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.tag_status ul li {
    margin-right: 5px;
    margin-bottom: 5px;
}

.tag_status ul li a {
    background-color: #ff7300;
    text-decoration: none;
    color: #ffffff;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

ul.faq {
    list-style-type: none;
    padding: 0;
    word-break: break-all;
}

ul.faq li {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 40px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

ul.faq li.space {
    border: 0px solid #ddd;
    padding: 15px;
    margin-bottom: 40px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.0);
}

ul.faq .category,
ul.faq .activity_status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    background-color: #f2f2f2;
    color: #333;
    font-size: 0.9em;
    margin: 2px;
    /* カテゴリーとステータスのラベルのフォントスタイル */
    font-family: 'Courier New', Courier, monospace;
    /* 例: セリフ体フォント */
}

ul.faq .category {
    background-color: #ff6ca2;
}

ul.faq .activity_status {
    background-color: #ff7300;
}

ul.faq .category a,
ul.faq .activity_status a {
    color: #ffffff;
    text-decoration: none;
}

ul.faq .category {
    position: absolute;
    top: -10px;
    right: 10px;
}

ul.faq .activity_status {
    position: absolute;
    top: -10px;
    left: 10px;
}

ul.faq .q {
    font-weight: bold;
    margin-top: 30px;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

ul.faq .q::before {
    content: "Q. ";
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5em;
    font-weight: bold;
    color: #66b8ff;
}

ul.faq .a {
    margin-top: 10px;
    background-color: #fff2f2;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

ul.faq .a a {
    color: #e91eaa;
}

ul.faq .a .h {
    border-top: 1px solid #cccccc;
    margin-top: 5px;
    padding-top: 5px;
    color: #666666;
}

ul.faq .a::before {
    content: "A. ";
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5em;
    font-weight: bold;
    color: #ff6699;
}

ul.faq .a br {
    margin-bottom: 5px;
}

ul.faq .a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    cursor: pointer;
    transition: filter 0.3s ease;
    filter: blur(2px);
    opacity: 0.7;
    pointer-events: none;
}


/* 展開後の回答の表示スタイル */

ul.faq .expanded .a {
    -webkit-line-clamp: unset;
    filter: none;
    opacity: 1;
    pointer-events: auto;
}


/*:*/

@media screen and (min-width: 748px) {
    .inner {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    ul.faq {
        list-style-type: none;
        padding: 0;
        word-break: break-all;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: flex-start;
        flex-grow: 1;
    }

    ul.faq li {
        border: 1px solid #ddd;
        padding: 15px;
        margin-bottom: 40px;
        position: relative;
        border-radius: 10px;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
        width: 24%;
    }
}

@media screen and (max-width: 748px) {
    .flex {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .w50 {
        width: 100%;
    }

    .col2 {
        width: 100%;
    }

    .col4 {
        width: 100%;
    }

    .tab {
        display: flex;
        justify-content: space-between;
        font-size: 80%;
    }

    .img {
        text-align: center;
    }

    .inner {
        padding: 0 2%;
    }

    .inner02 {
        width: 96%;
        margin-left: auto;
        margin-right: auto;
    }

    .list01 .check01 {
        font-size: 13px;
        padding: 5px 10px;
        background-color: #ffffff;
        margin-bottom: 10px;
        display: inline-block;
    }

    .list02.col4 {
        width: 49%;
    }

    .flexc a.sns_icon {
        margin: 0 10px;
        max-width: 12%;
    }
}
