@charset "UTF-8";



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

【frame.css】

全体フレーム・ヘッダー・フッター用

[01] フレーム全体
[02] ヘッダー
[03] グローバルナビゲーション
[04] メインタイトル
[05] パンくずリスト
[06] コンテンツエリア （#contents #main）
[07] ページ下　最新記事エリア・他のカテゴリーエリア
[08] フッターメニュー
[09] フッターナビゲーション
[10] フッター
[11] SNSボタン

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

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



/* [01] フレーム全体
-------------------------------------------------------------------------------------------------------- */
body {
	margin:         0px 0px 0px 0px;
	padding:        0px 0px 0px 0px;
}
.bg_gray {
    background-color: #f4f4f4;
}

@media screen and (max-width:768px) {
    body {
        min-width: 300px; /* 背景が消える問題回避のmin-width解除 */
    }
}



/* 記事ページ　背景ロゴ
-------------------------------------- */
body.bg_logo {
	background: url(/pri/english/common/img/bg_logo.png) no-repeat;
	background-attachment: fixed;
	background-position: right 10px bottom 20px;
}


@media screen and (max-width:768px) {
    body.bg_logo {
        background: none; /* PC用の背景画像削除 */
    }
    body.bg_logo #main::after { /*SP用の画像表示・iOS向け対応 */
	content: url(/pri/english/common/img/bg_logo_sp.png);
	position: fixed;
	bottom: 5px;
	right: 5px;
	z-index: -100;
    }
}





/* [02] ヘッダー
-------------------------------------------------------------------------------------------------------- */

/* 全体枠
-------------------------------------- */
#header {
	background: #ffffff;
    margin: 0;
    padding: 0;
    z-index: 1000;
    position: fixed;
    top: 0;
    width: 100%;
}
@media screen and (max-width:768px) {
    #header {
        margin: 0;
        padding: 0;
        position: sticky;
        position: -webkit-sticky;
        top: 0;
        /*z-index: 100;*/
    }
}



/* ユーティリティナビ
-------------------------------------- */
#header #u_area {
    margin: 0;
    padding: 0;
}
#header #u_area #u_inner {
    width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 0px 0 0px 0;
    position: relative;
}

@media screen and (max-width:768px) {
    #header #u_area {
/*        display: none;*/
    }
}


/* ナビ */
#header #u_area #u_inner .u_navi {
	width: 230px;
    height: 82px;
    float: right;
	margin: 0 auto;
	padding: 0px 0 0px 0;
    font-size: 15px;
    position: relative;
}
#header #u_area #u_inner .u_navi ul.navi {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 17px 87px 5px 0;
}
#header #u_area #u_inner .u_navi ul.navi li {
    margin-right: 17px;
    padding: 12px 0 0 0;
}
#header #u_area #u_inner .u_navi ul.navi li.contact {
    margin-right: 71px;
    margin-left: 12px;
    padding: 5px 0 0 0;
}
#header #u_area #u_inner .u_navi ul.navi .lang {
    color: #929292;
}
#header #u_area #u_inner .u_navi ul.navi .lang .jp {
    color: #929292;
}
#header #u_area #u_inner .u_navi ul.navi .lang .jp:hover {
    color: #616161;
    text-decoration: underline;
}
#header #u_area #u_inner .u_navi ul.navi .lang .en {
    color: #616161;
    text-decoration: underline;
}


#header #u_area #u_inner .u_navi ul.navi li a,
#header #u_area #u_inner .u_navi ul.navi li a:visited {
    text-decoration: none;
    color: #616161;
    padding-bottom: 3px;
    text-decoration: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}
#header #u_area #u_inner .u_navi ul.navi li a:hover {
    text-decoration: none;
    color: #921b22;
}

@media screen and (max-width: 1091px) and (min-width: 769px)  {
    #header #u_area #u_inner .u_navi {
        width: 30%;
    }
    #header #u_area #u_inner .u_navi ul.navi li {
        margin-right: 10px;
        padding: 12px 0 0 0;
        font-size: 1.4vw;
    }
}


