/* font */
@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 400;
    src: url('../font/NotoSansCJKjp-Regular.woff') format('woff'),
        url('../font/NotoSansCJKjp-Regular.eot')  format('eot');
    font-display: swap;
}
@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 700;
    src: url('../font/NotoSansCJKjp-Bold.woff') format('woff'),
        url('../font/NotoSansCJKjp-Bold.eot')  format('eot');
    font-display: swap;
}
@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 900;
    src: url('../font/NotoSansCJKjp-Black.woff') format('woff'),
        url('../font/NotoSansCJKjp-Black.eot')  format('eot');
    font-display: swap;
}
html {
    font-family: 'NotoSansCJKjp', "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;

}
* {
    margin:0;
    padding:0;
}
.clear {
    clear: both;
}
.red {
    color: #CC0000;
}
.yellow {
    color: gold;
}
.pink {
    color: deeppink;
}
.green {
    color: forestgreen;
    font-weight: bold;
}

/* トップバー */
#head-area .top-bar {
    background:#38a0c8;
}
#head-area .top-bar h1 {
    font-size:14px;
    font-weight:400;
    color:#FFF;
    text-align:center;
}
/** マーキーさせたい部分 */
.marquee {
    overflow: hidden; /* スクロールバーが出ないように */
    position: relative; /* マーキーの内容部分の位置の基準になるように */
}
/* マーキーの内容部分の高さ確保 */
.marquee::after {
    content: "";
    white-space: nowrap;
    display: inline-block;
}
/* マーキーさせたい部分(内側) */
.marquee > .marquee-inner {
    position: absolute;
    top: 0;
    white-space: nowrap;
    animation-name: marquee;
    animation-timing-function: linear;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}
/* マウスオーバーでマーキーストップ */
.marquee > .marquee-inner:hover {
    animation-play-state: paused;
    cursor: default;
}
/** マーキーアニメーション */
@keyframes marquee {
    0% { left: 100%; transform: translate(0); }
    100% { left: 0; transform: translate(-100%); }
}

/* ヘッドバー */
#head-area .head-bar {
    background: #2b2b2b;
}
#head-area .head-bar .menu-area .logo-area {
    width:256px;
    height:43px;
    margin: 0 auto;
    padding-bottom: 5px;
}
#head-area .head-bar .menu-area .head-menu {
    display: none;
}

/* アイキャッチ */
#head-area .eyecatch-bar {
    width: 100%;
    height: 240px;
    background-image: url(../img/eyecatch.jpg);
    background-size: cover;
    background-repeat: none;
    background-position: center;
    text-align: center;
}
#head-area .eyecatch-bar.sub_page {
    height: 190px;
}
#head-area .eyecatch-bar .eyecatch-text {
    margin: 0 auto;
    padding-top: 20px;
    padding-left: 20px;
    text-align: left;
    font-size: 16px;
    line-height: 36px;
    color:#FFF;
    text-shadow: 0px 0px 3px #808080;
}
#head-area .eyecatch-bar .eyecatch-text .eyecatch-button {
    margin-top:10px;
    display: inline-block;
    text-align: center;
    width:170px;
    height:50px;
    line-height: 50px;
    font-size: 18px;
    background: #38a0c8;
    border-radius: 5px;
    color: #FFF;
    text-decoration: none;
}

