@charset "UTF-8";



/*======================================================================================================================
========================================================================================================================

【contents.css】

各ページ用CSS

[01] 共通パーツ

[02] 記事一覧

[03] 詳細記事

[04] 研究主幹紹介ページ

[05] 経団連総合政策研究所について

[06] /utility

[ioniconsシート] 
https://ionicons.com/v2/cheatsheet.html

========================================================================================================================
======================================================================================================================*/




/* [01] 共通パーツ
-------------------------------------------------------------------------------------------------------- */

/* 枠
-------------------------------------- */
.mw1200 {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media screen and (max-width:1199px) {
    .mw1200 {
        padding: 0 15px;
    }
}


/* メインイメージ
-------------------------------------- */
.area_main_img {
    position: relative;
    background-color: #f3f3f3;
    display: block;
}
.area_main_img .bg {
    width: 60%;
    height: 350px;
    background: url(../../img/ttl_img_sample.jpg) no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
}

/* 各ページイメージ */
body#about .area_main_img .bg { background-image: url("../../about/img/img_main_about.jpg"); }
body#experts .area_main_img .bg { background-image: url(../../experts/img/img_main_experts.jpg); }
body#theme .area_main_img .bg { background-image: url(../../theme/img/img_main_theme.jpg); }
body#economy .area_main_img .bg { background-image: url(../../theme/img/img_main_economy.jpg); }
body#industry .area_main_img .bg { background-image: url(../../theme/img/img_main_industry.jpg); }
body#environment .area_main_img .bg { background-image: url(../../theme/img/img_main_environment.jpg); }
body#international .area_main_img .bg { background-image: url(../../theme/img/img_main_international.jpg); }
body#philosophy .area_main_img .bg { background-image: url(../../theme/img/img_main_philosophy.jpg); }
body#other .area_main_img .bg { background-image: url(../../theme/img/img_main_other.jpg); }
body#usa .area_main_img .bg { background-image: url(../../theme/img/img_main_usa.jpg); }
body#china .area_main_img .bg { background-image: url(../../theme/img/img_main_china.jpg); }
body#europe .area_main_img .bg { background-image: url(../../theme/img/img_main_europe.jpg); }
body#report .area_main_img .bg { background-image: url(../../theme/img/img_main_report.jpg); }
body#pocket .area_main_img .bg { background-image: url(../../theme/img/img_main_pocket.jpg); }
body#pocket_general .area_main_img .bg { background-image: url(../../theme/img/img_main_pocket_general.jpg); }
body#pocket_seminar .area_main_img .bg { background-image: url(../../theme/img/img_main_pocket_seminar.jpg); }
body#pocket_commentary .area_main_img .bg { background-image: url(../../theme/img/img_main_pocket_commentary.jpg); }
body#event .area_main_img .bg { background-image: url(../../theme/img/img_main_event.jpg); }
body#current .area_main_img .bg { background-image: url(../../theme/img/img_main_current.jpg); }
body#newsletter .area_main_img .bg { background-image: url(../../newsletter/img/img_main_newsletter.jpg); }
body#books .area_main_img .bg { background-image: url(../../books/img/img_main_books.jpg); }
body#utility .area_main_img .bg { background-image: url(../../utility/img/img_main_utility.jpg); }


.area_main_img .box_txt {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.area_main_img .box_txt .inner {
    max-width: 500px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 350px;
    display: flex;
    align-items: center;
}
.area_main_img .box_txt .inner h1 {
    font-size: 40px;
    color: #1f296a;
    font-weight: bold;
    display: inline-block;
    position: relative;
    left: 0;
}
.area_main_img .box_txt .inner h1:first-letter {
    color: #a72126;
}
.area_main_img .box_txt .inner h1 span { /* JSで見出しの先頭に21があった場合、spanで囲むよう設定 */
    color: #a72126;
}
.area_main_img .box_txt .inner h1:before {
  content: '';
  position: absolute;
  left: 50px;
  bottom: -10px; /*下線の上下位置調整*/
  display: inline-block;
  width: 96px; /*下線の幅*/
  height: 7px; /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
  background-color: #ffffff; /*下線の色*/
}



@media screen and (max-width: 1499px) and (min-width: 769px)  {
     .area_main_img .bg {
        width: 55%;
    }
    .area_main_img .box_txt .inner {
        width: 40%;
    }
    .area_main_img .box_txt .inner h1 {
        left: 15px;
    }
    #topicpath .inner {
        padding: 5px 15px 5px 0;
    }
}

@media screen and (max-width:768px) {
    .area_main_img .bg {
        width: 100%;
    }
    .area_main_img .box_txt .inner {
        max-width: none;
        width: 100%;
        padding: 0 20px 0 0;
        box-sizing: border-box;
    }
    .area_main_img .box_txt .inner h1 {
        font-size: 30px;
        left: 15px;
        color: #ffffff;
    }
    #topicpath .inner {
        padding: 5px 15px 5px 0;
    }
}