/* ハンバーガーメニュー */
nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    overflow: auto;
    background: #921b22;
    color: #ffffff;
    text-align: left;
    transform: translateX(-100%);
    transition: all 0.6s;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}
nav.globalMenuSp.active {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    flex-wrap: wrap;
}
nav.globalMenuSp ul.box {
    width: 28%;
    height: 500px;
}
nav.globalMenuSp .lang {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #c9bcbd;
}
nav.globalMenuSp .lang .jp {
    color: #c9bcbd;
}
nav.globalMenuSp .lang .jp:hover {
    color: #FFFFFF;
    text-decoration: underline;
}
nav.globalMenuSp .lang .en {
    color: #FFFFFF;
    text-decoration: underline;
}
nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
}
/* 最後は点線のラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
nav.globalMenuSp ul li div.menu_primary {
    font-size: 20px;
    font-weight: bold;
	position: relative;
	display: table-cell;
	padding-left: 40px;
}
nav.globalMenuSp ul li div.menu_primary:before {
	position: absolute;
	content: '';
	top: calc(50% - 2px);
	width: 30px;
	left: 0;
	height: 4px;
	border-top: solid 4px #ffffff;
}
nav.globalMenuSp ul li a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
}
nav.globalMenuSp ul li a:hover {
    color: #c9bcbd;
}
nav.globalMenuSp ul li ul li {
    font-size: 16px;
    font-weight: bold;
    padding: 0 0 0 50px;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateX(0%);
}
/* メニューだけをスクロールさせる工夫 */
.overflowHidden {
    overflow: hidden;
}
.navToggle {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
/*    width: 62px;
    height: 62px;*/
    width: 82px;	
    height: 82px;
    cursor: pointer;
    z-index: 3;
    background: #921b22;
    text-align: left;
}
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 47px;
    border-bottom: solid 2px #ffffff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 17px;
}
.navToggle span:nth-child(1) {
    top: 29px;
}
.navToggle span:nth-child(2) {
    top: 40px;
}
.navToggle span:nth-child(3) {
    top: 50px;
}
.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 40px;
    left: 18px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 40px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 18px;
}

@media screen and (max-width:768px) {
    nav.globalMenuSp.active {
        display: block;
        padding: 20px 15px 15px
    }
    nav.globalMenuSp ul.box {
        width: 100%;
        height: auto;
    }
    nav.globalMenuSp .lang {
        font-size: 16px;
        margin-bottom: 30px;
    }
    nav.globalMenuSp ul li div.menu_primary {
        font-size: 16px;
    }
    nav.globalMenuSp ul li ul li {
        font-size: 14px;
        font-weight: normal;
        padding: 0 0 10px 30px;
    }
    nav.globalMenuSp ul li ul li:first-child {
        padding: 10px 0 10px 30px;
    }
    .navToggle {	
        width: 70px;	
        height: 70px;	
    }	
    .navToggle span {	
        width: 37px;	
    }	
    .navToggle span:nth-child(1) {	
        top: 24px;	
    }	
    .navToggle span:nth-child(2) {	
        top: 35px;	
    }	
    .navToggle span:nth-child(3) {	
        top: 45px;	
    }	
    .navToggle span:nth-child(4) {	
        top: 34px;	
    }

}

/* ハンバーガーメニュー検索窓 */
nav.globalMenuSp li.search_Hamburger {
    width: 300px;
    background: #294b6f;
    display: block;
    position: relative;
}
nav.globalMenuSp li.search_Hamburger input[type="text"] {
    height: 41px;
    display: block;
    border: none;
    outline: none;
    color: #555;
    padding: 3px;
    padding-right: 0px;
    width: 100%;
    position: static;
    background: #FFF;
}
nav.globalMenuSp li.search_Hamburger input[type="text"]:focus:hover {
    border-bottom: 1px solid #BBB;
}
nav.globalMenuSp li.search_Hamburger input[type="text"]:focus {
    width: 80%;
    z-index: 1;
    border: 1px solid #294b6f;
    cursor: text;
    background: #FFF;
}
nav.globalMenuSp li.search_Hamburger input[type="submit"] {/*アイコン部分*/
    height: 41px;
    width: 42px;
    padding: 6px 7px;
    display: block;
    color:red;
    float: right;
    background: url("../img/icon_search_hamburger.png") center center no-repeat #000000;
    background-size: 60%;
    text-indent: -10000px;
    border: solid 1px #ffffff;;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
    transition: opacity .4s ease;
}
@media screen and (max-width: 1499px) and (min-width: 769px)  {
 
}



