@charset "UTF-8";

body {
	font-family: 'Lora', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ" ;
	color: #333333;
	font-size: 90%;
	position: relative;
}

/* -----------------------------------
 共通要素・クラス
----------------------------------- */
.clearfix{ zoom:1}
.clearfix:after{ content:"";  display:block;  clear:both}

.float-left { float: left;}
.float-right { float: right;}

.txt-center { text-align: center;}
.txt-right { text-align: right;}
.txt-left { text-align: left;}

.disc { list-style-type: disc; list-style-position: inside; }

.xx-large { font-size: 130%; }
.x-large { font-size: 120%; }
.large { font-size: 110%; }
.small { font-size: 90%; }
.x-small { font-size: 80%; }
.xx-small { font-size: 70%; }

.aligncenter {
    display: block;
    margin: 0 auto;
}
.alignright {
	float: right;
	margin-left: 20px;
}
.alignleft {
	float: left;
	margin-right: 20px;
}

img[class*="wp-image-"],
img[class*="attachment-"] {
    height: auto;
    max-width: 100%;
}

	/* -----------------------------------
	 a
	----------------------------------- */
	a, a:visited {
		color: #333333;
		text-decoration: none;
	}
	a img {
		-webkit-transition: opacity 0.2s ease;
		transition: opacity 0.2s ease;
	}
	a[href]:hover img {
		-webkit-transition: opacity 0.1s ease-out;
		transition: opacity 0.1s ease-out;
		filter: alpha(opacity=70);
		-moz-opacity: 0.7;
		opacity: 0.7;
	}
	/* aタグ内の画像を、オンマウスで透過させたくない場合は
		『exempt』クラスを付与してください */
	a.exempt:hover img {
		filter: alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
	}

	/* -----------------------------------
	 h1 ~ h6
	----------------------------------- */

	h3 {
		background: #f3f3f3;
		border-left: 5px solid #f7c4c1;
		padding: 6px 0 6px 15px;
		color: #333333;
		font-size: 110%;
		font-weight: bold;
		font-weight: normal;
	}

	button { cursor: pointer;}

	.contents {
		width: 980px;
		margin: 0 auto;
		overflow: hidden;
	}

	.olivia {
		letter-spacing: 0.2em;
		color: #000;
	}
	.olivia:first-letter {
		color: #ec544b;
		font-size: 120%;
	}
	.olivia a:first-letter {
		color: #ec544b;
		font-size: 120%;
	}
		.olivia span {
			color: #ec544b;
			font-size: 120%;	
		}

	/* -----------------------------------
	 Banners
	----------------------------------- */
	.bnrs { margin-top: -10px;}
		.bnrs li { margin-top: 10px;}

	/* -----------------------------------
	 voice_more
	----------------------------------- */
	#voice p.voice_more {
		margin: 20px;
	}
		#voice p.voice_more a:link,
		#voice p.voice_more a:visited {
			text-decoration: underline;
			color: #e1817b;
		}

	/* -----------------------------------
	 Tab
	----------------------------------- */
	.tab_box {}
		.tab {
			box-sizing: border-box;
			border-bottom: 1px solid #cccccc;
		}
			.tab li {
				display: inline-block;
			}
				.tab li a,
				.tab li a:visited {
					display: block;
					border: 1px solid transparent;
					margin: 0 0 -1px;
					-webkit-transition: background-color 0.2s ease-in;
					transition: background-color 0.2s ease-in;
					z-index: -1;
					background: #fff;
				}
				.tab li a:hover {
					background: #f8f5f3;
					border-bottom: 1px solid #cccccc;
					transition-property: none;
				}
				.tab li a.selected,
				.tab li a.selected:visited {
					background: #fff;
					border: 1px solid #cccccc;
					border-bottom: 1px solid transparent;
					margin: 0 0 -1px;
					cursor: default;
				}

		.tab_content {
			position: relative;
		}
			.tab_content > div {
				filter: alpha(opacity=0);
				-moz-opacity: 0;
				opacity: 0;
				position: absolute;
			}

	/* -----------------------------------
	 SNS buttons
	----------------------------------- */
	.sns_btns {
		margin: 0;
		display: table;
	}
		.sns_btns li {
			min-width: 108px;
			line-height: 1;
			display: table-cell;
			vertical-align: middle;
			border: none;
			margin-right: 10px;
			padding: 0;
		}

	/* -----------------------------------
	Hover Animation
	----------------------------------- */

	/* Sweep To Bottom ----------------------------------------------------  */
	/* ***********************************************************************
	 利用する箇所で、下記を指定書きかえるとカスタマイズできます
		.sweep-to-bottom:before {
			background: ;
			-webkit-transition-duration: 0.3s;
			transition-duration: 0.3s;
		}
		.sweep-to-bottom:hover, .sweep-to-bottom:focus, .sweep-to-bottom:active { color:;}
	*************************************************************************/
	.sweep-to-bottom {
		display: inline-block;
		vertical-align: middle;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		box-shadow: 0 0 1px rgba(0, 0, 0, 0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-osx-font-smoothing: grayscale;
		position: relative;
		-webkit-transition-property: color;
		transition-property: color;
		-webkit-transition-duration: 0.3s;
		transition-duration: 0.3s;
	}
	.sweep-to-bottom:before {
		content: "";
		position: absolute;
		z-index: -1;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #2098d1;
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
		-webkit-transform-origin: 50% 0;
		transform-origin: 50% 0;
		-webkit-transition-property: transform;
		transition-property: transform;
		-webkit-transition-duration: 0.3s;
		transition-duration: 0.3s;
		-webkit-transition-timing-function: ease-out;
		transition-timing-function: ease-out;
	}
	.sweep-to-bottom:hover, .sweep-to-bottom:focus, .sweep-to-bottom:active {
		color: white;
	}
	.sweep-to-bottom:hover:before, .sweep-to-bottom:focus:before, .sweep-to-bottom:active:before {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}
	/* ---------------------------------------------------- Sweep To Bottom */


	/* Left to Right ---------------------------------------------------- */
	/* ***********************************************************************
	 利用する箇所で、下記を指定書きかえるとカスタマイズできます
		.button--left-to-right { background: ;}
		.button--left-to-right:before {
			background: #D2D2D2;
			-webkit-transition: all 0.4s ease-out;
			-moz-transition: all 0.4s ease-out;
			-ms-transition: all 0.4s ease-out;
			transition: all 0.4s ease-out;
		}
	*************************************************************************/	#newly_colum .more a,
	.button--left-to-right {
		position: relative;
		z-index: 1;
		display: block;
		background: #f3f3f3;
		width: 259px;
		height: 28px;
		line-height: 28px;
		overflow: hidden;
	}
		.button--left-to-right:before {
			content: '';
			z-index: -1;
			position: absolute;
			background: transparent;
			left: -50%;
			top: -40px;
			width: 0;
			height: 100px;
			-webkit-border-radius: 50%;
			-moz-border-radius: 50%;
			border-radius: 50%;
			-webkit-transition: all 0.4s ease-out;
			-moz-transition: all 0.4s ease-out;
			-ms-transition: all 0.4s ease-out;
			transition: all 0.4s ease-out;
		}
		.button--left-to-right i.fa-angle-right {
			padding-left: 10px;
			font-size: 80%;
		}
		.button--left-to-right i.fa-angle-left {
			padding-right: 10px;
			font-size: 80%;
		}
		.button--left-to-right:hover:before {
			width: 200%;
			background: #efefef;
		}


/* -----------------------------------
 Header
----------------------------------- */
#header {
	position: relative;
}
	#header > .contents {
		height: 190px;
	}

	h1 {
		position: absolute;
		width: 120px;
		height: 120px;
		font-size: 120%;
		font-weight: normal;
		color: #000;
		line-height: 140px;
		text-align: center;
		padding-top: 22px;
	}
		h1 a {
			display: block;
		}


	/* -----------------------------------
	 Header Navigation
	----------------------------------- */
	#header_nav {
		float: right;
		width: 377px;
	}
		#header_nav li {
			float: right;
		}
			#header_nav li a,
			#header_nav li a:visited {
				display: block;
				height: 37px;
				line-height: 37px;
				text-align: center;
				font-style: italic;
				font-weight: normal;
				letter-spacing: 0.1em;
				text-decoration: none;
				color: #fff;
				font-size: 110%;
			}
			#header_nav li a:hover {
			}
		/* Button English */
		#header_nav .english {}
			#header_nav .english a,
			#header_nav .english a:visited {
				width: 140px;
				background: #64b69f;
			}
			#header_nav .english a:hover {
				}
			#header_nav .english .sweep-to-bottom:before {
				background: #2C997B;
				-webkit-transition-duration: 0.2s;
				transition-duration: 0.2s;
			}

	/* -----------------------------------
	 SNS Icons
	----------------------------------- */
	#header .sns {
		align-items: flex-end;
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-end;
		width: 100%;
		margin-top: 24px;
		float: right;
	}
		#header .sns li {
			margin: 0 0 0 13px;
		}

	/* -----------------------------------
	 Global Navigation
	----------------------------------- */
	#gmenu {
		float: right;
		margin: 20px -15px 0 0;
	}
		#gmenu li {
			display: inline-block;
			margin: 0 9px;
			padding: 0 6px;
		}
			#gmenu a,
			#gmenu a:visited {
				font-family: serif;
				font-size: 101%;
				font-weight: bold;
				position: relative;
				display: inline-block;
				outline: none;
				color: #232323;
				-webkit-transition: color 0.1s ease-in;
				-moz-transition: color 0.1s ease-in;
				transition: color 0.1s ease-in;
			}
			#gmenu a:hover {
				color: #ec544b;
			}
			#gmenu a i.fa {
				font-size: 110%;
			}

	/* -----------------------------------
	 Top Line
	----------------------------------- */
	#topline {
		position: relative;
		background: #faf6ec;
		margin: 35px 0 0;
	}
		#topline .contents {
			background: url(../images/header/topline_img.png) no-repeat right 0;
			height: 95px;
		}
			#topline p {
				padding: 32px 0 0;
				font-size: 100%;
				margin: 0 0 90px;
				line-height: 1.3em;
			}
			#topline .olivia {
				position: absolute;
				letter-spacing: 0.1em;
				text-indent: -0.1em;
				font-size: 280%;
				top: -26px;
				padding: 0;
				margin: 0;
			}

	/* -----------------------------------
	 CONTACT Button
	----------------------------------- */
	#btn_contact {
		display: block;
		position: fixed;
		bottom: 0;
		height: 112px;
		right: 0;
		width: 123px;
		z-index: 100;
	}
	#btn_contact div::before {
		border: 0px solid transparent;
		border-top: 112px solid transparent;
		border-right: 123px solid #f96e65;
		content: "";
		display: inline-block;
		position: absolute;
		bottom: 0;
		right: 0;
		height: 0;
		width: 0;
	}
		#btn_contact p {
			color: #fff;
			font-size: 92%;
			margin: 66px 0 0 35%;
			position: relative;
			text-align: center;
			width: 65%;
		}
		#btn_contact p::before {
			background: url(../images/common/icon_mail.png) no-repeat center center;
			content: "";
			display: block;
			height: 14px;
			width: 100%;
			margin-bottom: 4px;
		}

	/* -----------------------------------
	 Main Contents
	----------------------------------- */
	#maincontents {
		width: 630px;
		float: left;
	}
		#maincontents h3 {
			background: #f8f5f3;
			border-left: 5px solid #fccac3;
			font-size: 130%;
			padding: 0 12px;
			height: 38px;
			line-height: 38px;
		}
			#maincontents h3 small {
				font-size: 60%;
				letter-spacing: 0em;
				margin: 0 0 0 10px;
			}

		/* wp pagenavi */
		.wp-pagenavi {
			width: 100%;
			text-align: right;
			font-family: 'Lora';
		}
			.wp-pagenavi > * {
				display: inline-block;
				padding: 0 11px;
				height: 37px;
				line-height: 37px;
				box-sizing: border-box;
				background: #fff;
				border: 1px solid #f7c4c1;
				text-align: center;
				color: #f3827b;
				margin: 2px;
			}
			.wp-pagenavi a,
			.wp-pagenavi a:visited {
				color: #f3827b;
			}
			.wp-pagenavi .pages {}
			.wp-pagenavi .current {
				background: #f7c4c1;
				color: #fff;
			}

