@charset "UTF-8";

/*------------------------
Font
//数字
.sarpanch-medium {
  font-family: "Sarpanch", sans-serif;
  font-weight: 500;
  font-style: normal;
}
//見出し
.sarpanch-semibold {
  font-family: "Sarpanch", sans-serif;
  font-weight: 600;
  font-style: normal;
}
//サイトタイトル
.sarpanch-bold {
  font-family: "Sarpanch", sans-serif;
  font-weight: 700;
  font-style: normal;
}
---------------------------*/

/*--共通部分--*/
html{
    font-size: 100%;
}
header{
    background-color: #2ebbdd;
    height: 100%;
    margin-top: -10px;
    padding: 20px;
    border-bottom: #3d6e94 5px solid;
}
body{
    line-height: 1.7;
    background-color: #fffaf0;
    color: #2b2d31;
}
span.material-symbols-outlined{
    color: #2b2d31;
    font-size: 45px;
    z-index: 2;
}
div.icon, div.icon-red{
    padding-top: 2px;
    padding-left: 10px;
    position: relative;
}
div.icon-blue{
    padding-top: 2px;
    padding-left: 10px;
    position: relative;
}

a,a:visited{
    text-decoration: none;
    color: #2b2d31;
}
a:hover{
    color: #2ebbdd;
}

/*---header(navigation)---*/
header{
    text-align: right;
    height: 60px;
}
div.language{
    position: absolute;
    right: 70px;
    width: 70px;
    cursor: pointer;
    text-align: center;
}
p.language{
    font-family: "Sarpanch", sans-serif;
    font-weight: 500;
    color: #fff;
}
p.language:hover{
    color: #2b2d31;
}

p.language::before{
    content: "";
    background-image: url(../img/language_FILL0_wght100_GRAD-25_opsz24.svg);
    width: 32px;
    height: 32px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: -5px;
}
p.language:hover::before{
    content: "";
    background-image: url(../img/language_FILL0_wght100_GRAD-25_opsz24B.svg);
    transition: 1s;
}

/*-- Navi --*/
.openbtn1{
    position: absolute;
    z-index: 60;
    right: 0px;
    top: 3px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
  }

  .openbtn1 span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    top: 11px;
    left: 14px;
    height: 1px; /*線の太さ*/
    border-radius: 2px;
    background: #fff; /*ナビの線の色*/
    width: 45%;
  }
  .openbtn1 span:nth-of-type(1) {
    top:15px; 
  }
  .openbtn1 span:nth-of-type(2) {
    top:23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top:31px;
  }

/* ナビボタンクリック後の動き */
.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background: #2b2d31;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過にする*/
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background: #2b2d31;
}
/* navi menu */
#G_nav{
    position: fixed;
    z-index: 50;
    top: 0;
    right: -120%;
    width: 320px;
    height: 100vh;
    background-color: #d3cec8ef;
    transition: all 0.6s; /* 動き */
    border-radius: 0 0 0 100px;
}
/* アクティブクラスがついたら位置を０に */
#G_nav.panelactive{
    right: 0;
}

#G_nav ul{
    position: absolute;
    z-index: 50;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
}
#G_nav li{
    list-style: none;

}
#G_nav li a{
    color: #333;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}
