@charset "utf-8";
/*****************************************************************************************************
トップページ用 CSS
******************************************************************************************************/

/*****************************************************************************************************
hero エスカレーター編（全バージョン共通）
******************************************************************************************************/
/* 全体 */
.hero-escalator {
	width: 100%;
	height: 500px;
	background-color: #66B5CB;
	position: relative;
	overflow: hidden;
}
.hero-escalator > div {
	width: 100%;
	max-width: 1050px;
	margin: 0 auto;
}

/* 画像 */
img.img-escalator {
	position: absolute;
	bottom: 0;
	left: 50%;
}
p.img-escalator-sd {
	display: none;
}

/* 文字 */
.hero-escalator h1,
.hero-escalator h2 {
	color: #FFF;
	padding: 2em 25px 0 25px;
}
.hero-escalator h1 span,
.hero-escalator h2 span {
	font-weight: normal;
	display: block;
	padding-top: 0.5em;
}

/* 文字サイズ */
.hero-escalator h1 {
	font-size: 40px;
	line-height: 1.25;
}
.hero-escalator h2 {
	font-size: 24px;
}
.hero-escalator h1 span,
.hero-escalator h2 span {
	font-size: 16px;
}

@media only screen and (max-width: 800px) {
/* 全体 */
.hero-escalator {
	height: auto;
}
/* 画像 */
img.img-escalator {
	display: none;
}
p.img-escalator-sd {
	display: block;
	text-align: right;
	margin-top: -150px;
}
p.img-escalator-sd img {
	vertical-align: bottom;
	width: 100%;
	max-width: 520px;
}
/* 文字サイズ */
.hero-escalator h1 {
	font-size: 35px;
}
.hero-escalator h2 {
	font-size: 21px;
}
.hero-escalator h1 span,
.hero-escalator h2 span {
	font-size: 14px;
}
}

@media only screen and (max-width: 700px) {
/* 画像 */
p.img-escalator-sd {
	margin-top: 0;
}
/* 文字 */
.hero-escalator h1,
.hero-escalator h2 {
	padding: 1em 15px 0 15px;
}
.hero-escalator br.only-wide {
	display: none;
}
/* 文字サイズ */
.hero-escalator h1 {
	/*font-size: 30px;*/
	font-size: 26px;
}
.hero-escalator h2 {
	font-size: 18px;
}
.hero-escalator h1 span,
.hero-escalator h2 span {
	font-size: 12px;
}
}