/* -----------------------------------
 Sidebar
----------------------------------- */
#sidebar {
	float: right;
	width: 310px;
}

	/* -----------------------------------
	 Banners
	----------------------------------- */
	#sidebar .bnrs {
		margin: -15px 0 20px;
	}
		#sidebar .bnrs li {
			margin: 15px 0;
		}

	/* -----------------------------------
	 Mail Magazine
	----------------------------------- */
	#sidebar .mailmagazine {
		background: #85bfe5;
		padding: 22px 20px 10px;
		margin: 0 0 35px;
	}
		#sidebar .mailmagazine h3 {
			font-style: italic;
			background: url(../images/sidebar/mailmagazine_img.png) no-repeat right 3px;
			color: #fff;
			font-size: 180%;
			padding: 0;
			border: none;
			margin: 0;
		}
			#sidebar .mailmagazine h3 small {
				color: #fff;
				font-size: 45%;
				font-style: normal;
				display: block;
				line-height: 1.4em;
			}
		#sidebar .mailmagazine p {
			color: #fff;
		}

		#sidebar .mailmagazine .form_wrapper {
			background: #fff;
			padding: 10px 15px;
			margin: 12px 0;
		}
			#sidebar .mailmagazine .form_wrapper > p {
				color: #666;
				font-size: 80%;
			}
			#sidebar .mailmagazine .form_wrapper form {
				margin: 7px;
			}
				#sidebar .mailmagazine .form_wrapper ul li {
					margin: 8px 0;
				}
					#sidebar .mailmagazine .form_wrapper label {
						display: inline-block;
						width: 50px;
						margin-right: 6px;						
					}
					#sidebar .mailmagazine .form_wrapper input[type=text],
					#sidebar .mailmagazine .form_wrapper input[type=email] {
						display: inline-block;
						background: #fff;
						border: 1px solid #cecece;
						-webkit-border-radius:2px;
						-moz-border-radius:2px;
						border-radius:2px;
						box-shadow:rgba(113, 135, 164, 0.227451) 0px 0px 6px 0px inset;
						-webkit-box-shadow:rgba(113, 135, 164, 0.227451) 0px 0px 6px 0px inset;
						-moz-box-shadow:rgba(113, 135, 164, 0.227451) 0px 0px 6px 0px inset;
						padding: 3px 7px;
						box-sizing: border-box;
						font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
						font-size: 90%;
						width: 170px;
					}
					#sidebar .mailmagazine .form_wrapper input:-webkit-input-placeholder,
					#sidebar .mailmagazine .form_wrapper input::-moz-placeholder,
					#sidebar .mailmagazine .form_wrapper input:-moz-placeholder,
					#sidebar .mailmagazine .form_wrapper input:-ms-input-placeholder {
						color: #c6c6c6;
					}
					#sidebar .mailmagazine .form_wrapper input[type=submit] {
						position: relative;
						z-index: 1;
						border: none;
						background: #f8b734;
						-webkit-border-radius: 2px;
						-moz-border-radius: 2px;
						border-radius: 2px;
						float: right;
						text-align: center;
						color: #fff;
						font-size: 100%;
						font-family: Lora, serif;
						width: 118px;
						height: 34px;
						cursor: pointer;
						box-sizing: border-box;			
					}
					#sidebar .mailmagazine .form_wrapper input[type=submit]:hover {
						background: #FFB114;
					}

		#sidebar .mailmagazine a,
		#sidebar .mailmagazine a:visited {
			color: #fff;
			text-decoration: underline;
			font-size: 90%;
		}
		#sidebar .mailmagazine a:hover {
			text-decoration: none;
		}



	/* -----------------------------------
	 Newly
	----------------------------------- */
	#newly {
		margin: 20px 0 0;
	}
		#newly .tab {
			width: 100%;
		}
			#newly .tab li {
				float: left;
			}
			#tab_newly_colum { width: 87px;}
			#tab_newly_twitter { width: 97px;}
			#tab_newly_facebook { width: 125px;}
				#newly .tab a,
				#newly .tab a:visited {
					text-align: center;
					height: 51px;
					line-height: 51px;
					border: 1px solid #c1c1c1;
					width: 100%;
					box-sizing: content-box;
					margin-left: -1px;
				}
				#newly .tab li:first-child a,
				#newly .tab li:first-child a:visited {
					margin-left: 0;
				}
				#newly .tab a:hover { border-bottom: 1px solid #c1c1c1;}
				#newly .tab a.selected,
				#newly .tab a.selected:hover { border-bottom: 1px solid transparent;}

		#newly .tab_content {
			position: relative;
			border: 1px solid #c1c1c1;
			border-top: none;
			width: 100%;
			box-sizing: border-box;
			padding: 23px;
			margin-top: -1px;
			min-height: 600px;
		}
			#newly .tab_content > div {
				filter: alpha(opacity=0);
				-moz-opacity: 0;
				opacity: 0;
			}
			/* Colum */
			#newly_colum.ie8 {
				padding: 15px;
				border: 1px solid #c1c1c1;
			}
				#newly_colum.ie8 .colum_ttl {
					font-size: 120%;
				}

				#newly_colum ul {
					margin: -15px 0 0;
				}
				#newly_colum.ie8 ul {
					margin: 10px auto 0;
				}
				#newly_colum li {
					padding: 15px 0;
					border-bottom: 1px dotted #c1c1c1;
				}
					#newly_colum .thumb {
						float: left;
						width: 80px;
						height: 80px;
						-moz-box-shadow: rgb(255, 255, 255) 0px 0px 0px 2px inset;
						-webkit-box-shadow: rgb(255, 255, 255) 0px 0px 0px 2px inset;
						box-shadow: rgb(255, 255, 255) 0px 0px 0px 2px inset;
						border: 1px solid #ccc;
						background-position: center center;
						-webkit-background-size: cover;
						-moz-background-size: cover;
						-o-background-size: cover;
						background-size: cover;
						-webkit-transition: opacity 0.2s ease;
						transition: opacity 0.2s ease;
					}
							#newly_colum a:hover .thumb {
								-webkit-transition: opacity 0.1s ease-out;
								transition: opacity 0.1s ease-out;
								filter: alpha(opacity=70);
								-moz-opacity: 0.7;
								opacity: 0.7;
							}
							#newly_colum li a > div {
								float: right;
								width: 178px;
								padding: 0 0 0 12px;
								box-sizing: border-box;
							}
							#newly_colum.ie8 li a > div {
								width: 198px;
							}
								#newly_colum li a > div p {
									font-size: 80%;
									color: #444444;
									margin: 5px 0 0;
									transition: all 0.1s ease-out;
								}
								#newly_colum li a:hover > div p { color: #f3827b;}
								#newly_colum .date {
									color: #273033;
									font-size: 70%;
									margin: 0;
									font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
								}
								#newly_colum .category {
									border: 1px solid #8c8c8c;
									padding: 1px 2px;
									font-size: 70%;
									width: 100%;
									line-height: 1.2;
								}
								#newly_colum a:hover .category {
									border: 1px solid #f3827b;
									background: #f3827b;
									color: #fff;
								}
				#newly_colum .more {
					margin: 20px 0 0;
				}
					#newly_colum .more .fa-angle-right {
						padding-left: 10px;
						color: #999;
					}
					#newly_colum .more .fa-angle-left {
						padding-right: 10px;
						color: #999;
					}
					#newly_colum .more a,
					#newly_colum .more a:visited {
						position: relative;
						z-index: 1;
						display: block;
						background: #f3f3f3;
						width: 259px;
						height: 28px;
						line-height: 28px;
						font-style: italic;
						text-align: center;
						-webkit-border-radius: 14px;
						-moz-border-radius: 14px;
						border-radius: 14px;
						font-size: 80%;
						-moz-transition: all .2s ease;
						-webkit-transition: all .2s ease;
						transition: all .2s ease;
					}
					#newly_colum .more a:hover {
						background: #e3e3e3;
					}

			/* Twitter */
			#newly_twitter {
				position: absolute;
				top: 15px;
				left: 15px;
			}
				#newly_twitter .twitter-timeline {
				}

			/* facebook */
			#newly_facebook {
				position: absolute;
				top: 15px;
				left: 15px;
			}

