body {
	margin: 0;
	padding: 0;
	font-size: 13px;
	font-family:'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}
#container {
	min-width: 878px;
}

/* header */

#header {
	width:100%;
	overflow:hidden;
	background-color: #ffffff;
	height: 46px;
}
#title_logo {
	margin-top: 5px;
	float:left;
	display: inline-block;
	background-image: url("../img/bicolor-logo.png");
	background-repeat:no-repeat;
	/*background-size: 240px;
	width: 240px;*/
	height: inherit;
}
@media (min-width: 640px) {
	#title_logo {
	background-size: 240px;
	width: 240px;
	}
}
@media (max-width: 640px) {
	#title_logo {
	background-size: 180px;
	width: 180px;
	}
}
#header_right{
	height:51px;
	float:right;
	text-align:right;
	display:flex;
	align-items:center;
	font-size: 1rem;
	font-weight: bold;
}
#header_right a{
	/*color: grey;*/
	color: white;
	background-color: sandybrown;
	text-decoration: none;
	padding: 6px;
	padding-top: 20px;
	display: inline-block;
	height: 42px;
}
#header_right a:hover{
	/*color: gainsboro;*/
	opacity:0.8;
	color: sandybrown;
	background-color: white;
	transition:0.1s;
}
#header_right a:nth-last-child(2){
	color: white;
	background-color: sandybrown;
}

/* global menu */

#gmenu-wrap {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 10000;
}
#gmenu {
	margin:3px;
	padding:0;
	background-color:rgba(255, 255, 255, 0.9);
	display:flex;
	-webkit-justify-content: center;
	justify-content: center;
}
#gmenu li {
	list-style-type:none;
}
#gmenu > li > a {
	text-align: center;
	text-decoration:none;
	font-size:120%;
	font-weight: bold;
	color:#333;
	padding:0 20px;
	height:44px;
	display:table-cell;
	vertical-align:middle;
	border-top: solid 4px transparent;
}
#gmenu >li > a:hover{
	opacity:0.7;
	border-top: solid 4px cadetblue;
}
#gmenu > li.cur > a {
	color: chocolate;
}
#gmbtn,#gmlay {
	display: none;
}
#search {
	background: white;
}

/* main */

#main {
	margin: 20px auto;
	max-width: 1007px;
}

@media (min-width: 640px) {
	#ct-main {
		margin: 30px auto;
		max-width: 1007px;
	}
}
@media (max-width: 640px) {
	#ct-main {
		margin-top: 10px;
	}
}
/* main_menu */

#main_menu {
	overflow:hidden;
}
#main_menu ul {
	padding: 0;
	position:relative;
	visibility: hidden;
	display:flex;
	opacity:0;
	max-height:0;
	list-style:none;
	width: 1046px;
	flex-wrap: wrap;
	transition: all .5s ease-in-out;
	z-index:1;
	text-align:left;
}
#main_menu a {
	color: #333;
	font-size: 119%;
	font-weight: bold;
	line-height: 15px;
	padding: 4px;
	display:block;
	text-decoration:none;
}
@media (min-width: 640px) {
	#main_menu a {
		border-radius: 5px;
		filter: drop-shadow(0 0 0.3rem white);
	}
}
#main_menu a:visited {
	color: #333 !important;
}
#main_menu li {
	margin-right: 8px;
	list-style-type: none;
	text-align:center;
	width:163px;
}
#main_menu > li > a::before {
	content:'';
	display: block;
	margin: auto;
	height: 95px;
	background-repeat: no-repeat;
	background-position: center;
}
#main_menu > li > a[href$=whoisjesus]::before {
	background-image: url("../img/jesus-icon.png");
}
#main_menu > li > a[href$=goodnews]::before {
	background-image: url("../img/hato-icon.png");
}
#main_menu > li > a[href$=question]::before {
	background-image: url("../img/bible-icon.png");
}
#main_menu > li > a[href$=evolution]::before {
	background-image: url("../img/shinka-icon.png");
}
#main_menu > li > a[href$=science]::before {
	background-image: url("../img/chou-icon.png");
}
#main_menu > li > a[href$=testimony]::before {
	background-image: url("../img/lamp-icon.png");
}
#main_menu > li > a[href$=goodnews] + ul li:nth-child(2) > ul {
	left: -171px;
}
#main_menu > li > a[href$=goodnews] + ul li:nth-child(3) > ul {
	left: -342px;
}
#main_menu > li > a[href$=goodnews] + ul li:nth-child(4) > ul {
	left: -513px;
}
#main_menu > li > a[href$=goodnews] + ul li:nth-child(5) > ul {
	left: -684px;
}
#main_menu > li > a[href$=goodnews] + ul {
	margin-left: -171px;
}
#main_menu > li > a[href$=question] + ul {
	margin-left: -342px;
}
#main_menu > li > a[href$=evolution] + ul {
	margin-left: -513px;
}
#main_menu > li > a[href$=science] + ul {
	margin-left: -684px;
}
#main_menu > li > a[href$=testimony] + ul {
	margin-left: -855px;
}
#main_menu > li > a[href$=testimony] + ul li:nth-child(2) > ul {
	left: -171px;
}
#main_menu > li > a[href$=testimony] + ul li:nth-child(3) > ul {
	left: -342px;
}
#main_menu > li > a[href$=testimony] + ul li:nth-child(5) > ul {
	left: -684px;
}
#main_menu > li > a[href$=testimony] + ul li:nth-child(6) > ul {
	left: -513px;
}

