@charset "UTF-8";
/*
########################################################
  header nav footer
########################################################
*/
header{
    margin:0px;
    padding:0px;
    display: block;
    z-index: 1000;
    height:80px;
    position: fixed;
    top: 0;
    right:0;
    background:#fff;
    width:100%;
    border-bottom:2px solid #1d50a2;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
}
header.menu{
    height:110px;
}
    @media screen and (max-width: 767px)  {
        header,
        header.menu{
            width:100%;
            height:auto;
            height:100px;
            display: block;
        }
    }
header ul{
    margin:0;
    padding:0;
}
header #headMenu ul li,
header ul#mainMenu li{
    margin:0;
    padding:0;
    list-style: none;
    float: left;
}
header a{
    color:#333;
}
header #headerWrap{
    width:1170px;
    margin:0 auto;
}
    @media screen and (max-width: 767px)  {
        header #headerWrap{
            width:auto;
        }
    }
header #siteName{
    float: left;
    width:320px;
    margin:0px 0 5px 0;
}
    @media screen and (max-width: 767px)  {
        header #siteName {
            float: none;
            width: auto;
            margin: 0px 0 0px 0;
        }
    }
header #siteName h1{
    font-size:18px;
    line-height:120%;
}
header #siteName h1 img{
    float:left;
    padding-top:2px;
    margin-right:15px;
    vertical-align: middle;
    width:280px;
    height:auto;
}
    @media screen and (max-width: 767px)  {
        header #siteName h1{
            font-size:14px;
            line-height:120%;
            margin:10px 0 0 10px;
        }
        header #siteName h1 img{
            float:left;
            margin:0;
            width:auto;
            max-width:300px;
            height:auto;
            vertical-align: middle;
        }
    }
header #siteName h1 a:hover{
    text-decoration: none;
}
header #eventDate{
    float: left;
    width:280px;
    padding:20px 0 0 0;
    line-height:140%;
    font-size:15px;
}
    @media screen and (max-width: 767px)  {
        header #eventDate{
            width:100%;
            padding:3px 0 0 10px;
            font-size:13px;
        }
    }
header #headMenu{
    float: left;
    width:500px;
    margin-top:13px;
}
    @media screen and (max-width: 767px)  {
        header #headMenu{
            float:none;
            width:auto;
        }
    }
    @media screen and (max-width: 767px)  {
        header #headMenu .headMenuA{
            display: none;
        }
    }
header #headMenu .headMenuA ul li{
    float:right;
}
    @media screen and (max-width: 767px)  {
        header #headMenu .headMenuA ul li{
            float:none;
        }
    }
header #headMenu .headMenuA a{
    display:inline-block;
    font-size:14px;
    text-align: right;
    padding:0 0.5em;
    border:1px solid #aaa;
    margin-left:0.5em;
}
header #headMenu .headMenuA a:hover{
    border:1px solid #1d50a2;
    color:#1d50a2;
    text-decoration: none;
    transition   : .3s;
}
header #headMenu .headMenuA a.mypage{
    color:#fff;
    background:#1d50a2;
}
header #headMenu .headMenuA a.mypage:hover{
    color:#fff;
    background:#4c83db;
}
header #headMenu .headMenuA a.mypage.soon{
    color:#fff !important;
}
header #invitedCompanies{
    float:left;
    display: table;
    width:300px;
    margin:12px 0 0 10px;
    font-size:12px;
    font-weight:bold;
    line-height:130%;
    border:2px solid #e60e11;
    border-radius: 5px;
    min-height:35px;
}
header #invitedCompanies span{
    display:table-cell;
    text-align: left;
    padding-left:7px;
}
header #invitedCompanies span.CompaniesA{
    background:#e60e11;
    color:#fff;
    padding:5px 10px;
    margin-right:7px;
    width:70px;
    text-align: center;
    vertical-align: middle;
}
header #invitedCompanies span.CompaniesB{
    vertical-align: middle;
    background:#ffffff;
}
    @media screen and (max-width: 767px)  {
        header #headMenu{
            margin-top:0;
        }
        header #invitedCompanies{
            float:none;
            width:calc(100% - 20px);
            margin:0px 10px;
            padding:0;
            min-height:25px;
        }
    }
header #mainMenu{
    position: absolute;
    bottom:0;
    width:1170px;
}
header #mainMenu li{
    width:16.66%;
    font-size:15px;
    font-weight:bold;
    text-align: center;
}
header #mainMenu li a{
    display:block;
    border-bottom:5px solid #fff;
    padding-bottom:3px;
}
/*
########################################################
  モバイル対応 ハンバーガーメニュー
########################################################
*/
.btn-burger {
    display: none;
}
.drawer{
    display: none;

}
@media screen and (max-width: 767px)  {
    .drawer{
            display: block;

    }

    #mainMenu{
    display: none;

    }


  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all .6s;
    z-index: 2000;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 2001;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }
  .nav_item.sublink a{
      background-color:#f8ece5;
      font-size:11px;
      margin-left:20px;
      margin-right:20px;
      border-bottom: 1px solid #fff;
  }
  .nav_item.sublink a.mypage{
    color:#fff;
    background:#1d50a2;
    }
    .nav_item.sublink a.mypage.soon{
        color:#fff !important;
    }
  .nav_item.sublink.first{
      margin-top:20px;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}
/*
########################################################
  ここまで/モバイル対応 ハンバーガーメニュー
########################################################
*/
header #mainMenu li a:hover,
header #mainMenu li a.current,
#home header #mainMenu li.home a,
#news header #mainMenu li.news a,
#map header #mainMenu li.map a,
#themezone header #mainMenu li.themezone a,
#seminar header #mainMenu li.seminar a,
#search header #mainMenu li.search a{
    text-decoration: none;
    border-bottom:5px solid #1d50a2;
    transition   : .5s;
}
#ToTop #page-top {
    width:50px;
	position: fixed;
	bottom: 30px;
	right: 0px;
	font-size: 77%;
	z-index: 5000;
}
#ToTop #page-top a{
    display:block;
    margin:0 auto 10px auto;
}
#ToTop #page-top img{
    width:50px;
    height:auto;
}
#ToTop #page-top .Facebook img{
    width:46px;
    height:auto;
    padding-right:4px;
}
#ToTop #page-top a img{
    opacity: 0.7;
}
#ToTop #page-top a:hover img{
    opacity: 1;
    background:transparent;
}

footer{
    width:100%;
    font-size:12px;
    text-align:center;
    padding:20px 0;
    line-height:200%;
    min-height:120px;
}
footer a{
    color:#3c3c3c;
}
footer ul{
    margin:0;
    padding:0;
    position: relative;
    left: 50%;
    float: left;
}
footer ul li{
    margin:0 1.5em 0 0;
    padding:0;
    list-style: none;
    position: relative;
    left: -50%;
    float: left;
}
    @media screen and (max-width: 767px)  {
        footer ul{
            left: 0%;
            float: none;
        }
        footer ul li{
            margin:0 auto 0 auto;
            left: 0%;
            float: none;
        }
    }