/* -----------------------------------
 Banners
----------------------------------- */
#footer_bnrs {
	clear: both;
	margin-top: 50px;
	margin-bottom: 20px;
	text-align: center;
}
	#footer_bnrs .slick-carousel {
		width: 980px;
		margin: 20px auto 0;
		opacity: 0;
	}
		#footer_bnrs .slick-carousel div {
			text-align: center;
			margin: 0 12px;
		}

		#footer_bnrs .slick-carousel .slick-list {
			width: 880px;
			margin: 0 auto;
		}

		#footer_bnrs button {
			border: none;
			background: transparent;
		}
		#footer_bnrs button.slick-prev,
		#footer_bnrs button.slick-next {
			background: #f1f1f1;
			position: absolute;
			top: 0;
			height: 90px;
			width: 24px;
			color: #aaa;
			text-align: center;
			cursor: pointer;
			outline: none;
			-moz-transition: all .2s ease;
			-webkit-transition: all .2s ease;
			transition: all .2s ease;
		}
			#footer_bnrs button.slick-prev:hover,
			#footer_bnrs button.slick-next:hover {
				background: #e3e3e3;
			}
		#footer_bnrs button.slick-prev {
			left: 0;
		}
		#footer_bnrs button.slick-next {
			right: 0;
		}

		#footer_bnrs .slick-dots {
			width: 100%;
			text-align: center;
			margin-top: 20px;
		}
			#footer_bnrs .slick-dots li {
				width: 20px;
				height: 20px;
				display: inline-block;
			}
			#footer_bnrs .slick-dots li button {
				color: transparent;
				display: block;
				font-size: 0;
				padding: 0;
				line-height: 10px;
				width: 10px;
				height: 10px;
				cursor: pointer;
				outline: none;
				background: #f1f1f1;
				border-radius: 50%;
				behavior: url(./js/PIE.htc);
			}
				#footer_bnrs .slick-dots li button:hover {
					background: #e3e3e3;
				}
			#footer_bnrs .slick-dots li.slick-active button {
				background: #fccac3;				
			}