/* 検索窓 */
#header #u_area #u_inner .u_navi ul.navi li.search {
    background: #ffffff;
    display: block;
    position: absolute;
    width: 35px;
    height: 82px;
    overflow: hidden;
    border: 1px solid #ffffff;
    top: 0;
    right: 150px;
    transition: all 1s ease;
    padding: 0 0 0 0;
    margin-right: 12px;
}
#header #u_area #u_inner .u_navi ul.navi li.search.open_search {
    width: 350px;
    border: 1px solid #333333;
    transition: all 1s ease;
}
.search_btn {
    height: 82px;
    width: 35px;
    padding: 22px 0 28px;
    display: inline-block;
    color: red;
    float: right;
    background: url(../img/icon_search.png) center 29px no-repeat;
    background-size: auto;
    text-indent: -10000px;
    border: none;
    position: absolute;
    top: 0;
    right: 5px;
    z-index: 2;
    cursor: pointer;
    transition: opacity .4s ease;
}
.gsc-control {
    position: absolute;
    right: 0;
}
li.search .gsc-clear-button {
    display: none;
}
li.search .gsc-search-button-v2 {
    border-color: #ffffff;
    background-color: #ffffff;
    padding: 0;
}
#___gcse_0 {
    display: none;
    transition: opacity .4s ease;
}
#header #u_area #u_inner .u_navi ul.navi li.search.open_search #___gcse_0 {
    display: block;
    transition: opacity .4s ease;
}
.placeholder {
    display: none;
    transition: opacity 1s ease;
    position: absolute;
    font-size: 11px;
    color: #b9b9b9;
    top: 5px;
    left: 10px;
}
#header #u_area #u_inner .u_navi ul.navi li.search.open_search .placeholder {
    display: block;
    transition: opacity 1s ease;
}
#header #u_area #u_inner .u_navi ul.navi li.search.open_search .gsc-input-box {
    border: none;
}
#header #u_area #u_inner .u_navi ul.navi li.search input[type="text"] {
    height: 2em!important;
    font-size: 16px;
    display: inline-block;
    font-weight: 100;
    border: none;
    outline: none;
    color: #555;
    padding: 3px 3px 3px 3px!important;
    background: none;
    background-image: none!important;
    background-color: #ECECEC!important;
    z-index: 3;
    transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
    cursor: pointer;
}
#header #u_area #u_inner .u_navi ul.navi li.search .gsc-control-cse {
    padding: 18px 5px 5px 0px;
}
#header #u_area #u_inner .u_navi ul.navi li.search input[type="text"]:focus:hover {
    border-bottom: 1px solid #BBB;
}

#header #u_area #u_inner .u_navi ul.navi li.search input[type="text"]:focus {
    width: 350px;
    z-index: 1;
    border: 1px solid #294b6f;
    cursor: text;
    background-color: #ECECEC!important;
}
#header #u_area #u_inner .u_navi ul.navi li.search input[type="submit"] {/*アイコン部分*/
    height: 62px;
    width: 21px;
    padding: 22px 20px 28px;
    display: inline-block;
    color:red;
    float: right;
    background: url("../img/icon_search.png") center 20px no-repeat;
    background-size: auto;
    text-indent: -10000px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
    transition: opacity .4s ease;
}
#header #u_area #u_inner .u_navi ul.navi li.search input[type="submit"]:hover {
    opacity: 0.8;
}
.search_Hamburger .gsc-control-cse {
    padding: 0;
    border: none;
}
.search_Hamburger form.gsc-search-box {
    font-size: 13px;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0px;
    margin-left: 0;
    width: 100%;
}
.search_Hamburger table.gsc-search-box {
    border-style: none;
    border-width: 0;
    border-spacing: 0 0;
    width: 100%;
    margin-bottom: 0;
}
.search_Hamburger .gsc-search-button-v2 {
    height: 41px;
    width: 42px;
    padding: 6px 7px;
    display: block;
    color: red;
    float: right;
    background: url(../img/icon_search_hamburger.png) center center no-repeat #000000;
    background-size: 60%;
    text-indent: -10000px;
    border: solid 1px #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
}
.search_Hamburger .gsc-search-button-v2:hover {
    height: 41px;
    width: 42px;
    padding: 6px 7px;
    display: block;
    color: red;
    float: right;
    background: url(../img/icon_search_hamburger.png) center center no-repeat #000000;
    background-size: 60%;
    text-indent: -10000px;
    border: solid 1px #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
}
.search_Hamburger table.gsc-search-box td {
    vertical-align: middle;
    height: 39px;
}