/* 大見出し
-------------------------------------- */
.ttl_first {
    color: #921b22;
    font-size: 30px;
    border-bottom: solid 3px #e7e9f6;
    padding-bottom: 5px;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.5;
}
.ttl_first:before {
    content:  '';
    width: 110px;
    height: 3px;
    background-color: #1f296a;
    display:  block;
    position:  absolute;
    left:  0;
    bottom: -3px;
}

@media screen and (max-width:768px) {
    .ttl_first {
        font-size: 22px;
    }
}


/* 中見出し
-------------------------------------- */
.ttl_second {
    font-size: 24px;
    line-height: 1.5;
    color: #333333;
    background-image: url(../img/img_ttl_second.png);
    background-repeat: no-repeat;
    background-position: top 5px left;
    padding: 0 0 0 30px;
    margin-bottom: 30px;
}

@media screen and (max-width:768px) {
    .ttl_second {
        font-size: 20px;
    }
}

/* 薄赤背景見出し
-------------------------------------- */
.ttl_third {
    font-size: 18px;
    line-height: 1.5;
    color: #921b22;
    background-color: #f1eced;
    font-weight: normal;
    padding: 5px 15px;
    margin-bottom: 30px;
}

@media screen and (max-width:768px) {
    .ttl_third {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* トップ大見出し
-------------------------------------- */
.ttl_l_line {
	position:relative;
    color: #921b22;
    margin-bottom: 45px;
}
.ttl_l_line h2 {
    font-size: 36px;
    padding: 0 0 0 22px;
    line-height: 1.4;
}
.ttl_l_line:before {
	position:absolute;
	left:0;
	content:"";
	display:inline-block;
	width:12px;
	min-height: 50px;
	background: 
	url(../img/ttl_l_line.png) no-repeat top center,
	url(../img/ttl_l_line.png) no-repeat bottom center,
	#921b22;
	background-size:contain;
}
.ttl_l_line h2 span {
    display: block;
    font-size: 16px;
    color: #616161;
    font-weight: normal;
}

@media screen and (max-width:768px) {
    .ttl_l_line h2 {
        font-size: 26px;
        padding: 6px 0 0 22px;
    }
}

/* 下線
-------------------------------------- */
.underline {
    background:linear-gradient(transparent 30%, #e4e2e2 60%);
}

/* リスト
-------------------------------------- */
ul.list_disc {
    list-style: none;
}
ul.list_disc li {
    background-image: url(../img/list_disc.png);
    background-repeat: no-repeat;
    background-position: center left 2px;
    padding-left: 20px;
}


/* 赤ボタン
-------------------------------------- */
a.btn_red_big {
    display: inline-block;
    height: 80px;
    color: #ffffff;
    background-color: #921b22;
    border: 1px solid #921b22;
    font-size: 20px;
    padding: 20px 60px 0 15px;
    background-position: center right 15px;
    background-image: url(../img/arrow_white.png);
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: auto;
}
a.btn_red_big:hover {
    background-color: #ffffff;
    color: #921b22;
    background-image: url("../img/arrow_red.png");
}

@media screen and (max-width: 1499px) and (min-width: 769px)  {

}

@media screen and (max-width:768px) {
    a.btn_red_big {
        padding: 20px 50px 0 15px;
        max-width: none;
        font-size: 14px;
        height: 65px;
        width: auto;
    }
}

/* 細い赤ボタン
-------------------------------------- */
a.btn_red_s {
    display: inline-block;
    height: 40px;
    color: #ffffff;
    background-color: #921b22;
    border: 1px solid #921b22;
    font-size: 18px;
    padding: 3px 60px 0 15px;
    background-position: center right 15px;
    background-image: url(../img/arrow_white.png);
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: auto;
}
a.btn_red_s:hover {
    background-color: #ffffff;
    color: #921b22;
    background-image: url("../img/arrow_red.png");
}
a.btn_red_s span {
    font-size: 14px;
}

@media screen and (max-width: 1499px) and (min-width: 769px)  {
}

@media screen and (max-width:768px) {
    a.btn_red_s {
        padding: 10px 50px 10px 15px;
        max-width: none;
        font-size: 14px;
        height: auto;
        width: auto;
    }
}

/* 細いリンクなし赤枠ボタン（研究主幹ページなどで、リンクなし状態のもの）
-------------------------------------- */
.btn_red_s_non {
    display: inline-block;
    height: 40px;
    color: #921b22;
    background-color: #ffffff;
    border: 1px solid #921b22;
    font-size: 18px;
    padding: 3px 15px 0 15px;
    width: auto;
}
.btn_red_s_non span {
    font-size: 14px;
}

@media screen and (max-width: 1499px) and (min-width: 769px)  {
}

@media screen and (max-width:768px) {
    .btn_red_s_non {
        padding: 10px 15px 10px 15px;
        max-width: none;
        font-size: 14px;
        height: auto;
        width: auto;
    }
}

/* もっと見るボタン
-------------------------------------- */
.btn_more {
    font-size: 18px;
    font-weight: bold;
    background-position: center right;
    background-image: url(../img/arrow_red.png);
    background-repeat: no-repeat;
    padding: 0 35px 0 0;
}

@media screen and (max-width: 1499px) and (min-width: 769px)  {
}

@media screen and (max-width:768px) {
    .btn_more {
        font-size: 16px;
    }
}

/* 細い白ボタン
-------------------------------------- */
a.btn_white_s {
    display: inline-block;
    height: 40px;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #921b22;
    font-size: 18px;
    padding: 3px 60px 0 15px;
    background-position: center right 15px;
    background-image: url("../img/arrow_red.png");
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: auto;
}
a.btn_white_s:hover {
    background-color: #921b22;
    color: #ffffff;
    background-image: url("../img/arrow_white.png");
}
a.btn_white_s span {
    font-size: 14px;
}

@media screen and (max-width: 1499px) and (min-width: 769px)  {

}

@media screen and (max-width:768px) {
    a.btn_white_s {
        padding: 10px 50px 10px 15px;
        max-width: none;
        font-size: 14px;
        height: auto;
        width: auto;
    }
}

/* 記事詳細3つ横並びボタン
-------------------------------------- */
.area_article_btn {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    position: relative;
    margin-right: -5px;
}
.area_article_btn a.btn_red_big {
    display: block;
    width : calc(33.33333% - 5px);
    width : -webkit-calc(100% / 3 - 5px);
    width : calc(100% / 3 - 5px);
    margin-right: 5px;
    margin-bottom: 5px;
}
/*.area_article_btn a.btn_red_big:first-child {
    margin-right: 5px;
}
.area_article_btn a.btn_red_big:last-child {
    margin-left: 5px;
}*/

@media screen and (max-width: 1499px) and (min-width: 769px)  {
    .area_article_btn a.btn_red_big span {
        background-size: 25px;
        font-size: 16px;
        padding: 0 0 0 40px;
    }
    .area_article_btn a.btn_report span {
        background-size: 22px;
    }
}

@media screen and (max-width:768px) {
    .area_article_btn {
        display: block;
        width: 100%;
    }
    .area_article_btn a.btn_red_big {
        width : 100%;
        margin-bottom: 10px;
    }
    .area_article_btn a.btn_red_big:first-child {
        margin-right: 0;
    }
    .area_article_btn a.btn_red_big:last-child {
        margin-left: 0;
    }
}


/* pdfボタン
-------------------------------------- */
.btn_pdf span {
    display: inline-block;
    background-position: center left;
    background-image: url("../img/icon_pdf.png");
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    padding: 0 0 0 45px;
}
.btn_pdf:hover span {
    background-image: url("../img/icon_pdf_hover.png");
}

@media screen and (max-width:768px) {
    .btn_pdf span {
        background-size: contain;
    }
}

/* 関連新書ページボタン
-------------------------------------- */
.btn_report span {
    display: inline-block;
    background-position: center left;
    background-image: url("../img/icon_report.png");
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    padding: 0 0 0 45px;
}
.btn_report:hover span {
    background-image: url("../img/icon_report_hover.png");
}

@media screen and (max-width:768px) {
    .btn_report span {
        background-size: contain;
    }
}

/* 関連報告書ページボタン
-------------------------------------- */
.btn_paperback span {
    display: inline-block;
    background-position: center left;
    background-image: url("../img/icon_paperback.png");
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    padding: 0 0 0 50px;
    background-size: contain;
}
.btn_paperback:hover span {
    background-image: url("../img/icon_paperback_hover.png");
}

@media screen and (max-width:768px) {

}

/* 下線リンク
-------------------------------------- */
a.link_underline {
    border-bottom: 1px solid;
}
a.link_underline:hover {
    border-bottom: none;
}

/* 研究分野ボタン
-------------------------------------- */
.list_theme_category {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.list_theme_category .inner_list_theme_category {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-right: -25px;
    width: 100%;
}
.list_theme_category .box {
    width: calc(33.33333% - 25px);
    margin-right: 25px;
}
.list_theme_category .box a {
    display: block;
    width: 100%;
    padding: 15px 15px 10px;
    border: 1px solid #921b22;
    margin-bottom: 20px;
    background-color: #ffffff;
    transition: 0.3s;
}
.list_theme_category .box a img {
    transition: 0.3s;
}
.list_theme_category .box a:hover img {
    opacity: 0.7;
}
.list_theme_category .box .img {
    margin-bottom: 10px;
}
.list_theme_category .box .txt {
    background-position: center right;
    background-image: url(../img/arrow_red.png);
    background-repeat: no-repeat;
    transition: all .3s;
}
.no_thumbnail .list_theme_category .box a {
    padding: 24px 15px 22px;
}
.no_thumbnail .list_theme_category .box a:hover {
    background-color: #921b22;
    color: #ffffff;
}
.no_thumbnail .list_theme_category .box a:hover .txt {
    background-image: url(../img/arrow_white.png);
}

@media screen and (max-width: 1499px) and (min-width: 769px)  {

}

@media screen and (max-width: 1199px) {
    .list_theme_category {
        padding: 0 15px;
    }
}

@media screen and (max-width: 768px) {
    .list_theme_category .inner_list_theme_category {
        margin-right: -15px;
    }
    .list_theme_category .box {
        width: calc(50% - 15px);
        margin-right: 15px;
    }
    .list_theme_category .box a {
        padding: 10px 10px 5px;
    }
    .list_theme_category .box .txt {
        font-size: 3vw;
        background-size: 17px;
    }
    .no_thumbnail .list_theme_category .box a {
        padding: 10px;
    }
}

/* 下層ページ下部同カテゴリーメニュー
-------------------------------------- */
.footer_category {
    background-color: #f6f6f6;
    padding-bottom: 70px;
}
.ttl_f_category{
    position:relative;
    width:100%;
    height:80px;
    background:#921b22;
    padding:10px;
    text-align:center;
    color:#FFFFFF;
    font-size:30px;
    font-weight:bold;
    margin-bottom: 50px;
}
.ttl_f_category:after{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(0, 153, 255, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:10px;
    border-right-width:10px;
    margin-left: -10px;
    border-top-color:#921b22;
    top:100%;
    left:50%;
}

@media screen and (max-width: 1499px) and (min-width: 769px)  {
    .ttl_f_category{
        font-size:24px;
        padding: 18px 0 0 0;
    }
}

@media screen and (max-width:768px) {
    .ttl_f_category{
        font-size:20px;
        padding: 20px 0 0 0;
        margin-bottom: 30px;
    }
}

/* ページ内リンク 位置調整
-------------------------------------- */
.link_adjust {
    content:'';
    display: block;
    padding-top: 140px;
    margin-top: -140px;
}
@media screen and (max-width:768px){
    .link_adjust {
        padding-top: 90px;
        margin-top: -90px;
    }
}






/* [02] 記事一覧
-------------------------------------------------------------------------------------------------------- */
.area_article_list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-right: -25px;
}
.area_article_list .box {
    width: calc(25% - 25px);
    margin-right: 25px;
    margin-bottom: 45px;
}
body#books .area_article_list .box {
    width: calc(20% - 25px);
    margin-right: 25px;
    margin-bottom: 45px;
}
.area_article_list .box .img {
    margin-bottom: 8px;
}
.area_article_list .box .img img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    border: solid 1px #d0d0d0;
}
body#books .area_article_list .box .img img {
    height: 360px;
}
body#newsletter .area_article_list .box .img img {
    height: 390px;
}