/* -----------------------------------
 Back To Top
----------------------------------- */
.back_to_top {
	margin-top: 30px;
	text-align: center;
}
	.back_to_top a,
	.back_to_top a:visited {
		position: relative;
		display: inline-block;
		width: 199px;
		height: 32px;
		line-height: 32px;
		-webkit-border-radius: 32px;
		-moz-border-radius: 32px;
		border-radius: 32px;
		border: 1px solid #d0d0d0;
		background: #fff;
		text-align: center;
		font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		font-size: 80%;
		color: #555353;
		filter: alpha(opacity=80);
		-moz-opacity: 0.8;
		opacity: 0.8;
	}
	.back_to_top a:hover {}
	.back_to_top a:before { background: #e7e7e7;}

/* -----------------------------------
 Bread Crumbs
----------------------------------- */
#breadcrumbs {
	font-size: 70%;
	border-top: 1px solid #e4e1da;
	border-bottom: 1px solid #e4e1da;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-style: italic;
	padding: 10px 0;
	margin: 30px 0 -50px;
}
	#breadcrumbs .contents {
		overflow: hidden;
	}
		#breadcrumbs ol {
			margin: 0 0 0 -30px;
		}
			#breadcrumbs li {
				display: inline-block;
				margin: 0 0 0;
			}
			#breadcrumbs li:before {
				content: ">";
				display: inline-block;
				color: #f59b96;
				margin: 0 15px;
				font-style: normal;
			}

				#breadcrumbs a,
				#breadcrumbs a:visited {
					color: #f59b96;
					text-decoration: none;
					transition: all 0.2s ease-out;
				}
				#breadcrumbs a:hover {
					color: #ec544b;
				}