footer p{
    font-size:11px;
    margin:20px 0 0 0;
    font-weight:bold;
}
footer p.privacy_policy{
    margin:10px 0 0 0;
}
footer p.copy{

}
@media screen and (max-width: 767px)  {
    footer p.footLogo img{
        width:50%;
        height:auto;
    }
    footer p.copy{
        margin:10px 30px 0 30px;
    }
}
/*
########################################################
  crumb
########################################################
*/
#Content #crumb {
    width:100%;
}
#Content #crumb ul{
    width:1170px;
    height:1em;
    margin:0px auto;
    padding: 0 40px;
    font-size:80%;
}
@media screen and (max-width: 767px)  {
    #Content #crumb ul{
        width:auto;
        padding: 0 10px;
    }
}
#Content #crumb ul li{
    float:left;
    margin: 0;
    list-style: none;
    font-size:13px;
}
#Content #crumb ul li::after{
    content: ">";
    margin:0 0.5em;
}
#Content #crumb ul li:last-child::after{
    content:"";
    margin:0;
}
#Content #crumb ul li a{
    color:#333;
    font-size:13px;
}
#Content #crumb ul li a:hover{
    color:#be7e97;
    text-decoration: underline;
}
#Content #crumb ul li:last-child a{
    text-decoration: none;
    pointer-events: none;
    display: inline-block;
}
/*
########################################################
  topImage
########################################################
*/
.topImage{
    padding-top:1px;
    height:500px;
    background-repeat:no-repeat;
    background-position:right center;
    background-size: contain;
  }
.topImage h2{
    margin-top:180px;
  }
    @media screen and (max-width: 767px)  {
        .topImage h2{
            margin-top:80px;
        }
    }
/*
########################################################
  MainContent
########################################################
*/
#MainContent{

}
#Wrap{
    padding:110px 0 0 0;
}
#top #Wrap{
    padding:0px 0 0 0;
}
    @media screen and (max-width: 767px)  {
        #Wrap{
            padding:100px 0 0 0;
        }
        #top #Wrap{
            padding:0px 0 0 0;
        }
    }
.ContentWrap{
    margin:0;
    padding:1px;
    color:#3c3c3c;
    min-width:1170px;
}
.ContentWrap h3{
    color:#fff;
}
.ContentWrap.color00{
    background:#eeeeee;
}
    .ContentWrap.color00 h3{
        background-color:#3c3c3c;
    }
    .ContentWrap.color00 strong{
        color:#3c3c3c;
    }
.ContentWrap.color01{
    background:#ffffff;
}
    .ContentWrap.color01 h3{
        background-color:#1d50a2;
    }
    .ContentWrap.color01 strong{
        color:#1d50a2;
    }
.ContentWrap.color02{
    background:#fce7e9;
}
    .ContentWrap.color02 h3{
        background-color:#ec6d88;
    }
    .ContentWrap.color02 strong{
        color:#ec6d88;
    }
.ContentWrap.color03{
    background:#fff5d7;
}
    .ContentWrap.color03 h3{
        background-color:#fcc800;
    }
    .ContentWrap.color03 strong{
        color:#fcc800;
    }
.ContentWrap.color04{
    background:#efe5f0;
}
    .ContentWrap.color04 h3{
        background-color:#b077a9;
    }
    .ContentWrap.color04 strong{
        color:#b077a9;
    }
.ContentWrap.color05{
    background:#e0f1f0;
}
    .ContentWrap.color05 h3{
        background-color:#00b1ae;
    }
    .ContentWrap.color05 strong{
        color:#00b1ae;
    }
.ContentWrap.color06{
    background:#e5eff9;
}
    .ContentWrap.color06 h3{
        background-color:#65aadd;
    }
    .ContentWrap.color06 strong{
        color:#65aadd;
    }
.ContentWrap.color07{
    background:#f2e0ed;
}
    .ContentWrap.color07 h3{
        background-color:#c14d97;
    }
    .ContentWrap.color07 strong{
        color:#c14d97;
    }
.ContentWrap.color08{
    background:#e3f1e4;
}
    .ContentWrap.color08 h3{
        background-color:#3eb370;
    }
    .ContentWrap.color08 strong{
        color:#3eb370;
    }
.ContentWrap.color09{
    background:#feefd4;
}
    .ContentWrap.color09 h3{
        background-color:#f7ab00;
    }
    .ContentWrap.color09 strong{
        color:#f7ab00;
    }
.ContentWrap.color10{
    background:#e3f0d8;
}
    .ContentWrap.color10 h3{
        background-color:#45b035;
    }
    .ContentWrap.color10 strong{
        color:#45b035;
    }
.ContentWrap.color11{
    background:#fce3d6;
}
    .ContentWrap.color11 h3{
        background-color:#eb613b;
    }
    .ContentWrap.color11 strong{
        color:#eb613b;
    }
.TopImage .Inside,
.MainImage .Inside,
.ContentWrap .Inside{
    width:1170px;
    margin:20px auto 40px auto;
    padding:0 40px;
}
.MainImage{
    background-image:url(/gf2025/img/main-image-bg.jpg);
    padding-top:1px;
    height:200px;
    background-repeat:no-repeat;
    background-position:right center;
    background-size: cover;
}
#seminar .MainImage{
    background-image:url(/gf2025/img/main-image-seminar.jpg);
}
#mypage .MainImage{
    background-image:url(/mypage/img/main-image-mypage.jpg);
}
.MainImage h2{
    margin:70px 0 0 0px;
    padding:0;
    font-size:50px;
    line-height:100%;
    color:#fff;
    text-shadow: -1px -1px 10px #000;
    /*text-shadow: -1px -1px 5px #808080;*/
    text-align: center;
}
.MainImage a.btn{
    margin-top:2em;
    padding        : 0.2em 2em 0.3em 2em;
    font-size:12px;
}
#Content .menu2nd{
    display: table;
    width: 100%;
}
#Content .menu2nd li{
    display: table-cell;
    margin:0;
    padding:0;
    list-style-type: none;
}
#Content .menu2nd li a{
    display: block;
    position: relative;
    padding:5px 0 8px 0;
    border-left:1px solid #aaa;
    border-top:1px solid #aaa;
    border-bottom:1px solid #aaa;
    text-align: center;
    background:rgba(255,255,255,1.0);
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
}
#Content .menu2nd li:first-child a{
    border-top-left-radius : 30px;
    border-bottom-left-radius : 30px;
}
#Content .menu2nd li:last-child a{
    border-right:1px solid #aaa;
    border-top-right-radius : 30px;
    border-bottom-right-radius : 30px;
}
#Content .menu2nd li a:hover,
#Content .menu2nd li a.current{
    background: #32bdd9;
    color:#fff;
    text-decoration: none;
}
#Content .menu2nd li a:hover::after,
#Content .menu2nd li a.current::after{
    content:"▼";
    font-size:11px;
    position: absolute;
    bottom:-20px;
    left:48%;
    color:#32bdd9;
}
#Content .menu2nd.pieces2 li{
    width:50%;
}
#Content .menu2nd.pieces3 li{
    width:33.33%;
}
#Content .menu2nd.pieces4 li{
    width:25%;
}
#Content .menu2nd.pieces5 li{
    width:20%;
}
#Content .menu2nd.pieces6 li{
    width:16.66%;
}
    @media screen and (max-width: 767px)  {
        #Content .menu2nd{
            display:block;
        }
        #Content .menu2nd li{
            display: block;
            float: left;
        }
        #Content .menu2nd li a{
            display: block;
            position: relative;
            padding:5px 0 8px 0;
            border-left:1px solid #aaa;
            border-top:0px;
            border-bottom:1px solid #aaa;
            text-align: center;
            background:rgba(255,255,255,1.0);
            box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
        }
        #Content .menu2nd li:first-child a{
            border-top-left-radius : 0px;
            border-bottom-left-radius : 0px;
            border-top:1px solid #aaa;
        }
        #Content .menu2nd li:nth-child(2) a{
            border-top:1px solid #aaa;
        }
        #Content .menu2nd li:nth-of-type(2n) a{
            border-right:1px solid #aaa;
        }
        #Content .menu2nd li:last-child a{
            border-right:1px solid #aaa;
            border-top-right-radius : 0px;
            border-bottom-right-radius : 0px;
        }
        #Content .menu2nd li a:hover::after,
        #Content .menu2nd li a.current::after{
            content:"▼";
            font-size:11px;
            position: absolute;
            bottom:-6px !important;
            left:48%;
            color:#fff;
        }
        #Content .menu2nd.pieces2 li,
        #Content .menu2nd.pieces3 li,
        #Content .menu2nd.pieces4 li,
        #Content .menu2nd.pieces5 li,
        #Content .menu2nd.pieces6 li{
            width:50%;
        }
    }