/*縦長のサムネ画像に対応（ニュースレター・出版） */
body .area_article_list .box .img img.top-align {
    object-fit: cover;
	object-position: top;
	width: 100%;
}

.area_article_list .box a img {
    transition: 0.3s;
}
.area_article_list .box a:hover img {
    opacity: 0.7;
}

/* 記事カテゴリーラベル */
.area_label {
    line-height: 1;
    margin-bottom: 5px;
}
.area_label a,
.area_label div {
    border: 1px solid #929292;
    font-size: 12px;
    padding: 2px 2px 3px 2px;
    display: inline-block;
    margin: 0 5px 3px 0;
    line-height: 1;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.area_label a.label_line,
.area_label div.label_line {
    color: #929292;
}
.area_label a.label_gray,
.area_label div.label_gray {
    background-color: #929292;
    color: #ffffff;
}
.area_label a.label_line:hover {
    background-color: #DEDEDE;
}
.area_label a.label_gray:hover {
    background-color: #DEDEDE;
    color: #929292;
}

/*241003 ラベル変更追加対応*/
.area_label.top a,
.area_label.top div {
    border: 1px solid #921b22;
    font-size: 15px;
    padding: 6px 8px 7px 8px;
    display: inline-block;
    margin: 0 5px 8px 0;
    line-height: 1;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.area_label.top a.label_line,
.area_label.top div.label_line {
    color: #921b22;
}
.area_label.top a.label_gray,
.area_label.top div.label_gray {
    background-color: #921b22;
    color: #ffffff;
}
.area_label.top a.label_line:hover {
    background-color: #DEDEDE;
}
.area_label.top a.label_gray:hover {
    background-color: #DEDEDE;
    color: #921b22;
}



/* 記事日付 */
.date {
    color: #929292;
    margin-right: 10px;
}


@media screen and (max-width: 1499px) and (min-width: 769px)  {

}

@media screen and (max-width:1199px) {   
    .area_article_list {
        margin-right: -15px;
    }
    .area_article_list .box {
        width: calc(25% - 15px);
        margin-right: 15px;
        margin-bottom: 45px;
    }
    body#books .area_article_list .box {
        width: calc(20% - 15px);
        margin-right: 15px;
        margin-bottom: 45px;
    }
    .area_article_list .box .img img {
        height: calc(50vw * 0.25);
    }
    body#books .area_article_list .box .img img {
        height: calc(50vw * 0.58);
    }
    body#newsletter .area_article_list .box .img img {
        height: calc(50vw * 0.6);
    }
}