/* -----------------------------------
 Footer
----------------------------------- */
#footer {
	background: #f3f3f3;
	margin: 50px 0 0;
	padding: 34px 0;
}

	/* -----------------------------------
	 About
	----------------------------------- */
	#about {
		float: left;
		width: 400px;
	}
		#about h4 {
			font-size: 180%;
		}
			#about h4 small {
				font-family: Lora;
				font-style: italic;
				font-size: 60%;
				letter-spacing: 0em;
				margin: 0 0 0 3px;
			}
		#about .profile {
			margin: 0 0 10px;
		}
			#about .profile > p {
				font-size: 70%;
				float: left;
				line-height: 1.3em;
				margin: 5px 0 0;
			}
			#about .profile .sns {
				display: inline-block;
				margin: 7px 0 0 5px;
			}
				#about .profile .sns li {
					float: left;
					margin: 0 0 0 7px;
				}

		#about > div {}
			#about .thumb {
				float: left;
			}
			#about > div > div {
				float: right;
				width: 280px;
			}
				#about > div > div p {
					font-size: 70%;
					line-height: 1.5em;
				}
				#about .btns {
					margin: 7px 0 0 -7px;
				}
					#about .btns li {
						display: inline-block;
						margin: 0 0 0 7px;
					}
						#about .btns a,
						#about .btns a:visited {
							display: block;
							height: 28px;
							line-height: 28px;
							text-align: center;
							color: #fff;
							-webkit-border-radius: 14px;
							-moz-border-radius: 14px;
							border-radius: 14px;
							font-size: 80%;
						}

						#about .btns .profile a { background: #f3827b; width: 107px;}
						#about .btns .profile a.button--left-to-right:before { background: #F96E65;}

						#about .btns .contact a { background: #64b69f; width: 130px;}
						#about .btns .contact a.button--left-to-right:before { background: #2C997B;}
						#about .btns a:hover {}

						#about .btns a i.fa {
							padding-left: 10px;
							font-size: 80%;
						}

	/* -----------------------------------
	 Site Navigation
	----------------------------------- */
	#site_nav {
		float: right;
	}
		#site_nav > ul {
			float: left;
			border-left: 1px dotted #c5c4c4;
			padding: 0 33px;
			max-width: 290px;
		}
			#site_nav > ul li {
				margin: 21px 0;
			}
				#site_nav > ul > li a,
				#site_nav > ul > li a:visited {
					font-family: Arial, Helvetica, sans-serif;
					color: #f3827b;
					font-weight: bold;
					transition: all 0.1s ease-out;
				}
				#site_nav > ul > li a:hover {
					filter: alpha(opacity=70);
					opacity: 0.7;
					opacity: 0.7;
				}

				#site_nav .sub_nav {
					margin: 10px 0 31px 10px;
				}
					#site_nav .sub_nav li {
						margin: 0;
					}
						#site_nav .sub_nav a,
						#site_nav .sub_nav a:visited {
							color: #4c4c4c;
							font-size: 80%;
							font-weight: normal;
						}
						#site_nav > ul > li > ul a:hover {}

	/* -----------------------------------
	 Copyright
	----------------------------------- */
	#copy {
		text-align: right;
		padding: 30px 0;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 70%;
	}

	/* -----------------------------------
	 Scroll To Top
	----------------------------------- */
	#scroll_to_top {
	    position: fixed;
		right: 40px;
		bottom: 100px;
		display: none;
	}
		#scroll_to_top a {
			display: block;
			cursor: pointer;
			z-index: 20;
			color: #ccc;
			text-align: center;
			line-height: 30px;
			font-size: 300%;
			transition: all 0.2s ease-out;
		}
		#scroll_to_top a:hover {
			color: #F96E65;
		}

