.searchForm {
    padding: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0px auto 20px;
    max-width: 500px;
    border: 2px solid #2c2c2c;
}

.searchForm .searchForm__input {
    background: transparent;
    border: none;
    height: 100%;
    display: block;
    margin: 0;
}

.searchForm .searchForm__submit {
    padding: 5px;
    background: transparent;
    border: none;
    width: 40px;
    border-radius: 0;
}

.searchForm .searchForm__submit:hover {
    background-color: transparent;
}

.searchForm .searchForm__input:focus,
.searchForm .searchForm__input:active,
.searchForm .searchForm__input:focus-visible {
    border: none;
    outline: none;
}

.searchForm__submit svg {
    fill: #000;
    width: 100%;

}

.searchForm__heading {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 10px;
}


.searchForm__heading.True {
    font-size: clamp(12px, calc((18/ 440)*100vw), 20px);

    margin-top: 50px;
}


/**************************/

.search_floating__content {
    display: none;
}



/* Modal base */
.search_floating__content {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999;
}

.search_floating__content.is-open {
    display: block;
}

.search_floating__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.search_floating__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 80%;
    max-width: 560px;
    border-radius: 12px;
    padding: 50px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search_floating__close {
    position: absolute;
    top: 0px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.search_floating__form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search_floating__input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.search_floating__input:focus {
    outline: none;
    border-color: #8C1AF6;
    box-shadow: 0 0 0 3px rgba(140, 26, 246, 0.15);
}

.search_floating__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: none;
    background: #f6f0ff;
    cursor: pointer;
}

.search_floating__submit svg {
    width: 28px;
    height: 28px;
    fill: #8C1AF6;
}

.search_floating__dialog .searchForm {
    width: 100%;
}

.search_floating__dialog .tagbox {
    margin: auto;
    width: 100%;
    max-width: 500px;
}

.search_floating:focus,
.search_floating:active,
.search_floating:focus-visible {
    outline: none;
    box-shadow: none;
    /* iOS Safari などで出る青枠も消す */
}

.search_floating,
.searchForm__submit {
    -webkit-tap-highlight-color: transparent;
    /* iOS Safari のタップ時枠を消す */
}

.search_floating__heading {
    margin-bottom: 10px;
}

.search_floating__tagHeading {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 10px;
    font-weight: bold;
    font-size: 14px;
    position: relative;

}

.search_floating__tagHeading--inner {
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 2px dashed;
    display: inline-flex;
    padding: 0 3px 8px;
}

.search_floating__tagHeading--inner:before {
    content: "";
    background: url(../../../static/images/icon_tag_bk.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 15px;
    height: 15px;
    display: block;
}

.searchForm__notFoundKey_text {
    text-align: center;
    font-size: 14px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.searchForm__notFoundKey_text:after {
    content: "";
    background: url(../../../static/images/component/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 15px;
    height: 15px;
    display: block;
    rotate: 90deg;
}

.searchForm_index__heading {
    text-align: center;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
}

.searchForm_index__heading {
    text-align: center;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

.searchForm_indexform {
    margin-bottom: 100px;
}

/* 
.searchForm_index__heading:after {
    content: "";
    background: url(../../../static/images/component/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 15px;
    height: 15px;
    display: block;
    rotate: 90deg;
} */

.search_floating--inner {
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-lr;
    font-size: 12px;
    gap: 3px;
    position: relative;
    background: #000;
    height: 50px;
    width: 50px;
    border-radius: 10px 0 0 10px;
}

.search_floating {
    position: fixed;
    bottom: 0;
    transform: translateX(-100%);
    top: 0;
    margin-top: auto;
    margin-bottom: auto;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.search_floating svg {
    fill: #fff;
}

.search_floating.is_visible {
    opacity: 1;
    visibility: visible;
}

.search_floating.is-hidden-near-footer {
    opacity: 0;
    transition: .3s;
}