@media screen and (max-width:768px) {   
    .area_article_list {
        margin-right: -15px;
    }
    .area_article_list .box {
        width: calc(50% - 15px);
        margin-right: 15px;
        margin-bottom: 30px;
    }
    body#books .area_article_list .box {
        width: calc(50% - 15px);
        margin-right: 15px;
        margin-bottom: 30px;
    }
    .area_article_list .box .img img {
        width: 100%;
        height: calc(50vw * 0.5);
    
    }
    body#newsletter .area_article_list .box .img img,
    body#books .area_article_list .box .img img{
        width: 100%;
        height: calc(50vw * 1.3);
    
    }
}

/* ページネーション
-------------------------------------- */
.area_pagebute {
    text-align: center;
    width: fit-content;
    margin: 0 auto 30px;
    font-size: 20px;
    color: #929292;
    border: 1px solid #d0d0d0;
    padding: 5px 13px;
}
.area_pagebute span.current_page,
.area_pagebute a {
    display: inline-block;
    border-right: 1px solid #d0d0d0;
    padding : 0 15px;
}
.area_pagebute span.current_page {
    font-weight: bold;
    color: #333333;
}
.area_pagebute a {
    color: #929292;
    font-weight: normal;
}
.area_pagebute a:hover {
    color: #921b22;
}
.area_pagebute a.link_next,
.area_pagebute a.link_prev {
    font-size: 14px;
    vertical-align: top;
    padding-top: 5px;
}
.area_pagebute a.link_next {
    background-image: url("../img/link_next.png");
    background-repeat: no-repeat;
    background-position: top 13px right;
    padding-right: 15px;
    border: none;
}
.area_pagebute a.link_next:hover {
    background-image: url("../img/link_next_hover.png");
}
.area_pagebute a.link_prev {
    background-image: url("../img/link_prev.png");
    background-repeat: no-repeat;
    background-position: top 13px left;
    padding-left: 15px;
}
.area_pagebute a.link_prev:hover {
    background-image: url("../img/link_prev_hover.png");
    background-repeat: no-repeat;
    background-position: top 13px left;
    padding-left: 15px;
}