/*
########################################################
  TopPage
########################################################
*/
#home .TopImage{
    width:1170px;
    margin:0 auto;
}
#home .GF2022MainLogo img{
    width:850px;
    height:auto;
    margin:30px 50px;
}
#home .TopMainImage{
    background:url(/img/main-image-bg.jpg) center center no-repeat;
    background-size:cover;
    height:1000px;
}
#home .TopMainImageLogo{
    padding:40px 0;
    text-align: center;
}
#home .TopMainImageLogo img{
    width:800px;
    height:auto;
}
#home .TopMainImage00{
    background:url(/img/main-image-bg00.png) center top no-repeat;
    width:100%;
    height:1000px;
    background-size:1421px 1122px;
}


.ContentWrap.place .Image05 > a{
    width:20%;
    float:left;
    margin-bottom:2em;
    display: block;
}
.ContentWrap.place .Image05 > a:hover{
    text-decoration: none;
    background:#e5eff9;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.place .Image05 > a{
            width:100%;
            float:none;
            margin:0 0 3em 0 !important;
        }
    }
.ContentWrap.place .Image05 > div,
.ContentWrap.place .Image05 > a{
    width:calc(20% - 10px);
    background:#fff;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
    border-radius: 7px;
    text-align: center;
    color:#3c3c3c;
    position: relative;
    margin:0 5px 0 5px;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.place .Image05 > a{
            width:100%;
            background:#fff;
            box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
            border-radius: 7px;
            text-align: center;
            color:#3c3c3c;
            position: relative;
            margin:0 20px 10px 20px !important;
        }
    }
.ContentWrap.place .Image05 img{
    border-radius: 7px 7px 0 0;
}
.ContentWrap.place .Image05 .fair{
    display: block;
    font-weight:bold;
    font-size:20px;
    margin:0 10px 15px 10px;
    padding-bottom:15px;
    border-bottom:1px solid #3c3c3c;
}
.ContentWrap.place .Image05 .day{
    display: block;
    font-weight:bold;
    font-size:28px;
}
.ContentWrap.place .Image05 .day span{
    font-size:18px;
    display: inline-block;
}
.ContentWrap.place .Image05 .day.typeB{
    color:#3e77f1;
    margin-top:0px;
}
.ContentWrap.place .Image05 .time{
    display: block;
    font-size:15px;
}
.ContentWrap.place .Image05 .place{
    display: block;
    font-weight:bold;
    font-size:16px;
    margin:20px 0;
    line-height:120%;
}
.ContentWrap.place .Image05 .place > span{
    display: block;
    font-weight:normal;
    font-size:12px;
}
.ContentWrap.place .Image05 .venueLink{
    border:2px solid #3c3c3c;
    color:#3c3c3c;
    background-color:rgba(253, 253, 253, 0.7);
    font-weight:bold;
    padding:5px 15px;
    display: inline-block;
    margin-bottom:10px;
}
.ContentWrap.place .Image05 a:hover .venueLink{
    border:2px solid #ea5404;
    color:#ea5404;
}
.ContentWrap.place .Image05 .soon{
    /*background-color:rgba(255,255,255,0.5);*/
    opacity: 1;
    color:#3c3c3c !important;
}
.ContentWrap.place .Image05 .soonmsg{
    /*background-color:rgba(253, 253, 253, 0.7);
    position: absolute;
    padding:1em 0;
    border-radius: 7px;
    left:0%;
    top:0%;
    width:100% !important;
    height:auto !important;*/
    font-size:18px;
    font-weight:bold;
    color:#ea5404;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.place .Image05 .soonmsg{
            padding:0;
        }
    }

.ContentWrap.place .Extra{
    width:calc(100% - 10px);
    background:#fff;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
    border-radius: 7px;
    text-align: center;
    color:#3c3c3c;
    position: relative;
    margin:20px 5px 10px 5px !important;
    padding-top:20px;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.place .Extra{
            width:calc(100% - 40px);
            margin:20px 20px 10px 20px !important;
            padding-top:20px;
        }
    }
.ContentWrap.place .Extra strong{
    display: block;
    text-align: center;
    color:#ea5404;
    font-size:22px;
    line-height:110%;
    padding-bottom:20px;
}
.ContentWrap.place .Extra strong img{
    width:auto;
    height:25px !important;
    padding-right:10px;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.place .Extra strong{
            font-size:22px;
            line-height:140%;
        }
    }
.ContentWrap.place .Extra > div{
    display: flex;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.place .Extra > div{
            display: block;
        }
    }
.ContentWrap.place .Extra > div > div.Image{
    width:300px;
    margin:0 10px;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.place .Extra > div > div.Image{
            width:100%;
            margin:0px;
        }
    }
.ContentWrap.place .Extra > div > div.Explanation{
    width:700px;
    margin:0 20px;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.place .Extra > div > div.Explanation{
            width:calc(100% - 40px);
        }
    }
.ContentWrap.place .Extra > div > div.Explanation .fair{
    display: block;
    border:2px solid #aaa;
    color:#3c3c3c;
    font-size:25px;
    font-weight:bold;
    padding:15px 0;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.place .Extra > div > div.Explanation .fair{
            line-height:120%;
        }
    }
.ContentWrap.place .Extra > div > div.Explanation .day{
    display: block;
    font-weight:bold;
    font-size:28px;
    margin-top:30px;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.place .Extra > div > div.Explanation .day{
            line-height:120%;
        }
    }
.ContentWrap.place .Extra > div > div.Explanation .day span.week{
    font-size:18px;
    display: inline-block;
}
.ContentWrap.place .Extra > div > div.Explanation .place{
    display: block;
    font-weight:bold;
    font-size:16px;
    margin-top:20px;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.place .Extra > div > div.Explanation .place{
            padding-bottom:30px;
        }
    }



.ContentWrap.result table{
    font-size:20px;
}
.ContentWrap.result table th{
    text-align: center;
    font-weight:bold;
    background:#13bed2;
    color:#fff;
}
.ContentWrap.result table td{
    text-align: right;
    font-weight:bold;
    font-size:22px;
}
.ContentWrap.result table td span{
    font-size:14px;
}

.ContentWrap.result .Image03 strong{
    display:block;
    text-align:center;
    font-size:24px;
    padding-bottom:15px;
    color:#328dd0;
}


.ContentWrap.covid{
    background:#00afcb;
    color:#fff;
}
.ContentWrap.covid .covidCopy{
    font-weight:bold;
    font-size:26px;
    text-align: center;
    margin-bottom:20px;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.covid .covidCopy{
            font-size:22px;
            line-height:120%;
        }
    }