/* グローバルナビ */
.nav-button-wrap {
    height: 50px;
    box-sizing: border-box;
    padding-top: 10px;
    line-height: 1.2;
}
.footer-nav > li {
    display: block;
    color:#FFF;
    text-align:center;
    width: 25%;
    float:left; 
}
.footer-nav > li a {
    display: block;
    font-size: 22px;
    height: 50px;
    color:#FFF;
    line-height: 1.2;
    box-sizing: border-box;
    padding-top: 5px;
    text-decoration: none;
}
.footer-nav-label {
    display: block;
    color:#FFF;
    font-size: 12px;    
}
.globalnav {
    display: none;
}
.globalnav .close {
    display: none;
}
.globalnav-wrap.open .globalnav {
    display: block;
    padding: 40px 20px 10px;
    position: fixed;
    left: 0;
    bottom: 50px;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: calc(100% - 50px);
    overflow-x: hidden;
    overflow-y: auto;
}
.globalnav-wrap.open .globalnav li {
    display: block;
}
.globalnav-wrap.open .globalnav li:hover {
    background: transparent;
}
.globalnav-wrap.open .globalnav .dropdown {
    display: block;
    position: static;
    background: transparent;
}
.footer-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color:#2b2b2b;
}
.nav-button,
.nav-button span {
    display: inline-block;
    transition: all 0.3s;
}
.nav-button {
    z-index: 20;
    width: 25px;
    height: 19px;
    position: relative;
}
.nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFF;
    border-radius: 4px;
}
.nav-button span:nth-of-type(1) {
    top: 0;
}
.nav-button span:nth-of-type(2) {
    top: 8px;
}
.nav-button span:nth-of-type(3) {
    bottom: 0;
}
.active .nav-button span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
}
.active .nav-button span:nth-of-type(2) {
    opacity: 0;
}
.active .nav-button span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
}
#head-area .globalnav-wrap .globalnav > li {
    padding: 20px 10px 0;
}
#head-area .globalnav-wrap .globalnav > li > a {
    color:#FFF;
    font-size:20px;
    text-decoration: underline;
}
#head-area .globalnav-wrap .globalnav > li.dropdown-btn > a {
    text-decoration: none;
}
.dropdown{
    padding-left:1em;
}
.dropdown > li {
    line-height: 2.0;
}

.dropdown > li > a {
    color:#FFF;
    font-size:16px;
}

/* パンくずリスト */
.pan-navi-list {
    font-size: 14px;
    padding: 10px 20px;
    color: #333;
}
.pan-navi-list a {
    text-decoration:none;
    color: #333;
}
.pan-navi-list a:hover {
    text-decoration:underline;
}
.pan-navi-list .fa-angle-right {
    padding: 0 10px;
}

/* メインカラム */
.content-area {
    background: #FFF;
    padding: 0 20px 20px;
    box-sizing: border-box;
}

.content-area h2 {
    border-left:10px solid #38a0c8;
    padding-left: 10px;
    font-weight: 900;
    font-size: 24px;
    color:#333;
    margin-bottom: 10px;
    display: inline-block;
}

.content-area .pr {
    font-size: 16px;
    color: #333;
    display: inline-block;
}

.content-area .client {
    border-bottom: 1px dotted #CCC;
    padding: 20px 0;
}

.content-area .client .thumb {
    float:left;
    margin-right: 10px;
}
.content-area .client .thumb img {
    width:120px;
    height:184px;
}
.content-area .client .title {
    font-size: 14px;
    font-weight: 700;
    color: #F00;
}
.content-area .client .title h3 {
    display:inline;
}
.content-area .client .title h3 a {
    font-size: 22px;
    font-weight: 900;
    color: #38a0c8;
}
.content-area .client .comment {
    font-size: 14px;
    color: #333;
    margin-bottom: 1em;
}