/* 記事検索エリア
-------------------------------------- */

/* ボックス */
.box_search_entry {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
    padding: 10px 40px 10px 40px;
    background: #f1eced;
}
.box_search_entry .yearly {
    width: 50%;
}
.box_search_entry .ttl {
    font-size: 18px;
    color: #921b22;
    line-height: 1.1;
    width: auto;
    margin-right: 40px;
    display: flex;
    flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
    .box_search_entry {
        display: block;
        padding: 20px 20px 10px 20px;
    }
    .box_search_entry .yearly {
        padding: 0px 0px 0px 0px;
        width: auto;
    }
    .box_search_entry .ttl {
        font-size: 16px;
        line-height: 1.1;
        margin-bottom: 15px;
        width: 100%;
    }
}


/* 年別プルダウンメニュー */
.box_search_entry .yearly form {
    width: 100%;
    margin: 1em auto;
    position: relative;
    line-height: 1;
}
.box_search_entry .yearly form select {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 53px;
    padding: 0.7em 1em;
    font-size: 1em;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    background:#fff;
    margin-top: -1px;
}
.box_search_entry .yearly form::after {
  content:"";
  display:block;
  width:10px;
  height:10px;
  position:absolute;
  right:5%;
  top:35%;
  border-bottom:#333 2px solid;
  border-right:#333 2px solid;
  transform:rotate(45deg)translateY(-30%);

}