@media screen and (max-width:768px) {
    #header #u_area #u_inner .u_navi ul.navi li.search input[type="text"] {/*入力部分スタイリング。width: 0px;にしておく*/
    }
}

@media screen and (max-width:768px) {
    #header #h_inner .u_navi {
        display: none;
    }
}



/* ロゴ・グローバルナビエリア
-------------------------------------- */
#header #h_inner {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

@media screen and (max-width:768px) {
    #header #h_inner {
        box-sizing: border-box;
        width: 100%;
        margin: 0 auto;
        padding: 15px 0px 15px 0px;
        height: 68px;
    }
}


/* ロゴ */
#header #u_area #logo {
	width: 800px;
	float: left;
    margin: 0 0 0 20px;
    padding: 0;
    line-height: 1;
}
#header #u_area #logo h1 {
    height: 82px;
    font-weight: normal;
    font-size: 12px;
    display: flex;
    align-items: center;
}
#header #u_area #logo h1 img {
    margin-top:5px;
}
#header #u_area #logo h1 span {
    display: block;
    margin-left: 10px;
}


@media screen and (max-width: 1091px) and (min-width: 769px)  {
    .w769_1091 {
        display: block;
    }
    #header #u_area #logo {
        width: 60%;
    }
    #header #u_area #logo h1 {
        font-size: 10px;
    }
    #header #u_area #logo h1 a img {
        width: 165px;
        height: auto;
    }
}

@media screen and (max-width:768px) {
	#header #u_inner #logo {
        width: 100%;
		float: none;
		margin: 0 auto;
		padding: 0;
        text-align: center;
	}
	#header #u_inner #logo img {
		width: auto;
		height: 38px;
	}
    #header #u_area #logo h1 {
    height: 70px;
        font-size: 9px;
        display: block;
        padding: 10px 62px 0 0;
    }
    #header #u_area #logo h1 a {
        display: block;
        width: 100%;
        margin: 0 0 5px 0;
    }
    #header #u_area #logo h1 span {
        width: 100%;
    }
    #header #u_area #logo h1 a img {
        width: 150px;
        height: auto;
    }
}




/* [03] グローバルナビゲーション
-------------------------------------------------------------------------------------------------------- */
#gn {
    z-index: 1000;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
}
#gn .inner_gn {
    width: 100%;
	max-width: 1500px;
	margin: 0 auto;
}
#navi {
	display: flex;
    justify-content: space-between;
	padding: 0 0 0 0;
}
#gn #navi li {
	font-size: 18px;
    line-height: 1;
    position: relative;
    border-left: 1px solid #000000;
    width : 16.66666% ; /* 未対応ブラウザ用フォールバック */
    width : -webkit-calc(100% / 4) ;
    width : calc(100% / 4) ;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
}
#gn #navi li:last-child {
    border-right: 1px solid #000000;
}
#navi li::after {
    position: absolute;
    top: 0;
    right: -13px;
}
#navi li.award::after {
    content: "";
}
#navi li a {
	display: block;
	margin: 0px;
	color: #616161;
	text-decoration: none;
    width: 100%;
    height: 44px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    padding: 12px 0 0 0;
}
#navi li a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #921b22;
}