.content-area .client .comment:after {
    content: "";
    clear: both;
    display: block;
}
.content-area .client .point {
    font-size: 14px;
    color: #333;

}
.content-area .client .code {
    font-size: 14px;
    color: #333;
}
.content-area .client .star {
    font-size: 14px;
    color: #333;
    margin-bottom: 1em;
}
.content-area .client .pink {
    font-size: 14px;
    color: deeppink;
}
.content-area .client .impact {
    color: #F00;
    font-weight: 900;
}
.content-area .client .buttons a.detail {
    display: inline-block;
    width: 100%;
    font-size:16px;
    line-height:45px;
    height:45px;
    background: #2499c7;
    text-align: center;
    color: #FFF;
    text-decoration: none;
    margin-bottom: 10px;
}
.content-area .client .buttons a.jump {
    display: inline-block;
    width: 100%;
    font-size:16px;
    line-height:45px;
    height:45px;
    background: #78c72e;
    text-align: center;
    color: #FFF;
    text-decoration: none;
    margin-bottom: 8px;
}
.content-area .more-link-btn {
    text-align: center;
    font-size:20px;
    color:#333;
    margin-bottom:20px;
}
.content-area .more-link-btn a {
    color:#333;
}
.content-area .guide-area {
    font-size: 14px; 
}
.content-area .guide-area p {
    line-height: 1.7;
}
.content-area .area-list {
    margin: 20px 20px;
}
.content-area .area-list li {
    line-height: 2;
}
.content-area .area-list ul li a{
    color: #38a0c8;
}
.content-area #sitemap_list li a{
    color: #38a0c8;
}
.content-area .matome {
    font-size: 14px; 
    background: #EFEFEF;
    padding:10px;
    box-sizing:border-box;
    line-height: 1.7;
}
.content-area .eyecatch img {
    width:100%;
    height: auto;
    margin-bottom: 20px;
}
.content-area .related-sites h2{
    font-size: 20px;
}
.content-area .related-sites a{
    color: #38a0c8;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7;
}
.content-area .related-sites p{
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}
.content-area .related-sites p{
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}
/* サブカラム */
.side-area {
    width: 100%;
    background: #FFF;
}
.side-area h2 {
    font-weight: 900;
    font-size: 20px;
    color:#333;
    padding: 0 20px; 
    margin-bottom: 10px;
}
.side-area ul {
    list-style-type: none;
    margin-bottom: 10px;
}
.side-area ul li {
    display: block;
    border-top: 1px solid #EEE;
}
.side-area ul li:last-child   {
    border-bottom: 1px solid #EEE;
}
.side-area ul li a {
    display: block;
    color: #333;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    padding-left:20px;
    text-decoration: none;
}

/* site-search */
.search-content .search-select {
    margin: 10px 0;
}
.search-content .search-select select {
    display: block;
    font-size: 18px;
    height: 32px;
    width: 100%;
    padding: 0 5px;
}
.search-content .search-select input {
    display: block;
    font-size: 18px;
    height: 32px;
    width: 95%;
    padding: 0 5px;
}
.search-content input[type=submit] {
    display: block;
    font-size: 18px;
    height: 32px;
    width: 100%;
    padding: 0 5px;
    margin: 20px 0 10px 0;
}

/* text-content*/
.text-content p {
    font-size: 16px;
    margin-bottom: 1em;
    line-height: 1.7;
    color: #333;
}
.text-content ul {
    margin-left: 20px;
    margin-bottom: 1em;
    color: #333;
}
.text-content ul li {
    line-height: 1.9;
}
.text-content h3 {
    color: #333;
    margin-top: 1em;
    margin-bottom: 0.8em;
}
.text-content img.autoimg {
    margin: 0 auto;
    display: block;
    width: 100%;
    height: auto;
}

/* detail */
.s-site-sum {
    text-align: center;
}
.go-site a {
    display: block;
    font-size:16px;
    line-height:50px;
    height:50px;
    background: #2499c7;
    color: #FFF;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px;
}
.junle-data h3, .site-data-praice h3 {
    color: #2499c7;
    font-size: 16px;
    font-weight: 900;
    border-bottom: solid 2px #2499c7;
    margin-bottom:10px;

}
.site-data-detail, .site-data-praice-detail, .site-data-flag, .text-content .site-data-praice-detail p {
    font-size: 14px !important;
    margin: 0;
}
.site-data-detail ul, .site-data-praice-detail ul, .site-data-flag ul {
    list-style-type: none;
}
.s-praice {
    color: #78c72e;
    font-weight:900;
    font-size: larger;
}

/* footer */
footer {
    background: #2b2b2b;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 50px;
}
footer h2 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: normal;
}
.info-menu li {
    list-style-type: none;
    display: inline-block;
    margin-right:10px;
    padding: 5px;
}
.info-menu li:last-child {
    margin-right:0px;
}
.info-menu li a {
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
}
.info-menu li a:hover {
    text-decoration: underline;
}
.copyright {
    margin-top: 20px;
    color: #FFFFFF;
}
.copyright a {
    color: #FFFFFF;
    
}


/* rating widget */
.rw-ui-mobile-wrapper {
    display:none;
}