/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
  /* important */
  height: 100%;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 1000px;
  margin: 0 auto;
  text-align: left;
  font-size: 80%;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: 13px 0 0 3%;
}
.cd-header #cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
  }
  .cd-header #cd-logo {
    margin: 23px 0 0 3%;
  }
}

.cd-main-nav {
  float: right;
  font-family:"Hiragino Mincho ProN","HG–¾’©E","‚l‚r ‚o–¾’©", serif;
  margin-right: 1%;
  width: 44px;
  height: 100%;
  background: url("../img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #2f292a;
  border-top: 1px solid #453c3d;
  color: #8e7d7f;
}
@media only screen and (min-width: 768px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 10px;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 0.5em;
    border-top: none;
    color: #3d3536;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .no-touch .cd-main-nav a:hover {
    color: #99a478;
  }
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
  font-family:"Hiragino Mincho ProN","HG–¾’©E","‚l‚r ‚o–¾’©", serif;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 1170px;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../index_img/cd-background-1.jpg");
}
.cd-fixed-bg.cd-bg-102 {
  background-image: url("../index_img/cd-background-102.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../index_img/cd-background-2.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../index_img/cd-background-3.jpg");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../index_img/cd-background-4.jpg");
}
.cd-fixed-bg.cd-bg-stats1 {
  background-image: url("../stats_fukushima/cd-background_st01.jpg");
}
.cd-fixed-bg.cd-bg-stats2 {
  background-image: url("../stats_fukushima/cd-background_st02.jpg");
}
.cd-fixed-bg.cd-bg-stats3 {
  background-image: url("../stats_fukushima/cd-background_st03.jpg");
}
.cd-fixed-bg.cd-bg-work_1 {
  background-image: url("../work/cd-background_wrk01.jpg");
}
.cd-fixed-bg.cd-bg-stats_k1 {
  background-image: url("../stats_kobe/cd-background_stk01.jpg");
}
.cd-fixed-bg.cd-bg-stats_k2 {
  background-image: url("../stats_kobe/cd-background_stk03.jpg");
}
.cd-fixed-bg.cd-bg-stats_k3 {
  background-image: url("../stats_kobe/cd-background_stk02.jpg");
}
.cd-fixed-bg.cd-bg-donate {
  background-image: url("../common/cd-background-donate.jpg");
}
.cd-fixed-bg.cd-bg-lowkill {
  background-image: url("../lowkill/cd-background-lowkill.jpg");
}
.cd-fixed-bg.cd-bg-nokill {
  background-image: url("../lowkill/cd-background-nokill.jpg");
}
.cd-fixed-bg.cd-bg-fini {
  background-image: url("../lowkill/cd-background-fini.jpg");
}
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 48px;
    font-weight: 300;
  }
}

.cd-scrolling-bg {
  position: relative;
  padding: 4em 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #44a0e1;
  background-image: url('../common/back_sdw.png');
  background-repeat: repeat-x;
  color: #fff;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #dea678;
  background-image: url('../common/back_line.png');
  color: #fff;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #85a093;
  background-image: url('../common/back_line.png');
  color: #fff;
}
.cd-scrolling-bg.cd-color-stats {
  background-color: #fff;
  background-image: url('../common/back_line_g.png');
  color: #666;
}
.cd-scrolling-bg.cd-color-stats2 {
  background-color: #d8d8d8;
  background-image: url('../common/back_line.png');
  color: #000;
}
.cd-scrolling-bg.cd-color-stats3 {
  background-color: #000;
  background-image: url('../common/back_line.png');
  color: #fff;
}
.cd-scrolling-bg.cd-color-stats_k1 {
  background-color: #fff;
  background-image: url('../common/back_line_g.png');
  color: #666;
}
.cd-scrolling-bg.cd-color-stats_k2 {
  background-color: #d8d8d8;
  background-image: url('../common/back_line.png');
  color: #000;
}
.cd-scrolling-bg.cd-color-stats_k3 {
  background-color: #000;
  background-image: url('../common/back_line.png');
  color: #fff;
}
.cd-scrolling-bg.cd-color-donate {
  background-color: #999;
  background-image: url('../common/back_line.png');
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 4em 0;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 300;
  }
}


/*----------------------------------------------------
ƒMƒƒƒ‰ƒŠ[
----------------------------------------------------*/

ul.thumbnail { 
	list-style-type: none; 
	margin-right:-25px;
}

ul.thumbnail li {
	float: left;
	margin: 25px 25px 0 0;
	font-size: 70%;
}

ul.thumbnail li img {
	width: 200px;
	height: 200px;
}

ul.thumbnail li a { 
	display: block; 
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	line-height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix { 
	display: inline-block; 
}

.gallery a:hover img{
	opacity:0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha( opacity=50 )";
	background: #fff;
}


/* -------------------------------- 

’Ç‰Á

-------------------------------- */

#pickup {
	position: absolute;
	top: 80px;
	right: 0;
	margin: 0;
	color:#000;
	font-size: 120%;
}

.ind_sts_box_left {
	float:left; 
	width:297px;
	margin:0;
	padding: 0;
}

.ind_sts_box_right {
	float:left; 
	width:670px;
	margin:0 0 0 33px;
	padding: 0 0 0 0px;
}