.ContentWrap.covid .covidCopy span{
    color:#ffef00;
}
.ContentWrap.covid .covidIcon{
    margin:0 210px;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.covid .covidIcon{
            margin:0;
        }
    }
.ContentWrap.covid .covidIcon > div{
    background: #fff;
    color:#00afcb;
    text-align: center;
    padding:0 10px 10px 10px;
    font-weight:bold;
    font-size:14px;
    border-radius: 13px;
    line-height:100%;
    width: calc(25% - 10px);
    float: left;
    margin: 0 10px 10px 0 !important;
    margin-left:10px;
}
.ContentWrap.covid .covidIcon > div:nth-child(6n+1){
    margin-left:0px;
}
    @media screen and (max-width: 767px)  {
        .ContentWrap.covid .covidIcon > div{
            width: calc(33.3% - 10px);
            margin-left:10px;
        }
        .ContentWrap.covid .covidIcon > div:nth-child(3n+1){
            margin-left:0px;
        }
    }
.ContentWrap.SDGS .SDGSCopy{
    text-align: center;
    margin:40px 0px;
}
.ContentWrap.SDGS .SDGSCopy img{
    width:35%;
    height:auto;
}
@media screen and (max-width: 767px)  {
    .ContentWrap.SDGS .SDGSCopy{
        text-align: center;
        margin:10px 0px 20px 0;
    }
    .ContentWrap.SDGS .SDGSCopy img{
        width:70%;
        height:auto;
    }
}
.ContentWrap.SDGS .ImageSDGS > div{
    width:calc(10% - 10px);
    float:left;
    margin-left:10px;
    margin-bottom:0px;
}
.ContentWrap.SDGS .ImageSDGS > div:nth-child(10n+1){
    margin-left:0px;
}
    @media screen and (max-width: 767px)  {
        #Content .ContentWrap.SDGS .ImageSDGS > div{
            width:calc(20% - 8px);
            float:left;
            margin-left:10px;
            margin-bottom:0px;
        }
        #Content .ContentWrap.SDGS .ImageSDGS > div:nth-child(5n+1){
            margin-left:0px;
        }
    }
/*
########################################################
  venueTop
########################################################
*/
#home .TopMenu .Inside{
    margin-top:0;
    margin-bottom:30px;
}
#home .TopMenu .Menu{
    display: flex;
    vertical-align: top;
}
    @media screen and (max-width: 767px)  {
        #home .TopMenu .Menu{
            display: block;
            vertical-align: top;
        }
    }
#home .TopMenu .Menu > a{
    width:33%;
    text-align:center;
    display: block;
    background:#1d50a2;
    color:#fff;
    margin:0 20px;
    padding:30px 10px;
    font-size:20px;
    font-weight:bold;
    position: relative;
    border-radius: 3px;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
}
    @media screen and (max-width: 767px)  {
        #home .TopMenu .Menu > a{
            width:100%;
            margin:0 0 10px 0;
            padding:30px 10px;
            font-size:20px;
        }
    }
#home .TopMenu .Menu > a:hover{
    text-decoration: none;
    background:#4c83db;
}
#home .TopMenu .Menu > a.soon{
    background:#ccc;
    color:#fff !important;
}
#home .TopMenu .Menu > a > span{
    display: block;
}
#home .TopMenu .Menu > a > span.Guide{
    display: inline-block;
    background:#fff;
    border-radius: 30px;
    padding:0 25px;
    color:#1d50a2;
}
#home .TopMenu .Menu > a::after{
    content: "▼";
    color:#fff;
    position: absolute;
    left:45%;
    bottom:5px;
    font-size:14px;
}
#home .TopMenu .Menu > a:hover::after{
    bottom:0px;
    transition   : .3s;
}
#home .news li{
    margin: 0 20px;;
    padding:5px;
    list-style-type: none;
    border-top:1px solid #3c3c3c;
}
#home .news li:last-child{
    border-bottom:1px solid #3c3c3c;
}
#home .news li span{
    margin-right:0.5em;
}
#home .ContentWrap .linkbanner a{
    display: block;
    background:#fff;
    color:#3c3c3c;
    border-radius: 3px;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
    padding-bottom:20px;
    position: relative;
}
#home .ContentWrap .linkbanner a:hover{
    color:#1d50a2;
    text-decoration: none;
}
#home .ContentWrap .linkbanner a::after{
    content: "▼";
    position: absolute;
    left:45%;
    bottom:10px;
    font-size:14px;
}
#home .ContentWrap .linkbanner a:hover::after{
    bottom:5px;
    transition   : .3s;
    color:#1d50a2;
}
#home .ContentWrap .linkbanner a img{
    border-radius: 3px 3px 0px 0px;
}
#home .ContentWrap .linkbanner a h4{
    padding:0 20px;
}
#home .ContentWrap .linkbanner a p{
    padding:0 20px;
    min-height:4em;
    font-size:16px;
    line-height:140%;
}
#home .ContentWrap .linkbanner a.soon{
    /*background-color:rgba(255,255,255,0.5);
    opacity: 0.7;*/
}
#home .ContentWrap .linkbanner a.soon .soonmsg{
    position: absolute;
    font-size:24px;
    font-weight:bold;
    background-color:rgba(253, 253, 253, 0.7);
    padding:4em 0;
    border-radius: 3px;
    left:0%;
    top:0%;
    width:100% !important;
    height:100% !important;
    color:#c14d97;
    text-align: center;
}

#home .ContentWrap .item_list li{
    float:left;
    margin: 0 1em 1em 0em;
    list-style-type: none;
}
#home .ContentWrap .item_list li a{
    display: inline-block;
    background:#fff;
    color:#3c3c3c;
    border:1px solid #3c3c3c;
    padding:2px 28px 2px 10px;
    position: relative;
}
#home .ContentWrap .item_list li a:hover{
    text-decoration: none;
    color:#1d50a2;
    border:1px solid #1d50a2;
}
#home .ContentWrap .item_list li a::after{
    content: "▶";
    position: absolute;
    top:10%;
    right:10px;
    font-size:11px;
}
#home .ContentWrap .item_list li a:hover::after{
    right:5px;
    transition   : .3s;
    color:#1d50a2;
}
#Content .pickup > div{
    text-align: center;
    max-width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}
#Content .pickup a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height:109px;
}
    @media screen and (max-width: 767px)  {
        #Content .pickup a{
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height:75px;
        }
    }
#Content .pickup img{
    width:auto;
    max-height:109px;
    margin-bottom:0 !important;
}
    @media screen and (max-width: 767px)  {
        #Content .pickup img{
            width:auto;
            max-height:75px;

        }
    }
#Content .sponsor > div{
    text-align: center;
    max-width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}
#Content .sponsor a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height:83px;
}
    @media screen and (max-width: 767px)  {
        #Content .sponsor a{
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height:75px;
        }
    }
#Content .sponsor img{
    width:auto;
    max-height:83px;
    margin-bottom:0 !important;
}
    @media screen and (max-width: 767px)  {
        #Content .sponsor img{
            width:auto;
            max-height:75px;

        }
    }