/*****************************************************************************************************
hero データ編（全バージョン共通）
******************************************************************************************************/
/* 全体 */
.hero-data {
	width: 100%;
	background-image: url(../img/index/hero-data.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.hero-data > div {
	width: 100%;
	max-width: 1050px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 25px;
	display: table;
}
.hero-data > div > div {
	width: 100%;
	height: 500px;
	display: table-cell;
	vertical-align: middle;
}
.hero-data > div > div > div {
	display: inline-block;
}

/* 文字帯 */
.hero-data h1,
.hero-data h2 {
	padding-top: 1em;
}
.hero-data h1 span,
.hero-data h2 span {
	font-family: 'YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ＭＳ 明朝', 'MS Mincho',serif;
	color: #FFF;
	background-color: rgba(0,32,64,0.8);
}

/* 文字サイズ */
.hero-data h1 {
	font-size: 40px;
}
.hero-data h1.power {
	font-size: 48px;
}
.hero-data h2 {
	font-size: 24px;
}

@media only screen and (max-width: 800px) {
/* 文字サイズ */
.hero-data h1 {
	font-size: 35px;
}
.hero-data h1.power {
	font-size: 42px;
}
.hero-data h2 {
	font-size: 21px;
}
}

@media only screen and (max-width: 700px) {
/* 全体 */
.hero-data > div {
	padding: 0 15px;
}
/* 文字帯 */
.hero-data br.only-wide {
	display: none;
}
/* 文字サイズ */
.hero-data h1 {
	/*font-size: 30px;*/
	font-size: 26px;
}
.hero-data h1.power {
	/*font-size: 36px;*/
	font-size: 32px;
}
.hero-data h2 {
	font-size: 18px;
}
}



/*****************************************************************************************************
hero スペーサー
******************************************************************************************************/
.hero-spacer {
	width: 100%;
	height: 12px;
}




/*****************************************************************************************************
タイル
******************************************************************************************************/
/* 全体 */
.tile {
	width: 100%;
	box-sizing: border-box;
	padding: 0 6px;
}
.tile > div {
	float: left;
	width: 50%;
	box-sizing: border-box;
	padding: 0 6px;
}

/* 写真 */
.tile .photo {
	width: 100%;
	height: 300px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

/* テキスト */
.tile .text {
	font-size: 87.5%;
	text-align: center;
	padding: 20px 13px 60px 13px;
}
.tile .text p {
	margin: 10px 0;
}
.tile .text p:last-child {
	margin-bottom: 0;
}
.tile .text a {
	text-decoration: none;
	font-weight: bold;
}

@media only screen and (max-width: 800px) {
/* 写真 */
.tile .photo {
	height: 250px;
}
/* テキスト */
.tile .text br.only-wide {
	display: none;
}
}

@media only screen and (max-width: 700px) {
/* 全体 */
.tile > div {
	float: none;
	width: 100%;
}
/* 写真 */
.tile .photo {
	height: 200px;
}
/* テキスト */
.tile .text {
	padding-right: 3px;
	padding-left: 3px;
}
}

/************************************************
タイル（POLICY DOOR）
*************************************************/
.tile-pd-index > .photo {
	background-image: url(../img/index/tile-pd-index.jpg);
	display: table;
}
.tile-pd-index > .photo > div {
	background-color: rgba(0,0,0,0.3);
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.tile-pd-index > .photo > div > img {
	vertical-align: bottom;
	width: 100%;
	max-width: 250px;
}

.tile-pd-article > .photo > img {
	width: 125px;
	padding: 12px;
}










/*****************************************************************************************************
What's New
******************************************************************************************************/
.whats-new {
	width: 100%;
	background-color: #F7F7F7;
	padding: 75px 0 65px 0;
}
.whats-new > div {
	width: 100%;
	max-width: 1050px;
	margin: 0 auto;
}

/* 可変ブロック ************************************************/
.whats-new > div > div {
	float: left;
	box-sizing: border-box;
	padding: 25px;
}
.whats-new-left {
	width: 66.66%;
}
.whats-new-right {
	width: 33.33%;
}
/****************************************************************/

.whats-new-left h2 {
	font-size: 225%;
	line-height: 1;
}
.whats-new-left ul.list {
	font-size: 87.5%;
}
.whats-new-left p {
	font-size: 87.5%;
}
/* 英語 **************************/
.whats-new-left.en h2 {
	margin-top: 1em;
}
.whats-new-left.en p {
	font-size: 100%;
	margin: 1em 0;
}
.whats-new-left.en p:first-child {
	margin-top: 0;
}
.whats-new-left.en p:last-child {
	margin-bottom: 0;
}
/*********************************/

.twitter-timeline-wrap {
	box-sizing: border-box;
	border: solid 1px #CCC;
	border-radius: 5px;
	height: 500px;
	overflow: hidden;
}

ul.sns-share {
	text-align: center;
	margin-bottom: 0;
}

@media only screen and (max-width: 800px) {
.whats-new > div > div {
	float: none;
}
.whats-new-left {
	width: 100%;
}
.whats-new-right {
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
}
}

@media only screen and (max-width: 700px) {
.whats-new {
	padding: 45px 0 35px 0;
}
.whats-new > div > div {
	padding: 15px;
}
}









/*****************************************************************************************************
Pickup contents
******************************************************************************************************/
.pickup-contents {
	width: 100%;
	background-image: url(../img/index/pickup-bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	padding: 100px 0 85px 0;
}
.pickup-contents > div {
	width: 100%;
	max-width: 1050px;
	margin: 0 auto;
}

/* 可変ブロック ************************************************/
.pickup-contents > div > div {
	float: left;
	width: 33.33%;
	box-sizing: border-box;
	padding: 0 25px;
}
.pickup-contents > div > div:last-child {
	float: right;
}
/* 英語 ***********/
.pickup-contents.en > div > div {
	width: 50%;
}

@media only screen and (max-width: 800px) {
.pickup-contents > div > div {
	width: 50%;
}
}

@media only screen and (max-width: 700px) {
.pickup-contents {
	padding: 60px 0 45px 0;
}
.pickup-contents > div > div {
	width: 100%;
	padding: 0 15px;
}
/* 英語 ***********/
.pickup-contents.en > div > div {
	width: 100%;
}

}
/*****************************************************************/

.pickup-contents h2 {
	font-size: 225%;
	line-height: 1;
	color: #FFF;
	padding-bottom: 1em;
}
.pickup-contents h2 span {
	font-weight: normal;
	font-size: 44.44%;
	display: block;
	padding-top: 0.75em;
}

ul.pickup li {
	list-style-type: none;
	margin-bottom: 15px;
}
ul.pickup li a {
	display: block;
	
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	
	background-repeat: no-repeat;
	background-position: 10px center;
	
	box-sizing: border-box;
	border: solid 1px #FFF;
	padding: 1em 0 1em 60px;
	
	transition: background-color 0.4s;
}
ul.pickup li a:hover {
	background-color: rgba(0,0,0,0.2);
	transition: background-color 0.4s;
}
li.pickup-01 a { background-image: url(../img/index/pickup-icon-01.png); }
li.pickup-02 a { background-image: url(../img/index/pickup-icon-02.png); }
li.pickup-03 a { background-image: url(../img/index/pickup-icon-03.png); }
li.pickup-04 a { background-image: url(../img/index/pickup-icon-04.png); }
li.pickup-05 a { background-image: url(../img/index/pickup-icon-05.png); }
li.pickup-06 a { background-image: url(../img/index/pickup-icon-06.png); }
li.pickup-07 a { background-image: url(../img/index/pickup-icon-07.png); }