/* アクティブボタン設定 */
body#theme #navi li.theme a,
body#economy #navi li.theme a,
body#industry #navi li.theme a,
body#environment #navi li.theme a,
body#international #navi li.theme a,
body#philosophy #navi li.theme a,
body#other #navi li.theme a,
body#usa #navi li.theme a,
body#china #navi li.theme a,
body#europe #navi li.theme a,
body#report #navi li.report a,
body#pocket #navi li.pocket a,
body#pocket_general #navi li.pocket a,
body#pocket_seminar #navi li.pocket a,
body#pocket_commentary #navi li.pocket a,
body#event #navi li.event a,
body#newsletter #navi li.newsletter a,
body#current #navi li.current a {
    text-decoration: none;
    color: #ffffff;
    background-color: #921b22;
}


/* スマホメニュー指定 */
.menu-container {
    margin: 0 auto;
}

.menu-mobile {
    display: none;
    padding: 0px 0px 0px 0px;
    width: 50px;
    text-decoration: none!important;
    position: fixed;
    top: 0;
    right: 0;
    height: 68px;
    z-index: 1000;
}

.menu-mobile:after {
    content: "\f394";
    font-family: "Ionicons";
    font-size: 2rem;
    padding: 0;
    position: absolute;
    top: 5px;
    right: 13px;
    color: #FFF;
}

.menu-dropdown-icon:before {
    content: "\f489";
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1.5em 2em;
    background: #fff;
    color: #333;
}

@media screen and (max-width: 1499px) and (min-width: 1200px)  {
    #gn #navi li {
        font-size: 1.4vw;
    }
    #navi li a {
        padding: 13px 0 0 0;
    }
}

@media screen and (max-width: 1199px) and (min-width: 769px)  {
    #gn #navi li {
        font-size: 1.4vw;
    }
    #navi li a {
        padding: 15px 0 0 0;
    }
}

@media screen and (max-width:1499px) {
    #gn #navi li:first-child {
        border-left: none;
    }
    #gn #navi li:last-child {
        border-right: none;
    }
}