/*
########################################################
  access
########################################################
*/
#access .accessMap iframe{
    width:80%;
    height:600px;
    margin:0 10%;
    border:1px solid #3c3c3c;
}
#access .accessOverview{
    width:80%;
    margin:0 10%;
}
@media screen and (max-width: 767px)  {
    #access .accessMap iframe{
        width:100%;
        margin:0;
        height:600px;
    }
    #access .accessOverview{
        width:100%;
        margin:0;
    }
}
/*
########################################################
  mypageLogin
########################################################
*/
#mypage.Login header .logo,
#NoMenu header .logo{
    text-align:center;
    margin-top:10px;
}
#mypage.Login header .logo img,
#NoMenu header .logo img{
    width:auto;
    height:auto;
    max-height:60px;
}
#mypage.Login .mypageLogin{
    width:70%;
    margin:0 auto;
}
#mypage.Login .mypageLogin .mypage_id span,
#mypage.Login .mypageLogin .mypage_pw span{
    display:block;
    font-weight:bold;
    margin-bottom:10px;
}
#mypage.Login .mypageLogin .mypage_id{
    margin-bottom:20px;
}
@media screen and (max-width: 767px)  {
    #mypage.Login header{
        height:60px;
    }
    #mypage.Login #Wrap{
        padding-top:60px;
    }
    #mypage.Login header .logo img{
        max-height:40px;
    }
    #mypage.Login header .logo{
        margin-top:10px;
    }
    #mypage.Login .mypageLogin{
        width:100%;
    }
}

/*
########################################################
  mypage
########################################################
*/
#mypage .loginUser{
    text-align:center;
    margin:30px 0 20px 0;
}
#mypage .loginUser .UserName{
    font-size:28px;
    margin-bottom:20px;
    font-weight:bold;
}
#mypage .loginUser .UserName span{
    font-weight:normal;
    font-size:20px;
    display: inline-block;
    margin:0 0.5em;
}
#mypage .mypageMenu{
    display: flex;
    align-items: stretch;
}
#mypage .mypageMenu a,
#mypage .mypageMenu > span{
    width: 25%;
    padding: 10px;
    display: block;
    background:#fff;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
    border:1px solid #bbb;
    border-radius: 7px;
    text-align: center;
    color:#3c3c3c;
    margin:0 5px 0 5px;
}
    @media screen and (max-width: 767px)  {
        #mypage .mypageMenu{
            display: flex;
            align-items: stretch;
            flex-wrap: wrap;
        }
        #mypage .mypageMenu a,
        #mypage .mypageMenu > span{
            width:calc(50% - 4px);
            background:#fff;
            box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
            border-radius: 7px;
            text-align: center;
            color:#3c3c3c;
            position: relative;
            margin:0 2px 10px 2px !important;
        }
    }
#mypage .mypageMenu a:hover{
    text-decoration: none;
    background:#fce3d6;
    border:1px solid #1d50a2;
    transition   : .3s;
}
#mypage.vote .mypageMenu a.vote,
#mypage.regist .mypageMenu a.regist,
#mypage.favorite .mypageMenu a.favorite,
#mypage.watched .mypageMenu a.watched,
#mypage.questionary .mypageMenu a.questionary{
    background:#1d50a2;
    border:1px solid #1d50a2;
    color:#fff;
}
#mypage .mypageMenu a:hover img{
    opacity: 1;
}
#mypage .mypageMenu .title{
    font-weight:bold;
    font-size:24px;
    margin-bottom:10px;
}
    @media screen and (max-width: 767px)  {
        #mypage .mypageMenu .title{
            font-size:20px;
        }
    }
#mypage .mypageMenu .outline{
    font-size:16px;
    text-align: left;
    margin:10px 0;
}
    @media screen and (max-width: 767px)  {
        #mypage .mypageMenu .outline{
            font-size:14px;
            line-height:130%;
        }
    }
#mypage .mypageMenu .status{
    font-weight:bold;
    background:#eee;
    color:#3c3c3c;
    line-height:120%;
    padding:8px 0 10px 0;
}
#mypage .mypageMenu .status.mypage_color01{
    background:#e0f1f0;
}
#mypage .mypageMenu .status.mypage_color02{
    background:#ec6d88;
    color:#fff;
}
#mypage .mypageMenu .status.mypage_color03{
    background:#65aadd;
    color:#fff;
}
#mypage .mypageMenu .status span{
    font-size:14px;
    font-weight:normal;
    display: block;
}
#mypage .mypageMenu a .link{
    border:2px solid #3c3c3c;
    color:#3c3c3c;
    background-color:rgba(253, 253, 253, 0.7);
    font-weight:bold;
    padding:5px 15px;
    display: inline-block;
    margin:15px 0 10px 0;
}
#mypage .mypageMenu a:hover .link{
    border:2px solid #1d50a2;
    color:#1d50a2;
}
#mypage.regist h3{
    width:70%;
    margin:20px auto;
}
#mypage.regist.change h3{
    width:100%;
    margin:20px auto;
}
#mypage.regist .statusTable{
    display: flex;
    flex-wrap: wrap;
    width:70%;
    margin:0 auto;
}
#mypage.regist .CustomerInformation{
    display: flex;
    flex-wrap: wrap;
    width:100%;
    margin:0 auto;
}
    @media screen and (max-width: 767px)  {
        #mypage.regist h3{
            width:100%;
        }
        #mypage.regist .statusTable,
        #mypage.regist .CustomerInformation{
            width:100%;
        }
    }
#mypage.regist .statusTable .title,
#mypage.regist .CustomerInformation dt{
    width:30%;
    border-bottom:1px solid #aaa;
    font-weight:bold;
    padding:3px 0;
}
#mypage.regist .statusTable .detail,
#mypage.regist .CustomerInformation dd{
    width:70%;
    border-bottom:1px solid #aaa;
    padding:3px 0;
}
#mypage.regist .CustomerInformation dd{
    padding-top:8px;
}
#mypage.regist .CustomerInformation dt,
#mypage.regist .CustomerInformation dd{
    margin:0;
}
    @media screen and (max-width: 767px)  {
        #mypage.regist .CustomerInformation dt{
            padding-top:8px;
        }
        #mypage.regist .CustomerInformation dt span.mast{
            display: block;
        }
        #mypage.regist .CustomerInformation dd{
            padding-bottom:8px;
        }
        #mypage.regist .CustomerInformation dd input{
            max-width:100% !important;
        }
        #mypage.regist .CustomerInformation dd span.MobileIndent{
            display: block;
        }
    }
#mypage.regist .CustomerInformation p{
    width:100%;
}
#mypage.regist .CustomerInformation .mast{
    font-size  : 70%;
    line-height: 140%;
    color: #fc495b !important;
}
#mypage.regist input.btn{
    display: inline-block;
    font-size: 17px;
    padding: 0.7em 4em 0.6em 4em;
    color: #3c3c3c;
    border: 2px solid #3c3c3c;
    background: rgba(255,255,255,0.95);
    border-radius: 100px;
    transition: .3s;
    text-decoration: none;
    font-weight: bold;
}
#mypage.regist input.btn:hover{
	color          : #1d50a2;
	border:2px solid #1d50a2;
	text-decoration: none;
}
#mypage.regist .ErrorBlock{
    background:#fce7e9;
    border:2px solid #ec6d88;
    padding:15px;
    margin-bottom:20px;
}
#mypage.regist .ErrorBlock .red{
    font-weight:bold;
    font-size:24px;
    display: inline-block;
    margin-bottom:20px;
}
    @media screen and (max-width: 767px)  {
        #mypage.regist .ErrorBlock .red{
            font-size:20px;
        }
    }
