@charset "utf-8";
/****************************************************************************************************

search

****************************************************************************************************/
@media print, screen and (min-width:737px){
}
@media print, screen and (min-width:769px){
}
@media print, screen and (min-width:1200px){
}
/****************************************************************************************************

pcのみ

****************************************************************************************************/
.page__search{
    display: none;
}
@media print, screen and (min-width:769px){
.page__search{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #efefef;
    z-index: 20;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}
    .page__search.-close{ display: none; }
    .page__search.-open{
        animation: page__search__fadeIn 0.1s ease-in-out;
    }
@keyframes page__search__fadeIn{
    0%{
        visibility: hidden;
        opacity: 0;
    }
    1%{
        visibility: visible;
        opacity: 0;
    }
    100%{
        visibility: visible;
        opacity: 1;
    }
}

.page__searchInner{
    position: relative;
    flex-basis: 90%;
    padding: 20px;
    border-radius: 5px;
    background-color: #fff;
}
}

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

閉じる
****************************************************************************************************/
.searchClose{
    position: absolute;
    top: -20px;
    right: -20px;
    cursor: pointer;
}
/****************************************************************************************************


****************************************************************************************************/
.searchBtn{
    width: 100%;
    height: 100%;

    cursor: pointer;
    background-position: center center;
    background-repeat: no-repeat;
}
    .searchBtn.-close{ background-image: url(../images/common/icon_search1_close.png); }
    .searchBtn.-open{ background-image: url(../images/common/icon_search1_open.png); }
/****************************************************************************************************


****************************************************************************************************/
.searchBox{
    padding: 0 0 0 10px;
    border-radius: 0;
    border: 1px solid #ccc;
    background-color: #fff;
}


    .globalNavi .searchBox{}
@media print, screen and (min-width:769px){
    .globalNavi .searchBox{
        bottom: -65px;
        right: 0;
        height: 65px;
        width: 400px;
        background-color: #ccc;
        border: none;
        border-radius: 0;
    }
}


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

googleサイト内検索
デザイン変更

****************************************************************************************************/
.searchBox .gsc-search-box{
    overflow: hidden;
    /* border-radius: 32px; */
    border: 1px solid #333;
    border: none;
    background-color: #fff;
}

.searchBox .gsc-search-button{
    background-color: #fff;
}


.searchBox .gsc-search-box{
    position: relative;
}
/*
テキストボックス
--------------------*/
.searchBox .gsc-search-box .gsib_a{
    padding-left: 0 !important;
    padding-right: 0 !important;
    border: none;
}
.searchBox .gsc-search-box .gsc-input{
    padding: 5px 5px 5px !important;
    height: auto !important;
    border: none;
    background-position: 0 center !important;
}
/*
テキストボックスに文字入力したときに出る
「×」マークの位置調整
--------------------*/
.searchBox .gsc-search-box .gsib_b{
    display: none;
}
/*
検索ボタンの背景をボタンのように見せかける
--------------------*/
.searchBox .gsc-search-box .gsc-search-button{
    position: relative;
    margin-left: 0 !important;
    padding: 0;
    width: 50px;
    border: none;
    background: #BD2357 url(../images/search/icon_search.png) no-repeat center center;
    cursor: pointer;
}
/*
検索ボタンを透明化し背景のみを表示させる
--------------------*/
.searchBox .gsc-search-box button.gsc-search-button-v2,
.searchBox .gsc-search-box button.gsc-search-button{
    width: 100%;
    padding: 0 !important;
    opacity: 0;
}
/*
デフォルトで設定されている(疑似的な)テキストボックスの
デザイン設定を解除
--------------------*/
.searchBox .gsc-search-box .gsc-input-box,
.searchBox .gsc-search-box .gsc-input-box-hover,
.searchBox .gsc-search-box .gsc-input-box-focus{
    border: none !important;
    box-shadow: none !important;
}





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

検索結果画面

****************************************************************************************************/
.resultPage{
    margin-bottom: 30px;
}
    .resultPage .searchBox{
        display: block;
        position: static;
        padding-right: 0;
        border-radius: 0;
        border: 1px solid #ccc;
    }
.resultPage .searchBox .gsc-search-box{
    border: none;
    border-radius: 0;
}
.resultPage .searchBox .gsc-search-box .gsc-search-button{
    background-color: #331283;
    background-image: url(../images/common/icon_search3.png);
}

@media print, screen and (min-width:1200px){
    .resultPage .searchBox{
        display: block;
    }
}
/****************************************************************************************************

結果

****************************************************************************************************/
.result{
    line-height: 1.6;
}
.result td{
    border: none;
}

.gs-title{
}




.result .gsc-tabsArea{
    display: none;
}