@media screen and (max-width:768px) {
    #gn {
        background: none;
        border-top: none;
    }
    #gn .inner_gn {
        width: 100%;

    }
    
    /* ハンバーガーメニュー用 */
    .menu-container {
        width: 100%;
    }
    .menu-mobile {
        display: block;
    }
    .menu-dropdown-icon:before {
        display: block;
    }
    .menu {
    }
    
    /* グローバルナビ */
   #navi {
        display: none;
        background: #001146;
        position: fixed!important;
        top: 70px;
        left: 0;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    #navi > li {
        width: 100%;
        float: none;
        display: block;
        text-align: left;
        border-bottom: dotted 1px #949ec0;
        padding: 0;
		font-size: 16px;
        line-height: 1.1;
    }
    #navi li::after {
        content: "";
    }
    #navi .experts,
    #navi .publications,
    #navi .media,
    #navi .event,
    #navi .about {
        width: calc(50% - 20px);
        margin: 0 10px;
        float: left;
    }
	
    #navi .research {
        width: 100%;
        display: block;
        margin: 0px 10px 10px 10px;
        padding: 1em 0 0.5em 1em!important;
        color: #FFF;
        text-decoration: none;
        float: none;
        clear: both;
        border: none;
    }
    #navi .diplomacy,
    #navi .economy,
    #navi .government {
        margin: 0 10px 10px 20px;
        width: calc(50% - 30px);
        border-bottom: none;
        float: left;
    }
    #navi .industry,
    #navi .technology {
        margin: 0 20px 10px 10px;
        width: calc(50% - 30px);
        border-bottom: none;
        float: left;
    }
    #navi .policy {
        margin: 0 20px 20px 10px;
        width: calc(50% - 30px);
        border-bottom: none;
        float: left;
    }
    #navi .award {
        width: calc(100% - 20px);
        border-top: dotted 1px #949ec0;
        border-bottom: none;
        clear: both;
        margin: 0px 10px;
    }
    
    #navi > li a {
        width: 100%;
        display: block;
        margin: 0px;
        padding: 1em 0 1em 1em;
        color: #FFF;
        text-decoration: none;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    #navi .experts a,
    #navi .publications a {
        padding: 0em 0 1em 1em;
    }
    #navi .diplomacy a,
    #navi .industry a,
    #navi .economy a,
    #navi .technology a,
    #navi .government a,
    #navi .policy a {
        padding: 1em 0 1em 0em;
        color: #001146;
        text-align: center;
        background: #dadce2;
    }

    #navi li.mailmag {
        background: #c5a350;
        text-align: center;
    }
    #navi li.mailmag a {
        position: relative;
    }
    #navi li.mailmag a::after {
        content: "\f2eb";
        font-family: ionicons;
        font-size: 30px;
        color: #FFF;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-3em, -50%);
        -webkit-transform: translate(-3em, -50%);
        -ms-transform: translate(-3em, -50%);
    }
    
    #navi li.member {
        background: #c5a350;
        border-top: 1px solid #FFF;
        text-align: center;
    }
    #navi li.member a {
        position: relative;
    }
    #navi li.member a::after {
        content: "\f39e";
        font-family: ionicons;
        font-size: 30px;
        color: #FFF;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-3em, -50%);
        -webkit-transform: translate(-3em, -50%);
        -ms-transform: translate(-3em, -50%);
    }

    #navi li.search {
        width: 100%;
        background: #294b6f;
        display: block;
        position: relative;
        padding: 15px;
    }
    #navi li.search input[type="text"] {
        height: 41px;
        display: block;
        border: none;
        outline: none;
        color: #555;
        padding: 3px;
        padding-right: 0px;
        width: 80%;
        position: static;
        background: #FFF;
    }

    #navi li.search input[type="text"]:focus:hover {
        border-bottom: 1px solid #BBB;
    }

    #navi li.search input[type="text"]:focus {
        width: 80%;
        z-index: 1;
        border: 1px solid #294b6f;
        cursor: text;
        background: #FFF;
    }
    #navi li.search input[type="submit"] {/*アイコン部分*/
        height: 41px;
        width: 42px;
        padding: 6px 7px;
        display: block;
        color:red;
        float: right;
        background: url("../img/icon_search.png") center center no-repeat #294b6f;
        background-size: 60%;
        text-indent: -10000px;
        border: none;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 2;
        cursor: pointer;
        transition: opacity .4s ease;
    }
    #navi > li > ul {
        position: relative;
        background: none;
    }
    #navi > li > ul.normal-sub {
        width: 100%;
        padding: 0px 0px;
    }
    #navi > li > ul > li {
        float: none !important;
        width: 100% !important;
        margin-top: 20px;
    }
    #navi > li > ul.normal-sub > li {
        width: 100%;
    }

    #navi > li > ul.normal-sub > li a {
        border-bottom: none;
        padding: 0.5em 0 !important;
    }
    #navi > li > ul > li:first-child {
        margin: 0;
    }
    #navi > li > ul > li > ul {
        position: relative;
    }
    #navi > li > ul > li > ul > li {
        float: none;
    }
    #navi.show-on-mobile {
        display: block;
        z-index: 1000;
    }
    #navi > li > ul.normal-sub > li.img {
        display: none;
    }

    #navi a:hover {
        border: none;
    }
    
    #navi li a:hover {
        border-bottom: none;
    }
    
    /* アクティブボタン設定 */
    body#research.diplomacy #navi li.diplomacy a,
    body#research.industry #navi li.industry a,
    body#research.economy #navi li.economy a,
    body#research.technology #navi li.technology a,
    body#research.government #navi li.government a,
    body#research.policy #navi li.policy a,
    body#award #navi li.award a {
        border-bottom: none;
    }
}





/* [04] メインタイトル
-------------------------------------------------------------------------------------------------------- */
#img_main {
    height: 460px;
    position: relative;
    overflow: hidden;
}
#img_main img {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: inherit;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: -1;
}

#img_main .inner {
    margin: 0 auto;
    width: 1254px;
    position: relative;
}
#img_main .inner h1 {
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    font-size: 48px;
    line-height: 1.5;
    color: #FFF;    
}