#mypage.questionary h4{
    border-bottom:2px solid #1d50a2;
    padding-bottom:7px;
}
/*
########################################################
  Company search
########################################################
*/
#search .searchBtn div span,
#search .searchBtn div button,
#search .searchBtn div.off a{
    display: block;
    width:100%;
    height:67px;
    background:#d93116;
    color:#fff;
    font-size:20px;
    font-weight:bold;
    text-align: center;
    padding: 1em 0.5em 1em 0.5em;
    border:0px;
    border-radius: 2px;
}
#search .searchBtn div.off a{
    background:#9b9796;
}
#search .searchBtn div.off a:hover{
    background:#d93116;
    text-decoration: none;
}
@keyframes shine {
  0% {
    background-position: -200% 0; /* 開始位置を左側の外に指定 */
  }
  50% {
    background-position: 200% 0; /* 中間位置を右側の外に指定 */
  }
  100% {
    background-position: -200% 0; /* 終了位置を左側の外に指定 */
  }
}

#search .searchBtn div button {
  background-color: #d49200; /* 初期の背景色を設定 */
  border-radius: 15px;
  position: relative; /* 親要素を基準にして子要素の位置を指定するために追加 */
  overflow: hidden; /* 子要素の内容がはみ出た場合に切り捨てるために追加 */
}

#search .searchBtn div button::before {
  content: ""; /* 擬似要素を生成 */
  position: absolute; /* 親要素を基準にして位置を指定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* 親要素の高さをカバーするように指定 */
  background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.2)); /* 左から右に向かってグラデーションを指定 */
  background-size: 200% 100%; /* 背景のサイズを2倍にして右端まで移動できるように指定 */
  animation: shine 6s infinite; /* アニメーションを適用し、2秒ごとに繰り返す */
}

#search .searchBtn div button:hover{
    background-color: #d93116;
}

#search .Print a{
    display: inline-block;
    width:300px;
    padding:10px;
    color:#3c3c3c;
    background:#fff;
    border:2px solid #3c3c3c;
    font-weight:bold;
    cursor: pointer;
    text-align: center;
}
#search .Print a:hover{
    text-decoration: none;
    background:#3c3c3c;
    color:#fff;
    border:2px solid #3c3c3c;
}
a.CompanyA{
    color:#3c3c3c;
    border:1px solid #3c3c3c;
    border-radius: 3px;
    display: block;
    margin:15px 0 0 0;
    position: relative;
    padding:0;
    background:#fff;
}
    @media screen and (max-width: 767px)  {
        a.CompanyA{
            padding-bottom:35px;
        }
    }
a:hover.CompanyA{
    color:#3c3c3c;
    text-decoration: none;
    background:#f1f1f1;
}

a.CompanyA .categories{
    color:#fff;
    padding:5px 10px 3px 10px;
    font-size:16px;
    line-height:120%;
    position: relative;
}
    @media screen and (max-width: 767px)  {
        a.CompanyA .categories{
            padding-right:100px;
        }
    }
a.CompanyA .categories::after{
    content:"詳細 ▶";
    position: absolute;
    background:#fff;
    color:#3c3c3c;
    border-radius: 20px;
    top:5px;
    right:8px;
    font-size:14px;
    font-weight:bold;
    padding:0 10px;
}
a:hover.CompanyA .categories::after{
    content:"詳細 ▶";
    position: absolute;
    background:#666;
    color:#fff;
    border-radius: 20px;
    top:5px;
    right:3px;
    font-size:14px;
    font-weight:bold;
    padding:0 10px;
    transition   : .7s;
}
a.CompanyA .categories .idno{
    font-size:13px;
    display: inline-block;
    margin-left:0.3em;
}
a.CompanyA .NewProduct{
    display: inline-block;
    width:60px;
    height:35px;
    background:#f54882;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
    color:#fff;
    font-size:20px;
    padding:3px 0 0 8px;
    border-radius: 3px;
    transform: skewX(-15deg);
    font-weight:bold;
}
a.CompanyA .CompanyBlock{
    display: table;
    min-height:200px;
}
    @media screen and (max-width: 767px)  {
        a.CompanyA .CompanyBlock{
            display: block;
        }
    }
a.CompanyA .CompanyBlock .PhotoBlock{
    display: table-cell;
    width:200px;
    text-align:center;
    vertical-align: middle;
    background:#fff;
}
    @media screen and (max-width: 767px)  {
        a.CompanyA .CompanyBlock .PhotoBlock{
            display: block;
            width:auto;
        }
    }
a.CompanyA .CompanyBlock .PhotoBlock img{
    width:auto;
    max-height:200px;
}
a.CompanyA .CompanyBlock .IntroductionBlock{
    display: table-cell;
    width:850px;
    padding:0 0 10px 30px;
}
    @media screen and (max-width: 767px)  {
        a.CompanyA .CompanyBlock .IntroductionBlock{
            display: block;
            width:auto;
            padding:0 10px 10px 10px;
        }
    }
a.CompanyA .companyName{
    font-size:26px;
    font-weight: bold;
    display: block;
    margin-top:10px;
}
    @media screen and (max-width: 767px)  {
        a.CompanyA .companyName{
            font-size:22px;
        }
    }
a.CompanyA .companyItem{
    font-size:20px;
    display: block;
    margin-top:5px;
}
a.CompanyA .catchcopy{
    margin:5px 0;
    padding:5px 0;
    border-top:1px solid #3c3c3c;
    border-bottom:1px solid #3c3c3c;
    display: block;
    font-size: 16px;
}
a.CompanyA .movie{
    display: inline-block;
    background:#1d50a2;
    color:#fff;
    border-radius: 30px;
    font-size:14px;
    font-weight:bold;
    padding:0 10px;
    margin-left:10px;
}
a.CompanyA .present{
    display: inline-block;
    background:#fff;
    color:#ee6f26;
    border-radius: 30px;
    font-size:14px;
    font-weight:bold;
    padding:0 10px;
    margin-left:10px;
    border:2px solid #ee6f26;
}
a.CompanyA .panel{
    display: inline-block;
    background:#fff;
    color:#359771;
    border-radius: 30px;
    font-size:14px;
    font-weight:bold;
    padding:0 10px;
    margin-left:10px;
    border:2px solid #359771;
}
a.CompanyA .panel img,
a.CompanyA .movie img,
a.CompanyA .present img{
    vertical-align: middle;
    position: relative;
    top:-1px;
    margin-right:3px;
}
a.CompanyA:hover .movie img,
a.CompanyA:hover .present img{
    opacity: 1;
    background:transparent;
}
a.CompanyA .scenario,
a.CompanyA .concept{
    font-size:14px;
    line-height:140%;
    margin-top:5px;
}
a.CompanyA .concept a{
    word-break: break-all;
}
a.CompanyA .scenario span,
a.CompanyA .concept span{
    display: inline-block;
    background:#888;
    color:#fff;
    border-radius: 3px;
    font-size:12px;
    padding:0 10px;
}

    @media screen and (max-width: 767px)  {
        .backCompanyB{
            display: none !important;
        }
    }

.bingo_wrap{
    border:2px solid #1d50a2;
    background:#eaeef3;
    padding:10px;
    margin-bottom:15px;
}
.bingo_wrap.red{
    border:2px solid #d93116;
    background:#faf4f3;
    padding:10px;
    margin-bottom:15px;
    color:#333 !important;
}
.bingo_wrap.red strong{
    color:#d93116;
}
.favoriteWrap{
    position: relative;
}
.favoriteWrap .Favorite{
    position:absolute;
    bottom:10px;
    right:10px;
}

.favoriteWrap .Wathced{
    position:absolute;
    bottom:10px;
    right:200px;
}