#G_nav li a:hover{
    color: #2ebbdd;
    transition: 1.3s;
}
.nav_sub{
    font-size: 12px;
    margin-top: -5px;
    font-weight: 400;
    text-align: left;
    padding: 8px;
}
.navi-miniwrap{
    background-color: #fff;
/*    border-radius: 20px; */
    padding: 8px;
    margin: 20px 0;
}
.link-title{
    font-size: 1.6rem;
    font-weight: 300;
    text-align: left;
    margin-top: 150px;
    padding-top: 50px;
}
div.link-title-ls{
    display: none;
}
.site-title{
    padding-top: 8px;
    padding-left: 10px;
    line-height: 1.5;
}
.bird-url::after{
    content: "";
    background-image: url(../img/Bird.svg);
    display: inline-block;
    background-size: contain;
    margin-left: 5px;
    margin-top: -10px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.summon-url::after{
    content: "";
    background-image: url(../img/Search_symbol.svg);
    display: inline-block;
    background-size: contain;
    margin-left: 5px;
    margin-top: -7px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.disicolle-url::after{
    content: "";
    background-image: url(../img/Museum.svg);
    display: inline-block;
    background-size: contain;
    margin-left: 5px;
    margin-top: -10px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.closed-btn{ /*リスト下Closeボタン*/
    text-align: center;
    margin-top: 30px;
    cursor: pointer;
    font-weight: 300;
}
.closed-btn:hover{
    color: #2ebbdd;
}

/*---main---*/
main{
    text-align: center;
}
.content-wraper{
    padding-left: 10%;
    padding-right: 10%;
}
h1#TITLE{
    font-family: "Sarpanch", sans-serif;
    font-weight: 700;
    letter-spacing: 0.12rem;
    font-style: normal;
    font-size: 3.3rem;
    color: #3d6e94;
    margin-top: 30px;
}
h2{
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 5px;
}
.dot-line{
    display: flex;
    justify-content: center;
}
.dots{
    font-size: 8px;
    font-weight: 500;
    padding: 0px 10px;
}
span.dot-orange{
    color: #f09300;
}
span.dot-blue{
    color: #2ebbdd;
}
span.dot-red{
    color: #fc593f;
}
.search-area{
    margin: 40px auto;
    width: 100%;
    box-sizing: border-box;
}
.search-box{
    display: flex;
    justify-content: center;
}
.hide-box{
    display: none;
}
.hide-box.A{
    display: inline-block;
    background-color: #fffaf0;
    width: 100%;
    height: 91px;
    margin-bottom: -91px;
    opacity: 0.7;
    position: relative;
    z-index: 5;
}
/* easy search */
.searchtext{
    width: 50vw;
    height: 50px;
    border: #2ebbdd 1px solid;
    background-color:#fff;
    margin-right: 0;
/*    border-radius: 5px; */
    padding: 5px 10px;
    appearance: none;
}
input.searchtext::placeholder{
    color: #2ebbdd;
}
input[type="text"]:focus{
    outline: none;
    box-shadow: 0px 0px 6px 0px #2ebbdd;
}
input.submit{
    width: 60px;
    height: 50px;
    margin-left: 0px;
/*    border-radius: 5px; */
}
.submit{
    background-image: url(../img/search-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #2ebbdd;
    background-size: 70%;
    border: #2ebbdd 1px solid;
    appearance: none;
    cursor: pointer;
}
input.submit:hover{
    color: #FFF;
    border: 1px #FE7334 solid;
    background-color: #FE7334;
    transition: 1s;
}
/*-- 簡易検索のチェックボックス --*/
div.esearch-checkbox{
    text-align: left;
    margin-left: -10px;
    margin-top: 5px;
    margin-bottom: 16px;
    width: 300px;
    height: 20px;
    position: relative;
    z-index: 2;
}
.withtext {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
.checkbox-text {
    cursor: pointer;
    display: inline-block;
    padding: 3.3px 0 5px 30px;
    position: relative;
}
input[type=checkbox]:checked+.checkbox-text {
    font-weight: 500;
    color: #666666;
    transition: 0.3s;
}
/* checkbox */
.checkbox-text::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 18px;
    left: 1px;
    transform: translateY(-50%);
    border: 1px solid #2ebbdd;
    background: #FFF;
    border-radius: 20px;
}

input[type=checkbox]:checked+.checkbox-text::before {
    background-color: #FE7334;
    border: 1px solid #FE7334;
    transition: 0.5s;
}
/* check mark */
.checkbox-text::after {
    content: '';
    display: block;
    width: 8px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 2px;
    transform: rotate(40deg) skewY(16deg) translateY(-50%);
    transform-origin: center right;
    border-right: 3.5px solid #FFF;
    border-bottom: 3px solid #FFF;
    opacity: 0;
}
input[type=checkbox]:checked+.checkbox-text::after {
    opacity: 1;
}



/*-- 詳細検索 --*/
.s-detail-tab{
    width: calc(50vw + 70px);
    height: 30px;
    color: #2ebbdd;
    cursor: pointer;
    margin: -42px auto 0 auto;
    padding-top: 8px;
    text-align: right;
    position: relative;
    z-index: 1;
}
.s-detail-tab.open {
    z-index: 10;
}

.s-detail-tab:hover{
    color: #fc593f;
    transition: 1s;
}
span.s-detail-tab::before{
    content: "";
    background-image: url(../img/expand_more_FILL0_wght200_GRAD0_opsz20.svg);
    width: 30pxpx;
    height: 30pxpx;
    display: inline-block;
    background-size: contain;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    vertical-align: middle;
}
span.open::before{
    content: "";
    background-image: url(../img/expand_less_FILL0_wght200_GRAD0_opsz20.svg);
    width: 30pxpx;
    height: 30pxpx;
    display: inline-block;
    background-size: contain;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/*--詳細検索エリア--*/
.s-detail-area{
    display: none;
    width: 100%;
    margin: auto;
}
.s-detail-area1{
    text-align: left;
    width: calc(50vw + 70px);
    margin: auto;
}
.sd-miniwrap{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    margin-top: 20px;
}

input.sd-title, .sd-author, .sd-journal, .sd-issue{
    width: 50vw;
    height: 50px;
    margin-left: 0;
    margin-right: auto;
    border: #2ebbdd 1px solid;
    background-color:#fff;
/*    border-radius: 5px; */
    padding: 0 10px;
    appearance: none;
    text-align: left;
}
input.sd-issue{
    width: 150px;
}
input.s-detail-text::placeholder{
    color: #2ebbdd;
}
input.sd-year{
    width: 10vw;
    height: 50px;
    border: #2ebbdd 1px solid;
    background-color:#fff;
    margin-right: 0;
/*    border-radius: 5px; */
    padding: 0 10px;
    appearance: none;
    font-size: 14px;
    text-align: center;
}
div.checkbox{
    margin-top: 20px;
    margin-left: -10px;
}
form input[type="checkbox"].sd-withtext{
    display: inline-block;
    accent-color: #2ebbdd;
    vertical-align: middle;
    cursor: pointer;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    border-radius: 0;
}
input.sd-withtext{ /* デフォルトのチェックボックスを表示しない */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
.label-wt{
    height: 24px;
    margin-left: 10px;
}
.d-button{
    text-align: center;
}

button{
    cursor: pointer;
    margin-top: 30px;
    width: 150px;
    height: 50px;
    border: none;
/*    border-radius: 20px; */
    background-color: #2ebbdd;
    color: #FFF;
}
button:hover{
    background-color: #f09300;
    transition: 1s;
}

/*--BAKERについて--*/
.bakerjump{
    display: flex;
    justify-content: center;
}
.about-baker-top{
    position: relative;
    vertical-align: middle;
    margin-left: 30px;
}
.about-baker-top:before{
    content: url(../img/menu_book_FILL0_wght100_GRAD0_opsz24.svg);
    display: inline-block;
    position: absolute;
    height: 100%;
    top: 2.5px;
    left: -30px;
}
.functions-wraper{
    display: flex;
    justify-content:center;
    margin: 40px 0px;
}
.fun-miniwrap{
    cursor: pointer;
    padding: 10px 10px;
    margin: 0px 20px;
    width: 200px;
    height: 150px;
    border: #2ebbdd 1px solid;
/*    border-radius: 15px; */
    translate: 0.1s;
    background-color: #fff;
}
.fun-miniwrap:hover{
    transform: scale(0.96, 0.96);
    transition: 0.3s ease 0s;
    outline: none;
    box-shadow: 0px 0px 6px 0px #2ebbdd;
}
.fun-miniwrap-no{
    padding: 10px 10px;
    margin: 0px 20px;
    width: 200px;
    height: 150px;
    border: #2ebbdd 1px solid;
/*    border-radius: 15px; */
    cursor: pointer;
    translate: 0.1s;
    background-color: #fff;
}
.fun-miniwrap-no:hover{
    transform: scale(0.96, 0.96);
    transition: 0.3s;
    outline: none;
    box-shadow: 0px 0px 5px 0px #2ebbdd;
}

/* 登録数詳細グラフ */
.numbers-detail{
    display:none;
    max-width: 680px;  /* Original width: 680px*/
    height: auto; /* original auto */
    background-color: #fffaf0;
    margin: 10px auto 10px;
/*    border-radius: 20px; */
    padding: 20px;
}
.chart-area{ /*円グラフがスマホでつぶれないようにする*/
	position: relative;
	width:100%; /* original 100% */
	height:50vh; /* original 50vh */
}

p.chart_title{
    font-size: 18px;
    margin-bottom: 5px;
}

.func{
    display: flex;
}
.fun-search{
    max-width: 100px;
    padding-top: 3px;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 10px;
    text-align: center;
    line-height: 1.5;
}
.fun-journallist{
    max-width: 100px;
    padding-top: 10px;
    padding-left: 17px;
    padding-right: 10px;
    margin-right: 10px;
    text-align: justify;
}
.fun-numbers{
    max-width: 100px;
    padding-top: 3px;
    padding-left: 3px;
    padding-right: 10px;
    margin-right: 10px;
    margin-left: 10px;
    text-align: justify;
    line-height: 1.5;
}
.icon-orange::before{
    position: absolute;
    content: "";
    background-color: #f09400;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    left: 7px;
    z-index: -1;
}
.icon-blue::before{
    position: absolute;
    content: "";
    background-color:#2ebbdd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    left: 7px;
    z-index: -1;
}
.icon-red::before{
    position: absolute;
    content: "";
    background-color:#fc593f;
    width: 50px;
    height: 50px;
    border-radius: 50%; 
    left: 7px;
    z-index: -1;
}
.fun-desc-s{
    margin: 10px auto;
    font-size: 0.9rem;
    padding-left: 8px;
    padding-right: 3px;
    text-align: left;
    position: relative;
}
.fun-desc{
    margin: 10px auto;
    font-size: 0.9rem;
    padding-left: 8px;
    padding-right: 3px;
    text-align: left;
    position: relative;
}
.fun-desc-no{
    margin: 10px auto;
    font-size: 0.9rem;
    padding-left: 8px;
    padding-right: 3px;
    text-align: left;
    position: relative;
}
p.total{
    text-align: center;
    margin-top: -10px;
}
span.total-no{
    font-size: 1.8rem;
}
a.list_link{
    display: block;
}
p.advanced-s-desc, p.journal-list-desc{
    color: #2b2d31;
}
p.advanced-s-desc{
    line-height: 1.2;
}

/*---Section&footer共通---*/
.content-wraper-section{
    background-color: #fffaf0;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 50px;
    padding-bottom: 50px;
}

div.news, .about-baker, p.info{
    font-family: "Sarpanch", sans-serif;
    font-weight: 600;
    color: #2ebbdd;
    text-align: center;
    font-size: 1.8rem;
}
div.news::after, .about-baker::after{
    color: #2b2d31;
    font-size: 1.1rem;
}

/*---Section1 news---*/

.news-content{
    max-width: 680px;
    margin: 20px auto;
    background-color: #fff;
    border: #2ebbdd 1px solid;
/*    border-radius: 10px; */
    text-align: left;
    padding: 10px 20px;
    font-size: 00.95rem;
    height: 20em;
    overflow-y: scroll;
}
/* Firefox */
@-moz-document url-prefix(){
    .news-content{
        scrollbar-color: #2ebbdd #FFF;
    }
}
/* Chrome, Safari */
.news-content::-webkit-scrollbar {
    width: 13px;
}
.news-content::-webkit-scrollbar-track {
    background-color: #FFF;
}
.news-content::-webkit-scrollbar-thumb {
    background-color: #2ebbdd;
    border-radius: 10px;
}
ul{
    margin-top: -40px;
}
li.news-list{
    margin: 20px 0 20px 5px;
    border-bottom: #2ebbdd 1px solid;
}
span.date{
    font-family: "Sarpanch", sans-serif;
    font-weight: 500;
    color: #666666;
    margin-right: 10px;
/*    font-style: oblique 20deg; */
    display: inline-block;
}

span.news-cat{
    font-size: 0.8rem;
    color: #c38f16;
    padding: 3px;
    border: #c38f16 1px solid;
/*    border-radius: 2px; */
}

p.news-text{
    margin-top: 2px;
    display: inline-block;
    line-height  : 1.5; 
}
p.news-text::first-letter{
    font-family: "Sarpanch", sans-serif;
    font-size: 2rem;
    padding-right: -1px; 
}
a.link-text {
    color: #2ebbdd;
}
a.link-text:hover{
    color: #fc593f;
}

/*---Section2 about BAKER---*/

.about-baker{
    text-align: center;
    font-size: 1.8rem;
    margin-top: 60px;
}

.about-baker-desc{
    max-width: 620px;
    margin: 20px auto;
    margin-bottom: -20px;
/*    border-radius: 10px; */
    padding: 0 20px;
    font-size: 0.95rem;
}
span.font-gray{
    color: #747474;
}
.fun-miniwrap-b{
    padding: 10px 10px;
    margin: 0px 20px 0px 10px;
    width: 200px;
    height: auto;
    border: #929292   1px solid;
/*    border-radius: 15px; */
    background-color: #f0f0f1;
}
.baker-func{
    margin-bottom: -10px;
}
.fun-title{
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 10px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.fun-s::before{
    content: "";
    background-image: url(../img/manage_search_45.svg);
    display: inline-block;
    background-size: contain;
    margin-right: 10px;
    margin-top: -5px;
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.fun-r::before{
    content: "";
    background-image: url(../img/menu_book_45.svg);
    display: inline-block;
    background-size: contain;
    margin-right: 10px;
    margin-top: -5px;
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.fun-t::before{
    content: "";
    background-image: url(../img/export_notes_45.svg);
    display: inline-block;
    background-size: contain;
    margin-right: 10px;
    margin-top: -5px;
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/*---footer---*/
.footer-border{
    border-top: #eea239 1px solid;
    position: relative;
}
.footer-border::before{
    content: "";
    border-top: #eea239 1px solid;
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
}

footer{
    background-color: #ffefd7;
    text-align: left;
    padding: 0 10%;
}

.content-wraper-footer{
    width: auto;
    height: auto;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10px;
    padding-bottom: 50px;

}
p.info{
    text-align: left;
}
.info-wrap{
    display: flex;
    justify-content: space-around;
}
.info{
    margin-right: 150px;
}
div.info{
    margin-bottom: 20px;
}
p.info-title{
    font-weight: 500;
}
.info-desc{
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.mail{
    position: relative;
    vertical-align: middle;
    margin-top: -20px;
    margin-left: 30px;
}
.mail::before{
    content: url(../img/mail_FILL0_wght100_GRAD0_opsz24.svg);
    display: inline-block;
    position: absolute;
    height: 100%;
    top: 2.5px;
    left: -30px;
}

.pdf-data, a.pdf-data:visited{
    font-family: "Sarpanch", sans-serif;
    font-weight: 500;
    padding-right: 20px;
    padding-right: 20px;
    cursor: pointer;
    color: #2ebbdd;
}
.pdf-data:hover, a.pdf-data:visited:hover{
    color:#fc593f;
}
a.pdf-data::after{
    content: "";
    background-image: url(../img/sticky_note_2_FILL0_wght200_GRAD0_opsz24.svg);
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    vertical-align: top;
}

.mit{
    color: #747474;
    margin-top: 10px;
    line-height: 00.95rem;
}
a.mit,a.mit:visited{
    color: #747474;
}
a.mit:hover{
    color: #2ebbdd;
}

p.bu-library{
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: -5px;
    margin-top: 20px;
}

/* Topへ戻るボタン */
.ph-caret-up{
    font-size: 10px;
    font-weight: bold;
}
.ph-caret-up::before{
    content: "";
    background-image: url(../img/expand_less_38.svg);
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-top: 8px;
    background-repeat: no-repeat;
}
.ph-caret-up:hover::before{
    content: "";
    margin-top: 0;
    background-image: url(../img/bakery_38_4.svg);
    transition: 0.5s;
}
#Pagetop{
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 20%;
    background: #eea239;
    color: #fff;
    bottom: 60px;
    right: 0px;
    opacity: 0.8;
    cursor: pointer;
}
#Pagetop:hover{
    border-radius: 50%;
    background: #2ebbdd;
    transition: 0.8s;
    opacity: 1;
}
#Pagetop span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    text-align: center;
    font-size: 20px;

}

/*=========================
レスポンシブデザイン対応
==========================*/
/*-- max-width 960px以下 --*/
@media screen and (max-width: 960px) {
    .content-wraper{
        padding-left: 2%;
        padding-right: 2%;
    }
    .s-detail-tab{
        width: calc(70vw + 70px);
    }
    .search-area{
        height: auto;
    }
    .searchtext{
        width: 70vw;
        padding: 0 10px;
    }
    .s-detail-area1{
        width: calc(70vw + 60px);
    }
    input.sd-title, .sd-author, .sd-journal{
        width: calc(70vw + 60px);
        margin-left: auto;
    }
    input.sd-year{
        width: 30vw;
        padding: 3% auto;
    }
    .content-wraper-footer{
        width: 100%;
        height: auto;
        padding-left: 3%;
        padding-right: 3%;
        padding-top: 10px;
        padding-bottom: 50px;
    }
    .info-wrap{
        width: 100%;
    }

}
/*-- タブレット用 --*/
@media screen and (max-width: 700px) {
    div.link-title-ls{
        display: none;
    }

    /* タブレット用機能ボタン */
    .func{
        display: flex;
        justify-content: center;
    }
    .functions-wraper{
        flex-direction: column;
        margin: 5% 2%;
    }
    .fun-miniwrap{
        margin-top: 2%;
        width: auto;
        height: auto;
    }
    .fun-miniwrap-no{
        margin-top: 2%;
        width: auto;
    }
    .fun-desc-s{
        display: none;
    }
    .fun-search{
        max-width: 200px;
        padding-top: 15px;
        padding-left: 40px;
        margin-right: 30px;
        text-align: justify;
    }
    .fun-journallist{
        max-width: 200px;
        padding-top: 13px;
        padding-left: 40px;
        text-align: justify;
    }
    .fun-numbers{
        max-width: 200px;
        padding-top: 15px;
        padding-left: 25px;
    }
    .fun-desc-no{
        text-align: center;
    }
    .total-index{
        width: 100%;
        margin-left: -50px;
        margin-bottom: 5px;
    }
    div.icon-blue{
        margin-left: -40px;
    }
    div.icon-red{
        margin-left: 10px;
    }

    /* タブレット用機能紹介 */
    .fun-miniwrap-b{
        margin: 5px 20px 5px 10px;
        width: auto;
        height: auto;
    }

    .fun-title{
        display: inline-block;
        padding-left: 15px;
        margin-left: -5%;
        text-align: center;
    }

    /* タブレット用footer*/
    .content-wraper-footer{
        width: 95vw;
        padding-top: 10px;
        padding-bottom: 30px;
        margin: 0 -10%;   
    }
    .info-wrap{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    p.info{
        width: 100%;
        height: auto;

    }
    .info-title{
        width: 70vw;
        height: auto;
        margin: auto 5px;
    }
    .info-desc{
        font-size: 0.9rem;
        margin-bottom: 20px;
        margin-left: 5px;
        width: 75vw;
    }
    .mail{
        width: 100%;
    }
    p.bu-library{
        width: 70vw;
    }

}

/*-- モバイル用 --*/
@media screen and (max-width: 400px) {
/*--モバイル用ナビ--*/
#G_nav{
    position: fixed;
    z-index: 50;
    top: 0;
    right: -300%;
    width: 100vw;
    height: 100vh;
}

#G_nav ul{
    top: 40%;
    left: 50%;
    width: 70vw;
}

#G_nav li a{
    font-size: 1.2rem;
}
div.link-title-ls{
    display: none;
}
.nav_sub{
    font-size: 0.7rem;
    margin-top: 2%;
    padding: 8px;
}
.navi-miniwrap{
    background-color: #fff;
/*    border-radius: 20px; */
    padding: 8px;
    margin: 20px 0;
}
.link-title{
    font-size: 1.6rem;
    margin-top: 10%;
    padding-top: 50px;
}

.closed-btn{ /*リスト下Closedボタン*/
    margin-top: 15%;
}

/* モバイル用メイン */

    .content-wraper{
        padding-left: 2%;
        padding-right: 2%;
    }

    .search-area{
        margin: 40px 0; /*--仮--*/
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }
    .search-box{
        display: flex;
        justify-content: center;
        width: 100%;
    }

    input.submit{
        width: 50px;
    }
    .s-detail-tab{
        text-align: right;
        margin-left: 8px;
    }

    .fun-miniwrap-b{
        padding: 10px 10px;
        margin-top: 5%;
        width: auto;
        height: auto;
    }
    .news-content::-webkit-scrollbar {
        width: 8px;
    }
    /*--footer(mobile)--*/
    .content-wraper-footer{
        height: auto; 
        width: 95vw;
        padding-top: 10px;
        padding-bottom: 30px;
        padding-left: 10%;
        padding-right: 5%;
        margin: 0 -10%;
    }
    p.info{
        text-align: left;
        height: auto;
    }
    .info{
        width: 100%;
        margin-right: 150px;
    }
    .info-desc{
        width: 100%;
    }
    .mail{
        width: auto;
    }

    .mit{
        width: 100%;
        margin-top: 20px;
    }  
    p.bu-library{
        line-height: 00.95rem;
    }
    p.copy{
        margin-top: 10px;
        line-height: 0.95rem;
    }
}
/*-- モバイル用*widthが狭い場合 --*/
@media screen and (max-width: 340px) {
    span.material-symbols-outlined{
        font-size: 26px;
    }
    .icon-orange::before, .icon-blue::before, .icon-red::before{
        width: 30px;
        height: 30px;
    }
    .fun-search{
        padding-top: 5px;
        padding-left: 40px;
        text-align: justify;
    }
    .fun-journallist{
        max-width: 200px;
        padding-top: 5px;
        padding-left: 40px;
        text-align: justify;
    }
    .fun-miniwrap-no{
        padding-bottom: 2%;
    }
    .fun-numbers{
        padding-top: 5px;
        text-align: left;
        line-height: 1;
    }
    .fun-desc-no{
        margin-top: 20px;
    }
    div.icon{
        margin-top: 8px;
    }
    div.icon-blue{
        margin-left: -19px;
    }
    div.icon-red{
        margin-left: -2px;
    }
}
/*-- デバイスが横向き --*/

@media screen and (max-height: 730px) and (orientation: landscape) {
 
    /* navi menu */
    #G_nav{
        top: 20;
        width: 100vw;
        border-radius: 0 0 0 80px;
    }

    #G_nav ul{
        display: flex;
        flex-direction: row;
        position: absolute;
        z-index: 50;
        top: -80;
        left: 5;
        width: 100%;
        height: 80vh;
        margin-top: 50px;
        margin-left: 2%;
    }
    #G_nav li a{
        display: block;
    }

    .navi-miniwrap{
        margin: 100px 10px 40px 10px;
        width: 30vw;
        height: 40vh;
    }
    .link-title{
        display: none;
        
    }
    div.link-title-ls{
        display: block;
        width: 100vw;
        text-align: center;
        margin-top: 50px;
        font-size: 1.6rem;
        font-weight: 300;
    }

    li.closed-btn{ /*リスト下Closedボタン*/
        display: block;
        margin-top: 400px;
        margin-left: -50%;
    }

   }

@media screen and (max-height: 500px) and (orientation: landscape) {
    
    div.link-title-ls{
        font-size: 1.6rem;
        font-weight: 300;
    }
    .navi-miniwrap{
        border-radius: 20px;
        padding: 5px 8px;
        margin: 50px 10px 40px 10px;
        width: 30vw;
        height: 55%;
    }
    .nav_sub{
        font-size: 0.7rem;
    }
    .site-title{
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 10px;
        font-size: 0.8rem;
    }
    li.closed-btn{ /*リスト下Closedボタン*/
        display: block;
        margin-top: 250px;
        margin-left: -50%;
    }
    .nav_sub{
        margin-top: -10px;
    }

}

/*=========================
レスポンシブデザイン対応ここまで
==========================*/