@media screen and (max-width:768px) {
    #img_main {
        height: 400px;
    }
    #img_main .inner {
        width: 100%;
    }
    #img_main .inner h1 {
        height: 240px;
        font-size: 30px;
    }
}





/* [05] パンくずリスト（HTML上ではメインイメージ内に配置）
-------------------------------------------------------------------------------------------------------- */
#topicpath {
	width: 100%;
    z-index: 1;
}
#topicpath .inner {
    max-width: 1500px;
    width: 100%;
	margin: 0px auto 75px;
    padding: 5px 0;
    text-align: right;
}
#topicpath .inner ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    justify-content: flex-end;
}
#topicpath .inner ul li {
    padding-right: 30px;
    font-size: 11px;
    position: relative;
    color: #333333;
}
#topicpath .inner ul li:last-child {
    padding-right: 0;
}
#topicpath .inner ul li::after {
	content: "";
	position: absolute;
	top: 7px;
	right: 12px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	transform: rotate(45deg);
}
#topicpath .inner ul li:last-child::after {
	content: none;
	border: 0;
}
#topicpath .inner ul li a {
    color: #333333;
}
#topicpath .inner ul li a:hover {
    color: #921b22;
}

@media screen and (max-width:768px) {
    #topicpath {
        width: 100%;
        margin-bottom: 15px;
    }
    #topicpath .inner {
        width: 100%;
        padding: 10px 20px;
    	margin: 0px auto 0px;
    }
    #topicpath .inner ul li {
        font-size: 12px;
    }
    #topicpath .inner ul li.detail {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    #topicpath .inner ul li::after {
        top: 6px;
    }
}





/* [06] コンテンツエリア （#contents #main）
-------------------------------------------------------------------------------------------------------- */
body #contents {
    margin-top: 128px;
}

@media screen and (max-width:768px) {
    body #contents {
        margin-top: 0;
    }
}

/* 各トップページ　コンテンツ幅
-------------------------------------- */
body.first #contents {
	width: 100%;
}

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

}


body.first #main {
	width: 100%;
}

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



/* 各セカンドページ　コンテンツ幅（コンテンツ幅1500px）
-------------------------------------- */
body.second #contents {
	width: 100%;
}

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


body.second #main {
	max-width: 1200px;
	width: 100%;
    margin: 0 auto 90px;
}

@media screen and (max-width:1199px) {
    body.second #main {
        padding: 0 15px;
    }
}

@media screen and (max-width:768px) {
    body.second #main {
        margin: 0 auto 45px;
    }
}





/* [07] ページ下　最新記事エリア・他のカテゴリーエリア
-------------------------------------------------------------------------------------------------------- */

/* ページ下　最新記事エリア　（bodyに#publicationsで出版用に）
-------------------------------------- */