/* 旧サイトの記事へのリンク
-------------------------------------- */
.article_list_bottom_link {
    border-top: 1px solid #d0d0d0;
    padding: 5px 0 0 0;
}
.article_list_bottom_link a {
    background-image: url("../img/article_list_bottom_link.png");
    background-repeat: no-repeat;
    background-position: center left;
    color: #b7b7b7;
    font-size: 14px;
    padding-left: 15px;
}
.article_list_bottom_link a:hover {
    color: #921b22;
}






/* [03] 詳細記事
-------------------------------------------------------------------------------------------------------- */

/* 記事中画像位置指定
-------------------------------------- */
.detail_area {
    overflow: hidden;
}
.detail_img_area {
	width: 470px;
    margin: 0px 0px 60px 30px;
    float: right;
}
.detail_img_area img {
	margin: 0px 0px 10px 0px;
    width: 100%;
    height: auto;
}
.detail_img_area a {
	margin: 0px 0px 10px 0px;
	display: block;
    position: relative;
}
.detail_img_area .cap  {
	color:     #666;
	font-size: 14px;
    line-height: 1.5;
	margin:    -5px 0px 30px 0px;
    text-align: center;
}
.detail_img_area a::before {
	content: "\f2f5";
	font-family: ionicons;
    font-size: 30px;
    line-height: 1;
    color: #001146;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

@media screen and (max-width: 768px) {
    .detail_img_area {
        width: auto;
        margin: 0px 0px 30px 0px;
        float: none;
    }
}





/* 旧サイトの記事へのリンク
-------------------------------------- */
.article_bottom_link {
    border-top: 1px solid #921b22;
    padding: 5px 0 0 0;
}
.article_bottom_link a {
    background-image: url("../img/article_bottom_link.png");
    background-repeat: no-repeat;
    background-position: center left;
    color: #921b22;
    font-size: 14px;
    padding-left: 15px;
    font-weight: bold;
}
.article_bottom_link a:hover {
    color: #b7b7b7;
}

@media screen and (max-width: 1499px) and (min-width: 769px)  {
}

@media screen and (max-width:768px) {   

}





/* Youtube埋め込み設定
-------------------------------------- */
.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}