#news_box {
	overflow: auto; 
	width: 1000px;
	height: 200px;
	margin:0 auto;
	padding: 5px 20px;
	font-size: 14px;
	text-align: left;
	background-color:#fff;
	text-shadow: none;  
	color:#999;
}


.sts_kaisetsu_box {
	width: 800px;
	margin:10px auto;
	padding: 0;
	font-size: 100%;
	text-align: left;
}

.sts_point_box_left {
	float:left; 
	width:30px;
	margin:0;
	padding: 0;
}

.sts_point_box_right {
	float:left; 
	width:770px;
	margin:0 0 10px 0px;
	padding: 0 0 0 0px;
}

.cntn_w800 {
	width:800px;
	margin:0 auto;
	padding: 0;
}

.cntn_w700 {
	width:700px;
	margin:0 auto;
	padding: 0;
}

/* -------------------------------- 

indepth

-------------------------------- */

.idp_logo {
	width:100%;
	margin:40px 0 0 0;
	text-align: center;
}

.idp_tit {
	width:100%;
	margin:30px 0 30px 0;
	padding:20px 0;
	border-top: 1px dashed #666;
	border-bottom: 1px dashed #666;
	text-align: center;
}

.idp_stit {
	width:100%;
	font-size: 120%;
	color:#fff;
	margin:0 0 10px 0;
	padding: 3px 0 3px 10px;
	background-color:#666;
}

.idp_last {
	width:100%;
	font-size: 120%;
	margin:30px 0 30px 0;
	padding:20px 0;
	border-top: 1px dashed #666;
	border-bottom: 1px dashed #666;
	text-align: left;
}

.pagelink {
	width:100%;
	margin:0 auto;
	padding: 5px 0 5px 0;
	background-color:#ff0000;
	text-align: center;
	font-weight: bold;
	color:#fff;
}










.info_box {
	width:900px;
	margin:0 auto;
	padding: 20px 20px 10px 20px;
	background-color:#;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}

.info_kiji_topline {
	margin-bottom:10px;
	border-bottom: 1px dashed #4ca74c;
}

.info_kiji {
	margin-bottom:10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #4ca74c;
}

.con_box_center {
	width:450px;
	margin:0 auto;
	padding: 0;
}

.con_box_left {
	float:left; 
	width:450px;
	margin:0;
	padding: 0;
}

.con_box_right {
	float:left; 
	width:500px;
	margin:0 0 0 50px;
	padding: 0 0 0 49px;
	border-left: 1px dashed #fff;
}

.profmarisa_box_left {
	float:left; 
	width:400px;
	margin:0;
	padding: 0;
}

.profmarisa_box_right {
	float:left; 
	width:570px;
	margin:0 0 0 30px;
	padding: 0;
}

.lsn_box_left {
	float:left; 
	width:330px;
	margin:0;
	padding: 0;
}

.lsn_box_right {
	float:left; 
	width:330px;
	margin:0 0 0 5px;
	padding: 0;
}

.liv_box_left {
	float:left; 
	width:700px;
	margin:0;
	padding: 0;
}

.liv_box_right {
	float:left; 
	width:284px;
	margin:0 0 0 16px;
	padding: 0;
}

.fla_stit {
	font-family:"Hiragino Mincho ProN","HG–¾’©E","‚l‚r ‚o–¾’©", serif;
	width:100%;
	font-size: 150%;
	text-align: center;
	margin: 0;
	padding: 10px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

.fla_sstit {
	width:100%;
	font-size: 130%;
	text-align: center;
	margin: 10px 0;
	padding: 0;
	background-color:#ff9966;
}

.fla_ssstit {
	width:100%;
	font-size: 130%;
	text-align: center;
	margin: 10px 0;
	padding: 0;
}

.fla_prof {
	font-size: 70%;
}

.footer {
	width:100%;
	font-size: 70%;
	margin: 60px 0 -50px 0;
	padding: 20px 0 0 0;
	border-top: 1px solid #fff;
	text-align: center;
}

#footer_box_left {
	float:left; 
	width:250px;
	margin:0;
	padding: 0;
}

#footer_box_right {
	float:left; 
	width:700px;
	margin:0;
	padding: 0 0 0 50px;
}


.point_box {
	width: 1000px;
	margin:10px auto;
	padding: 10px;
	font-size: 110%;
	text-align: left;
	background-color:#fff;
	color:#999;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}




.text_red {
	color:#ff0000;
}

.text_or {
	color:#ff9600;
}

.text_bgred {
	color:#fff;
	background-color:#b20101;
	padding: 5px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.text_y {
	color:#dfa11b;
}

.text_gleen {
	color:#009944;
}

.text_xxl {
	font-size: 200%;
}

.text_xl {
	font-size: 170%;
}

.text_l {
	font-size: 130%;
}

.text_s {
	font-size: 80%;
}

.text_min {
	font-family:"Hiragino Mincho ProN","HG–¾’©E","‚l‚r ‚o–¾’©", serif;
}

.text_go {
	font-family: 'ƒqƒ‰ƒMƒmŠpƒS Pro W3','Hiragino Kaku Gothic Pro','ƒƒCƒŠƒI',Meiryo,'‚l‚r ‚oƒSƒVƒbƒN',sans-serif;
}

.clear { clear:both; }  
.clear hr { display:none; }  