/* [08] フッターメニュー
-------------------------------------------------------------------------------------------------------- */
.area_f_menu .inner_f_menu {
    display: flex;
    background-color: #ffffff;
}
.area_f_menu .inner_f_menu .box {
    height: 265px;
    width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
    width : -webkit-calc(100% / 3) ;
    width : calc(100% / 3) ;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.area_f_menu .inner_f_menu .box a div {
    width: 100%;
    padding: 0 60px;
    background-image: url(../img/arrow_white.png);
    background-repeat: no-repeat;
    background-position: center right 60px;
}
.area_f_menu .inner_f_menu .box a {
    height: 265px;
    width: 100%;
    color: #ffffff;
    font-size: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.area_f_menu .inner_f_menu .box:hover {
    opacity: 0.8;
}
.area_f_menu .inner_f_menu .menu_about {
    background-image: url(../img/f_menu_about.jpg);
}
.area_f_menu .inner_f_menu .menu_theme {
    background-image: url(../img/f_menu_theme.jpg);
}
.area_f_menu .inner_f_menu .menu_experts {
    background-image: url(../img/f_menu_experts.jpg);
}

@media screen and (max-width:1499px) {
    .area_f_menu .inner_f_menu .box a div {
        padding: 0 50px 0 15px;
        background-position: center right 15px;
        font-size: 20px;
    }
}

@media screen and (max-width:768px) {
    .area_f_menu .inner_f_menu {
        display: block;
    }
    .area_f_menu .inner_f_menu .box {
        min-height: 85px;
        height: auto;
        width : 100%;
    }
    .area_f_menu .inner_f_menu .box a {
        height: auto;
        padding: 30px 0;
    }
    .area_f_menu .inner_f_menu .box a div {
        font-size: 18px;
    }
}




/* [09] フッターナビゲーション
-------------------------------------------------------------------------------------------------------- */
.f_navi {
    background-position: center 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    height: 100%;
}
.f_navi ul.box {
    width: 28%;
}
.f_navi ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
}
.f_navi ul li div.menu_primary {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    display: table-cell;
    padding-left: 40px;
}
.f_navi ul li div.menu_primary:before {
    position: absolute;
    content: '';
    top: calc(50% - 2px);
    width: 30px;
    left: 0;
    height: 4px;
    border-top: solid 4px #ffffff;
}
.f_navi ul li a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.f_navi ul li a:hover {
    color: #c9bcbd;
}
.f_navi ul li ul li {
    font-size: 16px;
    font-weight: bold;
    padding: 0 0 0 50px;
}
.f_navi ul li a {
    display: block;
    color: #FFFFFF;
}

@media screen and (max-width:768px) {
    .f_navi ul.box {
        width: 100%;
        height: auto;
    }
    .f_navi {
        display: block;
        padding: 62px 15px 15px;
    }
    .f_navi ul li div.menu_primary {
        font-size: 16px;
    }
    .f_navi ul li ul li:first-child {
        padding: 10px 0 10px 30px;
    }
    .f_navi ul li ul li {
        font-size: 14px;
        font-weight: normal;
        padding: 0 0 10px 30px;
        text-align: left;
    }
}






/* [10] フッター
-------------------------------------------------------------------------------------------------------- */
#footer {
	background: url("../img/bg_footer_menu.png") no-repeat #921b22;
    background-position: center 0;
    background-size: cover;
    position: relative;
}

#footer .inner_footer {
	max-width: 1500px; 
    width: 100%;
	margin: 0 auto;
	padding: 120px 0 90px 0;
    overflow: hidden;
}
.area_copy {
    background: #f9f9f9;
}
.area_copy .inner {
    max-width: 1500px;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    margin: 0 auto;
}
.copy {
	text-align: center;
    color: #000;
    font-size: 12px;
}


@media screen and (max-width:768px) {
    #footer {
	    background: #921b22;
        background-position: center 20px;
    }
    #footer .inner_footer {
        width: 100%;
        margin: 0 auto;
        padding: 0px 20px 0px 20px;
        text-align: center;
    }
    #footer .inner_footer .logo {
        display: none;
    }
    #footer .inner_footer .right {
        float: none;
        width: 100%;
    }
    .logo_foot {
        display: block;
        padding: 20px 0;
        width: 100%;
        text-align: center;
        background: #f9f9f9;
    }
    .area_copy .inner {
        flex-wrap: wrap;
        padding: 15px 0 0 0;
    }
    .copy {
        width: 100%;
        font-size: 10px;
    }
}






/* [11] SNSボタン
-------------------------------------------------------------------------------------------------------- */
#sns_btn {
    position: relative;
    right: 30px;
}
.inner_sns_btn div {
    margin-bottom: 25px;
}
.inner_sns_btn div:last-child {
    margin-bottom: 0;
}
.btn_tw a {
    background: url(../img/bn_tw.png) no-repeat;
    background-size: 100%;
    width: 44px;
    height: 44px;
    display: block;
    transition: 0.3s;
}
.btn_fb a {
    background: url(../img/bn_fb.png) no-repeat;
    background-size: 100%;
    width: 44px;
    height: 44px;
    display: block;
    transition: 0.3s;
}
.btn_line a {
    background: url(../img/bn_line.png) no-repeat;
    background-size: 100%;
    width: 44px;
    height: 44px;
    display: block;
    transition: 0.3s;
}

@media screen and (max-width:768px) {
    #sns_btn {
        right: 10px;
    }
}