/* -----------------------------------
 #love-momi
----------------------------------- */
#love-momi {
	padding: 3em 0 0;
}

#love-momi h2 {
	position: relative;
	text-align: left;
	font-size: 180%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #000;
	background: url(../images/common/lbl_heart.png) no-repeat 0 0;
	height: 40px;
	line-height: 40px;
	padding: 0 0 0 78px;
	overflow: hidden;
	margin-bottom: 1em;
}
#love-momi h2:after {
	position: absolute;
	content: "";
	display: inline-block;
	background: #fff;
	border-top: 3px solid #f7c4c1;
	border-bottom: 1px solid #f7c4c1;
	height: 2px;
	width: 100%;
	margin: 0 0 0 20px;
	top: 17px;
}

/* -----------------------------------
 #Counseling
----------------------------------- */
#counseling {
	padding: 3em 0 0;
}

#counseling h2 {
	position: relative;
	text-align: left;
	font-size: 180%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #000;
	background: url(../images/common/lbl_heart.png) no-repeat 0 0;
	height: 40px;
	line-height: 40px;
	padding: 0 0 0 78px;
	overflow: hidden;
	margin-bottom: 1em;
}
#counseling h2:after {
	position: absolute;
	content: "";
	display: inline-block;
	background: #fff;
	border-top: 3px solid #f7c4c1;
	border-bottom: 1px solid #f7c4c1;
	height: 2px;
	width: 100%;
	margin: 0 0 0 20px;
	top: 17px;
}
#counseling #form {
	padding: 1em;
}
#counseling #form table tr th,
#counseling #form table tr td {
	padding: .6em 0;
}
#counseling #form table tr th {
	width: 20%;
}
#counseling #form table tr td input[type=submit] {
	padding: .2em 1em;
}

/* -----------------------------------
 #Seminar
----------------------------------- */
#seminar {
	padding: 3em 0 0;
}

#seminar h2 {
	position: relative;
	text-align: left;
	font-size: 180%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #000;
	background: url(../images/common/lbl_heart.png) no-repeat 0 0;
	height: 40px;
	line-height: 40px;
	padding: 0 0 0 78px;
	overflow: hidden;
	margin-bottom: 1em;
}
#seminar h2:after {
	position: absolute;
	content: "";
	display: inline-block;
	background: #fff;
	border-top: 3px solid #f7c4c1;
	border-bottom: 1px solid #f7c4c1;
	height: 2px;
	width: 100%;
	margin: 0 0 0 20px;
	top: 17px;
}
#seminar #form {
	padding: 1em;
}
#seminar #form table tr th,
#seminar #form table tr td {
	padding: .6em 0;
}
#seminar #form table tr th {
	width: 20%;
}
#seminar #form table tr td input[type=submit] {
	padding: .2em 1em;
}


/* -----------------------------------
 Body
----------------------------------- */
@media screen and ( max-width:768px ) {
	html, body {
		width: 1060px;
	}
}

/* Footer ReCaptcha */
.rc-anchor-invisible {
	display: none!important;
}