/* 最新の記事一覧(研究分野) 241003
-------------------------------------- */
.footer_category.area_latest {
	padding: 0 0 40px;
}
.area_latest .ttl_f_category {
    position: relative;
    width: 100%;
    height: 80px;
    background: #202a6a;
    padding: 10px;
    text-align: center;
    color: #FFFFFF;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 50px;
	
}
.area_latest .ttl_f_category:after{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(0, 153, 255, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:10px;
    border-right-width:10px;
    margin-left: -10px;
    border-top-color:#1f296a;
    top:100%;
    left:50%;
}
.area_latest .box .title {
    font-size: 14px;
	
}
.area_latest .area_article_list {
    max-width: 1225px;
	margin:  0 auto;
	
}
@media screen and (max-width: 1499px) and (min-width: 769px) {
    .area_latest .ttl_f_category {
        font-size: 24px;
        padding: 18px 0 0 0;
    }
}
@media screen and (max-width: 1199px) {
    .area_latest .area_article_list {
        padding: 0 15px;
    }
}
	@media screen and (max-width: 768px) {
.area_latest .ttl_f_category {
		font-size: 20px;
		padding: 20px 0 0 0;
		margin-bottom: 30px;	
	}
}









/* [04] 研究主幹紹介ページ
-------------------------------------------------------------------------------------------------------- */

/* 研究主幹紹介リンク
-------------------------------------- */
.area_link_experts {
}
.box_experts {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.area_link_experts .box_experts:last-child {
    margin-bottom: 90px;
}

.box_experts .position {
    margin: 0 30px 0 0;
}
.box_experts .link_experts {
    padding: 0 0 0 30px;
    border-left: 1px solid #ccbfc0;
}
.box_experts .position span {
    background-color: #f1eced;
    color: #921b22;
/*
    height: 40px;
    width: 130px;
    width: 162px;
*/
    width: 180px;
    display: inline-block;
    text-align: center;
    padding: 5px 0 0 0;
}
.box_experts .btn_red_s,
.box_experts .btn_red_s_non {
    margin: 0 10px 10px 0;
}

@media screen and (max-width: 1499px) and (min-width: 769px)  {
}

@media screen and (max-width:768px) {   
    .box_experts .position span {
        padding: 10px 0 12px 0;
        width: 75px;
    }
    .box_experts .position {
        margin: 0 15px 0 0;
        font-size: 12px;
        font-weight: bold;
    }
    .box_experts .link_experts {
        padding: 0 0 0 15px;
    }
}


/* 研究主幹紹介詳細ページ
-------------------------------------- */
.area_experts_profile {
    position: relative;
    border: solid 1px #333333;
    padding: 105px 45px 45px 45px;
    margin-bottom: 10px;
}
.area_experts_profile .position {
    position: absolute;
    top: 35px;
    left: -20px;
}
.area_experts_profile .position span {
    background-color: #921b22;
    color: #ffffff;
    display: inline-block;
    padding: 1px 30px 2px;
}
.area_experts_deta {
    border-bottom: solid #ccbfc0 1px;
    padding: 0 0 45px 0;
    margin-bottom: 45px;
    display: flex;
}
.area_experts_deta .area_txt {
    margin-left: 50px;
}
.area_experts_deta .area_txt h2.name {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1;
}
.area_experts_deta .area_txt h2.name span {
    font-size: 18px;
    font-weight: normal;
}
.table_experts_profile {
    text-align: left;
}
.table_experts_profile tr td,
.table_experts_profile tr th {
    font-weight: normal;
}
.inner_experts_profile_content {
    padding: 0 15px;
}
.bottom_link a {
    background-image: url(../img/article_bottom_link.png);
    background-repeat: no-repeat;
    background-position: center left;
    color: #921b22;
    font-size: 14px;
    padding-left: 15px;
    font-weight: bold;
}

@media screen and (max-width: 1499px) and (min-width: 769px)  {
}

@media screen and (max-width:768px) {
    .area_experts_deta {
        border-bottom: solid #ccbfc0 1px;
        padding: 0 0 30px 0;
        margin-bottom: 30px;
        display: block;
    }
    .area_experts_deta .area_img {
        text-align: center;
        margin-bottom: 30px;
    }
    .area_experts_deta .area_txt {
        margin-left: 0;
    }
    .area_experts_deta .area_txt h2.name {
        text-align: center;
        font-size: 30px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    .area_experts_deta .area_txt h2.name span {
        display: block;
    }
    .area_experts_profile {
        padding: 60px 15px 30px 15px;
    }
    .area_experts_profile .position {
        top: 15px;
    }
}





/* [05] 経団連総合政策研究所について
-------------------------------------------------------------------------------------------------------- */

/* 歴代会長・所長ページ
-------------------------------------- */
.table_history {
    width: 100%;
}
.table_history table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    text-align: center;
}
.table_history table th {
    background-color: #921b22;
    color: #ffffff;
    font-weight: 300;
    border-right: 3px solid #ffffff;
    padding: 25px 0;
}
.table_history table th span.example {
	font-size: 0.6em;
	vertical-align: top;
}
.table_history table td {
    padding: 20px 0;
    border-right: 3px solid #ffffff;
}
.table_history table th:last-child,
.table_history table td:last-child {
    border-right: none;
}
.table_history table td.td18_21 {
    text-align: left;
}
.table_history table td.td18_21 div {
    width: 475px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.table_history table td.td18_21 div span {
    display: inline-block;
    background-color: #ffffff;
    color: #929292;
    font-size: 12px;
    margin-right: 15px;
    padding: 0 7px;
}
.table_history table tbody tr:nth-child(odd) {
    background-color: #f7f3f4;
}
.table_history table tbody tr:nth-child(even) {
    background-color: #f1eced;
}

@media screen and (max-width:768px) {
    .table_history {
        overflow-x: scroll;
    }
    .table_history table td.td18_21 div {
        width: 410px;
    }
    .table_history table {
        width: 750px;
    }
}

/* アクセス・お問い合わせページ
-------------------------------------- */
.area_map iframe {
    width: 100%;
    height: 400px;
}
.area_access .box_access {
    width: calc((100% - 50px) / 2);
}
.area_contact {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    position: relative;
    margin-right: -15px;
}
.area_contact a {
    display: block;
    width: calc(50% - 15px);
    width: -webkit-calc(100% / 2 - 15px);
    width: calc(100% / 2 - 15px);
    margin-right: 15px;
    margin-bottom: 5px;
    border: 1px solid #921b22;
    text-align: center;
    background: #ffffff;
    transition: all .3s;
}
.area_contact a:hover {
    border: 1px solid #921b22;
    background: #921b22;
}
.area_contact a span {
    display: inline-block;
    background-position: center left;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-size: 20px;
    color: #921b22;
    font-weight: bold;
}
.area_contact a:hover span {
    color: #ffffff;
}
.btn_mail span {
    background-image: url(../img/mail.png);
    padding: 25px 0 23px 60px;
}
.btn_tell span {
    background-image: url(../img/tell.png);
    padding: 25px 0 23px 55px;
}

@media screen and (max-width:768px) {
    .area_access .box_access {
        width: 100%;
    }
    .area_map iframe {
        margin-bottom: 15px;
    }
    .area_contact {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    .area_contact a {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media screen and (max-width:500px) {
    .area_contact a span {
        font-size: 4.5vw;
        background-size: 30px;
        padding: 25px 0 23px 40px;
    }
}


/* パンフレットページ
-------------------------------------- */
.box_pamphlet {
    display: flex;
    justify-content: center;
}
.box_pamphlet .box {
    margin: 0 30px;
    width: 400px;
}
.box_pamphlet .box .img {
    margin: 0 0 20px 0;
}

@media screen and (max-width:768px) {
    .box_pamphlet {
        display: block;
    }
    .box_pamphlet .box {
        margin: 0 0 50px 0;
        width: auto;
    }
    .box_pamphlet .box .img {
        margin: 0 0 10px 0;
    }
}





/* [06] /utility
-------------------------------------------------------------------------------------------------------- */
body.utility .area_main_img .bg {
    background: url(../../img/ttl_img_utility.jpg) no-repeat;
    background-size: cover;
}

@media screen and (max-width:768px) {
}

/* サイトマップページ
-------------------------------------- */
.inner_area_sitemap {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-right: -25px;
}
.inner_area_sitemap .box {
    width: calc(33.33333% - 25px);
    margin-right: 25px;
    margin-bottom: 45px;
}
.inner_area_sitemap .box .inner a {
    display: block;
    color: #921b22;
    border-bottom: solid 1px #ffffff;
}
.inner_area_sitemap .box .inner a:hover {
    border-bottom: solid 1px #921b22;
}
a.btn_white {
    display: inline-block;
    color: #921b22;
    background-color: #ffffff;
    border: 1px solid #921b22;
    font-size: 18px;
    padding: 5px 60px 5px 15px;
    background-position: center right 15px;
    background-image: url(../img/arrow_red.png);
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: 100%;
    margin-bottom: 15px;
}
a.btn_white:hover {
    background-color: #921b22;
    color: #ffffff;
    background-image: url("../img/arrow_white.png");
}

@media screen and (max-width:768px) {
    .inner_area_sitemap {
        display: block;
        margin-right: 0;
    }
    .inner_area_sitemap .box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}