/***** to_top *****/

#to_top{
	background-color:rgba(245, 245, 245, 1);
	position: -webkit-sticky;
	position: sticky;
	right:10px;
	bottom:10px;
	float:right;
	margin:10px 0;
	z-index:10;
	display:block;
	font-size:13px;
	color:#696969;
}
#to_top:before {
	content: 'Page Top';
	display: inline-block;
	border-right: 1px solid #fff;
	padding: 7px 10px;
}
#to_top:after {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	border-top: 2px solid #696969;
	border-right: 2px solid #696969;
	transform: rotate(-45deg);
	margin: 0 10px -6px;
}


/***** footer *****/

#footer {
    width: 100%;
    overflow: hidden;
	background-color:whitesmoke;
	padding: 15px;
	box-sizing: border-box;
}
#address{
	float: left;
	color:#696969;
	font-size: 1.2rem;
	/*font-weight: bold;*/
	text-align: left;
	width: 50%;
}
#address * {
	color:#696969;
	font-weight: normal;
	font-size: 1rem;
	text-decoration: none;
	margin-top: 5px;
}
#footer_right{
	float: right;
	width: 50%;
}
#footer_right a {
	float:right;
	color: #696969;
	font-size: 110%;
	text-decoration: none;
	padding:0 10px;
}
#footer_right a:hover {
	opacity:0.7;
}
#footer_right a::before{
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 5px;
	height: 5px;
	border: 5px solid transparent;
	border-left: 5px solid #696969;
}
#about {
	color:#696969;
	font-size: .9rem;
	font-weight:normal;
	padding-top: 24px;
	line-height: 140%;
	text-align: right;
	clear:right;
}
#about div:last-child {
	margin-top: .5em;
}

/* common design */

#main,#ct-main {
	font-size: 14px;
	color: #333333;
}
#main a,#ct-main a{
	text-decoration:none;
}
#main a:visited,#ct-main a:visited {
	color: #6699FF;
}
#main a:active,#ct-main a:active {color: #6699FF}
#main img,#ct-main img {border:0}
#main table,#ct-main table {border-spacing:0}
.hc {margin-left:auto;margin-right:auto}
.l {float:left}
.r {float:right}
.cl {clear:left}
#tl-verse{
	width:250px;
	font-size:12px;
	color:#666699;
	line-height:16px;
	text-align:left;
}
#tl-verse2{
	width:420px;
	font-size:12px;
	color:#666699;
	line-height:16px;
	text-align:left;
}
#tl-cv{text-align:right}
#tl-qry {width:90px}
.arw {background:url(../img/allow.gif) no-repeat left center;padding-left:15px}
.arw img{margin-bottom:-5px !important;margin-bottom:0}
.h110 {LINE-HEIGHT:110%}
.h120 {LINE-HEIGHT:120%}
.h130 {LINE-HEIGHT:130%}
.h140 {LINE-HEIGHT:140%}
.h150 {LINE-HEIGHT:150%}
.h160 {LINE-HEIGHT:160%}
.h170 {LINE-HEIGHT:170%}
.h200 {LINE-HEIGHT:200%}
.lock2 {font-size: 14px;line-height: 130%}
.lock10 {font-size: 16px;line-height: 150%}
.lock11 {font-size: 12px;line-height: 130%}
.lock12 {font-size: 14px;line-height: 180%}
.lock14 {font-size: 18px;line-height: 150%}
.lock13 {font-size: 16px;line-height: 150%;color: #999999}
@media (min-width: 640px) {
	.lock07 {
		font-size: 32px;
		line-height: 120%;
	}
}
@media (max-width: 640px) {
	.lock07 {
		font-size: 25px;
		line-height: 120%;
		font-weight: bold;
	}
}
.font32n {font-size: 32px;line-height: 120%;font-weight: normal}
.font20b {font-size: 20px;line-height: 150%;font-weight: bold}
.font24b {font-size: 24px;line-height: 150%;font-weight: bold}
.font18b {font-size: 18px;line-height: 150%;font-weight: bold}
.font18n {font-size: 18px;line-height: 150%;font-weight: normal}
.font16n {font-size: 16px;line-height: 150%;font-weight: normal}
.font3n {font-size: 14px;font-style: normal}
.font3nr {font-size: 14px;font-style: normal;color: #FF0000}
.font3np {font-size: 14px;font-style: normal;color: #FF3366}
.fontr{color: #FF6633}
.bible {font-size: 14px;line-height: 180%;color: #CC6600}
.bible16 {font-size: 16px;line-height: 180%;color: #CC6600}
.ind {text-indent:1em;text-align: justify;text-justify: distribute}
.mobile-only {
	display: none;
}