div.CompanyB .CompanyBcat{
    margin-top:20px;
    margin-left:40px;
}
    @media screen and (max-width: 767px)  {
        div.CompanyB .CompanyBcat{
            margin-top:10px;
            margin-left:10px;
        }
    }
div.CompanyB .CompanyBlock{
    display: table;
    min-height:350px;
}
    @media screen and (max-width: 767px)  {
        div.CompanyB .CompanyBlock{
            display: block;
        }
    }
div.CompanyB .CompanyBlink{
    text-align:right;
    margin:10px 40px 10px 0;
}
    @media screen and (max-width: 767px)  {
        div.CompanyB .CompanyBlink{
            text-align:center;
            margin:5px 0px 15px 0;
        }
    }
div.CompanyB .CompanyBlock .PhotoBlock{
    display: table-cell;
    width:350px;
    text-align:center;
    vertical-align: top;
    background:#fff;
    padding-top:15px;
}
    @media screen and (max-width: 767px)  {
        div.CompanyB .CompanyBlock .PhotoBlock{
            display: block;
            width:auto;
        }
    }
div.CompanyB .CompanyBlock .PhotoBlock .sdgsImage{
    margin-top:15px;
    font-weight:bold;
}
div.CompanyB .CompanyBlock .PhotoBlock .sdgsImage img{
    width:150px;
    height:auto;
}
    @media screen and (max-width: 767px)  {
        div.CompanyB .CompanyBlock .PhotoBlock .sdgsImage{
            text-align: right;
        }
        div.CompanyB .CompanyBlock .PhotoBlock .sdgsImage img{
            width:50px;
            height:auto;
            vertical-align: middle;
            margin-left:10px;
        }
    }
div.CompanyB .CompanyBlock .PhotoBlock img{
    width:auto;
    max-height:350px;
}
div.CompanyB .CompanyBlock .IntroductionBlock{
    display: table-cell;
    width:700px;
    padding:0 0 10px 30px;
}
    @media screen and (max-width: 767px)  {
        div.CompanyB .CompanyBlock .IntroductionBlock{
            display: block;
            width:auto;
            padding:0 10px 10px 10px;
        }
    }
.Wathced{
    background:#eb4923;
    color:#fff;
    border-radius: 30px;
    display: inline-block;
    padding:0 15px;
}
div.CompanyB .bookmark_on .bookmark,
div.Favorite .bookmark_on .bookmark{
    background:#f1f1f1;
    border-radius: 30px;
    display: inline-block;
    padding:0 15px;
}
div.CompanyB .bookmark_on .bookmark span,
div.Favorite .bookmark_on .bookmark span{
    color:#aaa;
    padding-right:10px;
}
div.CompanyB .bookmark_on:hover .bookmark span,
div.Favorite .bookmark_on:hover .bookmark span{
    color:#f54882;
}
div.CompanyB .bookmark_off .bookmark,
div.Favorite .bookmark_off .bookmark{
    background:#f1f1f1;
    border-radius: 30px;
    display: inline-block;
    padding:0 15px;
}
div.CompanyB .bookmark_off .bookmark span,
div.Favorite .bookmark_off .bookmark span{
    color:#f54882;
    padding-right:10px;
}
div.CompanyB .bookmark_off:hover .bookmark span,
div.Favorite .bookmark_off:hover .bookmark span{
    color:#aaa;
}
div.CompanyB .NewProduct{
    display: inline-block;
    width:60px;
    height:35px;
    background:#f54882;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
    color:#fff;
    font-size:20px;
    padding:3px 0 0 8px;
    border-radius: 3px;
    transform: skewX(-15deg);
    font-weight:bold;
}
div.CompanyB .movie{
    background:#f1f1f1;
    border-radius: 10px;
    padding:5px 15px;
    margin:20px 0;
}
    @media screen and (max-width: 767px)  {
        div.CompanyB .movie iframe{
            width:auto;
            height:auto;
        }
    }
div.CompanyB .tokuten{
    border:2px solid #1d50a2;
    border-radius: 10px;
    padding:5px 15px;
    margin:20px 0;
}
div.CompanyB .tokuten .tokuten_image img{
    width:auto;
    height:auto;
    max-height:400px;
}
div.CompanyB .scenario > div,
div.CompanyB .concept > div,
div.CompanyB .highlights > div{
    border-bottom:1px solid #3c3c3c;
    margin-bottom:5px;
    font-weight:bold;
}
div.CompanyB .scenario,
div.CompanyB .concept,
div.CompanyB .highlights{
    font-size:16px;
    line-height:140%;
    margin-top:5px;
}
div.CompanyB .scenario span,
div.CompanyB .concept span{
    display: inline-block;
    background:#888;
    color:#fff;
    border-radius: 3px;
    font-size:16px;
    padding:0 10px;
    margin-bottom:2px;
}
/*
########################################################
  ProductList
########################################################
*/
#Content .ProductList h3.cat01{
    background:#46bd7b;
    border:0;
    color:#fff;
    padding:7px 15px 10px 15px;
    width:100%;
    border-radius: 3px;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
}
#Content .ProductList  h5{
    background:#46bd7b;
    border:0;
    color:#fff;
    padding:7px 10px 10px 10px;
    width:100%;
    border-radius: 3px;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
}
#Content .ProductList > div{
    background:#fefefe;
    margin:40px 0 0 0;
    padding:25px 20px;
    min-height:250px;
    position: relative;
    border-radius: 3px;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
}
#Content .ProductList > div:first-child{
    margin-top:10px;
}
#Content .ProductList > div .NewProduct{
    position: absolute;
    top:-20px;
    left:10px;
    width:70px;
    height:40px;
    background:#f54882;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
    color:#fff;
    font-size:24px;
    padding:3px 0 0 8px;
    border-radius: 3px;
    transform: skewX(-15deg);
    font-weight:bold;
}
#Content .ProductList > div .ProductLink01{
    position: absolute;
    top:-20px;
    right:10px;
}
#Content .ProductList > div .ProductLink01 a{
    display: block;
    width:40px;
    height:40px;
    border-radius: 20px;
    background:#fff;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
    color:#aaa;
    font-size:24px;
    padding:5px 0 0 8px;
}
#Content .ProductList > div .ProductLink01 a:hover{
    color:#f54882;
    text-decoration: none;
}
#Content .ProductList > div .ProductLink02{
    position: absolute;
    top:-20px;
    right:60px;
}
#Content .ProductList > div .ProductLink02 a{
    display: block;
    width:200px;
    height:40px;
    text-align: center;
    border-radius: 20px;
    background:#fff;
    box-shadow: 0px 4px 4px -2px rgba(0,0,0,0.1);
    font-size:16px;
    padding:3px 0 0 8px;
}
#Content .ProductList > div .ProductImage{
    width:300px;
    float:left;
}
#Content .ProductList > div .ProductContent{
    width:720px;
    float:left;
    margin-left:30px;
}
#Content .ProductList > div .ProductContent h4{
    margin:0;
    padding:0;
}
#Content .ProductList > div .ProductContent .Category{
    font-size:12px;
}
#Content .ProductList > div .ProductContent .Category > span{
    display: inline-block;
    font-weight:bold;
}
#Content .ProductList > div .ProductContent .Category > ul{
    display: inline-block;
    margin-bottom:0.5em;

}
#Content .ProductList > div .ProductContent .Category > ul li{
    display: inline-block;
    list-style-type: none;
    margin:0 0 0 5px;
    padding:0 10px;
    white-space: nowrap;
    background:#666;
    color:#fff;
    border-radius: 3px;
}
/*
########################################################
  themezone
########################################################
*/
#themezone strong{
    color:#231815;
}
#themezone .mainCopy{
    color:#231815;
    font-size:60px;
    text-align:left;
    line-height:120%;
    margin-bottom:20px;
}
#themezone .subCopy{
    text-align:left;
    font-size:36px;
    margin-bottom:15px;
}
    @media screen and (max-width: 767px){
        #themezone .mainCopy,
        #themezone .mainCopy strong{
            font-size:30px;
            line-height:140%;
        }
        #themezone .subCopy{
            font-size:18px;
        }
    }
#themezone .themezoneImage{
    text-align:center;
    margin:0 200px;
}
    @media screen and (max-width: 767px){
        #themezone .themezoneImage{
            margin:0px;
        }
    }

#themezone .CompanyList li{
    margin-bottom: 5px;
    font-size:13px;
    line-height:140%
}
#themezone .themezoneTitle{
    margin-bottom:0px;
    text-align: center;
}
#themezone .themezoneTitle.ColorA{
    background:#d70c19;
}
#themezone .themezoneTitle.ColorB{
    background:#006cb8;
}
#themezone .themezoneTitle.ColorC{
    background:#079a3e;
}
#themezone .themezoneTitle.ColorD{
    background:#ea5404;
}
#themezone .themezoneTitle.ColorE{
    background:#6b1686;
}
#themezone .themezoneTitle.ColorF{
    background:#3498db;
}
#themezone .themezoneTitle img{
    width:600px;
    height:auto;
}
#themezone h3{
    font-size:24px;
}
#themezone .borderThemezone{
    background:#f1f1f1;
    margin-bottom: 1.5em;
    border: solid 1px #aaa;
    border-radius: 3px;
}
#themezone .borderThemezone h3{
    background-color: rgb(89, 98, 109);
    padding: 7px 30px 10px 30px;
    margin: 0px 0 27px 0;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
#themezone .borderThemezone .borderThemezoneContent{
    padding: 0px 20px 0px 20px;
}
}
#themezone .ColumnImage{
    display:flex;
    flex-wrap: wrap;
}
#themezone .ColumnImage.Column02 > div{
    width:50%;
}
#themezone .ColumnImage.Column03 > div{
    width:33.3%;
}
#themezone .ColumnImage.Column04 > div{
    width:25%;
}
#themezone .ColumnImage > div img{
    width:100%;
    height:auto;
    margin-bottom: 0em;
}
#themezone h4{
    font-size:22px;
    margin-bottom:1;
}
#themezone .color02 h3{
    color:#d70c19;
    background-color:transparent;
    padding: 0px;
    margin: 0px 0 45px 0;
    text-align: center;
    font-size:32px;
}
#themezone .color00 h3{
    background-color:#fff;
    padding: 7px 10px 5px 10px;
    border-radius: 5px;
    max-height:123px;
    text-align: center;
}
#themezone .color00 h3 img{
    max-height:110px;
    width:auto;
}
#themezone .color02 h4{
    color:#d70c19;
}
#themezone .color03 h3{
    color:#ea5404;
    background-color:transparent;
    padding: 0px;
    margin: 0px 0 45px 0;
    text-align: center;
    font-size:32px;
}
#themezone .color03 h4{
    color:#ea5404;
}
#themezone .color04 h3{
    color:#6b1686;
    background-color:transparent;
    padding: 0px;
    margin: 0px 0 45px 0;
    text-align: center;
    font-size:32px;
}
#themezone .color04 h4{
    color:#6b1686;
}
#themezone .color05 h3{
    color:#079a3e;
    background-color:transparent;
    padding: 0px;
    margin: 0px 0 45px 0;
    text-align: center;
    font-size:32px;
}
#themezone .color05 h4{
    color:#079a3e;
}
#themezone .color06 h3{
    color:#006cb8;
    background-color:transparent;
    padding: 0px;
    margin: 0px 0 45px 0;
    text-align: center;
    font-size:32px;
}
    @media screen and (max-width: 767px){
        #themezone h3{
            font-size:26px !important;
        }
    }
#themezone .color06 h4{
    color:#006cb8;
}

#themezone .color00.bgblack{
    background:#000000;
    color:#fff;
}
#themezone .color00.bggrey{
    background:#e0e0e0;
}
#themezone .color00.bggrey h3{
    background-color:transparent;
    padding: 0px;
    margin: 0px 0 0px 0;
    text-align: center;
    font-size:32px;
}
#themezone .color00.bggrey li{
    margin-bottom:0;
}
#themezone .color00.bggrey .Image02 > div{
    background:#fff;
    padding:5px 15px 15px 15px;
    border:1px solid #aaa;
    border-radius: 20px;
}
#themezone .color00.bggrey .Image02 > div:last-child{
    margin:0 300px 2em 300px;
}
#themezone .color00.bggrey table td{
    background:transparent;
    border:0;
}
#themezone .gyoukaihatsu{
    display: inline-block;
    color:#fff;
    font-weight:bold;
    padding:2px 20px;
    margin:0 3px 5px 0;
    border-radius: 3px;
    font-size:13px;
    background:#7c509d;
}
#themezone .jitsuen{
    display: inline-block;
    color:#fff;
    font-weight:bold;
    padding:2px 20px;
    margin:0 3px 5px 0;
    border-radius: 3px;
    font-size:13px;
    background:#133d96;
}
#themezone .ZoneLinkList{
    margin-top:10px;
}
#themezone .ZoneLinkList li{
    margin-bottom:0;
    font-size:15px;
    line-height: 180%;
}
#themezone .PickUp{
    display: inline-block;
    width: 70px;
    height: 25px;
    background: #f54882;
    box-shadow: 0px 4px 4px -2px rgb(0 0 0 / 10%);
    color: #fff;
    font-size: 12px;
    margin-right:10px;
    margin-bottom:5px;
    padding: 0px 0 0 0px;
    border-radius: 3px;
    transform: skewX(-15deg);
    font-weight: bold;
    position: relative;
    top:-3px;
    text-align: center;
    line-height:25px;
}
#themezone .jitsuen{
    display: inline-block;
    width: 70px;
    height: 25px;
    background: #1d50a2;
    box-shadow: 0px 4px 4px -2px rgb(0 0 0 / 10%);
    color: #fff;
    font-size: 12px;
    margin-right:10px;
    margin-bottom:5px;
    padding: 0px 0 0 0px;
    border-radius: 3px;
    transform: skewX(-15deg);
    font-weight: bold;
    position: relative;
    top:-3px;
    text-align: center;
    line-height:25px;
}
#themezone .margin{
    display: inline-block;
    width: 70px;
    height: 25px;
    background: none;
    color: #fff;
    font-size: 12px;
    margin-right:10px;
    margin-bottom:5px;
    padding: 0px 0 0 0px;
    border-radius: 3px;
    transform: skewX(-15deg);
    font-weight: bold;
    position: relative;
    top:-3px;
    text-align: center;
    line-height:25px;
}
#themezone .CatLink{
    background:#f8f8f8;
    padding:15px 15px 10px 15px;
    border:1px solid #231815;
}
#themezone .CatLink > div{
    display:inline-block;
    background:#231815;
    color:#fff;
    font-weight:bold;
    padding:1px 30px;
}
#themezone .CatLink li{
    display:inline-block;
}
#themezone .CatLink li::after{
    content:"/";
    margin:0 10px;
}
#themezone .CatLink li:last-child::after{
    content:"";
    margin:0;
}
