/*
Theme Name: thanksai
Theme URI: //wordpress.org/extend/themes/twentytwelve
Author: the WordPress team
Author URI: //wordpress.org/
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 1.1
License: GNU General Public License v2 or later
License URI: //www.gnu.org/licenses/gpl-2.0.html
Tags: light, gray, white, one-column, two-columns, right-sidebar, flexible-width, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: twentytwelve

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

//snook.ca/archives/html_and_css/font-size-with-rem
//blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style:none;
}
li {
	margin:0 20px;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
    display: block;
    border: 0;
    -ms-interpolation-mode: bicubic;
    height: auto;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}
a{
    outline: none;
}
a:focus{
    outline: none;
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
textarea,
select {
	border: 1px solid #ccc;
	/*border-radius: 3px;*/
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
    line-height: normal;
	padding: 9px;
}
textarea {
	font-size: 100%;
	overflow: auto;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	/*
	border-radius: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	*/
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
	padding:0 76px;
}
.archive .site-content nav {
	display:none;
}


/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 12px;
}
body {
	background:#fff;
	font-size: 14px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic","Microsoft Yahei","PingHei","Malgun Gothic","Yoon Gothic", sans-serif;
	color: #333;
	min-width: 980px;
	line-height:1.2;
}
a {
	color:#036EB7;
}
a:hover {
	filter: alpha(opacity=50);
	-moz-opacity:0.50;
	opacity:0.50;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	display:none;
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:hover,
.main-navigation .assistive-text:active,
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
#page {
}
.site {
}
.site-content {
}
.widget-area {
}

/* Header */
#header_wrap {
	width:100%;
}
.site-header {
	position:relative;
	width:950px;
	margin:auto;
}
#hgroup {
}
#logo {
	position:absolute;
	top:20px;
	right:0;
	z-index: 1000;
}
.site-title {
	position:absolute;
	top:23px;
	color:#7F7F7F;
	font-size:13px;
	font-weight:normal;
}
.name_wrap{
	background:#56AA32;
}
h2.name{
	background:none;
	font-size:11px;
	color:#fff;
	padding:3px 0;
	width:950px;
	margin: 0 auto;
	font-weight:normal;
}
.site-description {
	display:none;
}
.head_info {
	position:absolute;
	top:20px;
	right:0;
}
.head_menu {
	border-top: 1px dotted #ccc;
    color: #666;
    padding-top: 5px;
    position: absolute;
    right: 0;
    top: 75px;
}
.head_menu ul li {
	list-style:none;
	float:left;
	margin:0
}
.head_menu ul li a {
	color:#000;
	border-left:1px solid #d2d2d2;
	padding:0 10px;
	text-decoration:none;
}
.head_menu ul li a:hover {
	text-decoration:underline;
}
#main_wrapper{
	
}
#main {
	width:950px;
	margin:auto;
	position:relative;
}
.home #main {
	height: 3880px;
}
#primary {
	
}
#secondary {
	background: url("images/page_bg.png");
    float: right;
    padding: 15px;
    width: 200px;
}
#secondary img {
	margin-bottom:10px;
}
#secondary a:hover img {
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.5;
}

/* flipsnap */
.topimg_wpra {
	position:absolute;
	left:-485px;
	top:0;
	z-index: 1;
}
.topimg_wpra2 {
	position:relative;
	width:950px;
	margin:auto;
}
.topimg {
	width:950px;
	margin:auto;
}
.topimg_wpra2 a img:hover {
	filter: alpha(opacity=65);
	-moz-opacity:0.65;
	opacity:0.65;
}
#page {
	overflow:hidden;
}
.viewport {
	width: 950px;
	overflow: hidden;
	margin: 0 auto;
	-webkit-transform: translateZ(0); /* Optional: When heavy at iOS6+ */
}
.flipsnap {
	width: 999999px; /* 320px(item width) * 3(item count) */
}
.flipsnap:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
}
.item {
	/*float: left;
	width: 950px;
	margin:0 20px 0 0;*/
}
.item .text{
	left: 510px;
    position: absolute;
    top: 280px;
    width: auto !important;
}
.item05 .text{
    top: 380px;
}
.pointer {
	position:absolute;
	right:10px;
	bottom:10px;
	text-align: center;
}
.pointer span {
	cursor:pointer;
	border-radius: 10px;
	display: inline-block;
	height: 10px;
	width: 10px;
	background:#fff;
}
.pointer span.current {
	background:#59B200;
}
.prevBtn {
	cursor:pointer;
	position:absolute;
	left:-25px;
	top:220px;
}
.nextBtn {
	cursor:pointer;
	position:absolute;
	right:-25px;
	top:220px;
}
.prevBtn:hover,
.nextBtn:hover {
	filter: alpha(opacity=65);
	-moz-opacity:0.65;
	opacity:0.65;
}

/* Navigation Menu */
#site-navigation {
	height:280px;
	width:580px;
	background:url(../images/menu_bg.png) no-repeat -15px 0;
	position:fixed;
	left:0;
	top:0;
	z-index: 1000;
}
#site-navigation ul {
	margin: 15px 0 0 20px;
    padding: 0;
    width:210px;
	list-style:none;
}
.en #site-navigation ul {
    width:175px;
}
#site-navigation ul li {
	margin:0 0 6px;
	padding:0;
	/*overflow:hidden;*/
}
#site-navigation ul li#menu-item-29{
	margin:0 0 10px;
}
#site-navigation ul li a {
	color:#fff;
	text-decoration:none;
	font-size:13px;
	/*font-weight:bold;*/
	line-height: 1;
	font-family:"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
#site-navigation ul li a img {
	display:block;
	margin:0 auto;
	width: 160px;
}
#site-navigation ul li a:hover {
}
.h_menu{
	left: 145px;
    position: absolute;
    top: 48px;
}
.h_menu a{
	color:#fff;
	text-decoration:none;
	font-size:13px;
	line-height: 1;
	font-family:"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
/*.en .h_menu{
	left: 120px;
}*/
.lang_sel{
	width:105px;
	margin:5px 0 0;
	padding:5px 0;
	font-size:11px;
	background:url(images/flag_sel.png) no-repeat right center #f8f8f8;
}
.lang_sel.active{
	background:url(images/flag_sel_on.png) no-repeat right center #f8f8f8;
}
#lang{
	display:none;
	margin:0 !important;
	width:105px !important;
}
#lang li{
	margin:0 !important;
	font-size:11px;
	border-top:1px solid #fff;
}
#lang li span{
	display:block;
	width:70px;
	padding:5px 0;
}
#lang a{
	color: #333 !important;
	text-decoration: none;
	font-size: 11px !important;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif" !important;
}
.h_menu .lang_sel span{
	background:url(images/flag_earth.png) no-repeat 7px center;
	background-size: auto 100%;
	padding-left:30px;
}
.h_menu #ru span{
	font-family: "Times New Roman","Times",serif;
}
#site-navigation ul#lang{
	margin-left: 25px !important;
    width: 80px !important;
}
#site-navigation ul#lang li{
	background: #f8f8f8;
    padding-left: 5px !important;
}
/*.h_menu #ja span{
	background:url(images/flag_ja.png) no-repeat 5px center #f8f8f8;
	padding-left:35px;
}
.h_menu #en span{
	background:url(images/flag_en.png) no-repeat 5px center #f8f8f8;
	padding-left:35px;
}
.h_menu #vi span{
	background:url(images/flag_vi.png) no-repeat 5px center #f8f8f8;
	padding-left:35px;
}
.h_menu #zh span{
	background:url(images/flag_zh.png) no-repeat 5px center #f8f8f8;
	padding-left:35px;
}
.h_menu #ko span{
	background:url(images/flag_ko.png) no-repeat 5px center #f8f8f8;
	padding-left:35px;
}
.h_menu #th span{
	background:url(images/flag_th.png) no-repeat 5px center #f8f8f8;
	padding-left:35px;
}
.h_menu #id span{
	background:url(images/flag_id.png) no-repeat 5px center #f8f8f8;
	padding-left:35px;
}
.h_menu #ar span{
	background:url(images/flag_ar.png) no-repeat 5px center #f8f8f8;
	padding-left:35px;
}
.h_menu #ru span{
	background:url(images/flag_ru.png) no-repeat 5px center #f8f8f8;
	padding-left:35px;
	font-family: "Times New Roman","Times",serif;
}
.h_menu #de span{
	background:url(images/flag_de.png) no-repeat 5px center #f8f8f8;
	padding-left:35px;
}
.h_menu #es span{
	background:url(images/flag_es.png) no-repeat 5px center #f8f8f8;
	padding-left:35px;
}*/
.lang_sel:hover,
#lang li:hover{
	cursor:pointer;
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.5;
}
.h_menu select{
	padding:0;
	clear:both;
	display: block;
	margin-top: 5px;
	/*display:none;*/
}
.h_menu img{
	margin-right:5px;
}
#main {
	position:relative;
}
.breadcrumbs {
	text-align: right;
	font-size:11px;
	color:#666;
	margin: 10px auto;
}
.breadcrumbs a {
	text-decoration:none;
	color:#036EB7;
}
.breadcrumbs a:hover {
	text-decoration:underline;
}
.side1 {
	margin-bottom:10px;
}
.side1 a img:hover {
	filter: alpha(opacity=65);
	-moz-opacity:0.65;
	opacity:0.65;
}
.side_line {
	margin:20px 0;
}
.side_lists_wrap1 {
	border:1px solid #E7E4D9;
	margin-bottom:10px;
}
.side_lists_wrap2 {
	border:1px solid #fff;
	background:#F9F8F5;
	padding:20px;
}
.side_lists li {
	padding:0;
	margin:0;
	list-style:none;
}
.side_lists li a {
	color:#333;
	text-decoration:none;
	display:block;
	padding:12px 12px 12px 22px;
	background-color:#F4F3F0;
	border-bottom:1px dotted #999;
	background-image:url(./images/arrow1.png);
	background-repeat:no-repeat;
	background-position:10px center;
}
.side_lists li:nth-child(2n) a {
	background-color: transparent;
}
.side_lists li a:hover {
	background-color:#fff;
}
.side_dtl {
	margin-top:10px;
}
.side_dtl:hover {
	filter: alpha(opacity=65);
	-moz-opacity:0.65;
	opacity:0.65;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #21759b;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
#footer_wrap {
	/*margin-top:40px;*/
	background:#fff;
	position: relative;
    z-index: 100;
	clear: both;
}
.foot_menu_wrap{
	background:#333;
}
.foot_menu{
	height:0px;
	padding:5px 0;
	width:950px;
	margin:0 auto;
}
.foot_menu .ftbtn{
	/*background: url("images/ft_signup_bg.png") no-repeat;
    color: #fff;
    display: block;
    font-size: 20px;
	font-weight:bold;
    height: 20px;
    padding: 12px 0 8px;
    text-align: center;
    text-decoration: none;
    width: 389px;*/
	float:left;
	margin-right:10px;
}
.foot_menu ul.sns{
	list-style:none;
	margin:0;
}
.foot_menu ul.sns li{
	float:left;
	margin:0;
}
#colophon {
	position:relative;
	width:1080px;
	margin: auto;
	padding:40px 0;
}
#colophon .info{
    width: 250px;
    height: 300px!important;
    border-right: 1px solid #ccc;
}
#colophon .info p{
	margin:10px 0;
}
#colophon ul {
	float:left;
}
#colophon .ft01 {
	left:280px;
	position:absolute;
	top:40px;
	
}
#colophon .ft001 {
	margin-left: 0px;

}
#colophon .ft002 {
	margin-left: 15px;
}
#colophon .ft003 {
	margin-left: 15px;
}
#colophon .ft004 {
	margin-left: 15px;
}
#colophon .ft005 {
	margin-left: 15px;
}
#colophon .ft006 {
	margin-left: 15px;
}
#colophon .ft007 {
	margin-left: 15px;
}
#colophon ul li{
	margin:0;
}
#colophon ul li a{
	color:#333;
	font-weight:bold;
	display:block;
	font-size:13px;
	text-decoration:none;
	margin:0 0 8px;
	letter-spacing: -0.5px;
}
#colophon ul li li a{
	color:#666;
	font-weight:normal;
	display:block;
	padding-left:15px;
	background:url(images/arr_ft.png) no-repeat left center;
}
#colophon ul li li li{
	margin-left:15px;
}
#colophon ul li li li a{
	color:#999;
	font-size: 12px;
	font-weight:normal;
	display:block;
	padding-left:10px;
	background:url(images/arr_ft2.png) no-repeat left center;
}
#colophon ul .link li a{
	color:#666;
	font-weight:normal;
	display:block;
	padding-left:15px;
	background:url(images/link_win.png) no-repeat left center;
}
#colophon ul .link li.none a{
	padding-left:0;
	background:none;
}
#menu-footer_nav:after {
    content: '';
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
#menu-footer_nav li {
	float:left;
	margin:0 0 15px 0;
	padding:0;
	border-right:1px solid #666;
}
#menu-footer_nav .menu-item-30,
#menu-footer_nav .menu-item-25 {
	border-right:none;
}
#menu-footer_nav li a {
	padding: 0 5px;
	color:#666;
	text-decoration:none;
}
#menu-footer_nav li a:hover {
	text-decoration:underline;
}
#cright {
	font-size:10px;
	padding:15px 0 0;
	margin:65px 0 0 !important;
	color:#666;
	text-align:center;
	clear:both;
}


/* =Main content and comment content
-------------------------------------------------------------- */
#content {
}
.hentry {
}
.entry-meta {
	clear: both;
}
.entry-header {
}
.entry-header img.wp-post-image {
}
.entry-header .entry-title {
}
.page .entry-header {
}
.page .entry-title {
	display: none;
}
.entry-header .entry-title a {
	line-height: 20px;
}
.entry-header .entry-format {
}
.entry-header .comments-link {
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}

.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter {
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
}
.entry-content dl,
.comment-content dl {
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
}
.entry-content table caption,
.comment-content table caption {
}
.entry-content th,
.comment-content th {
	white-space:nowrap;
	padding:1em;
}
.entry-content td,
.comment-content td {
	padding:1em;
}
.blog .site-content article,
.single .site-content article {
	margin-bottom: 35px;
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}
.fb-page{
	display: block !important;
	margin: 0 auto 50px;
	text-align: center;
}

/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area li.bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;

	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}

/* =Media queries
-------------------------------------------------------------- */
.main-navigation li ul {
	display: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	z-index: 10;
	left:0;
}
.main-navigation li ul ul {
	position:relative;
	z-index: 10;
	top: 0;
	left: 100%;
}
.main-navigation ul li:hover > ul {
	border-left: 0;
	display: block;
}
.main-navigation li ul li a {
	color:#fff;
	background: #371724;
	border-top: 1px solid #ededed;
	display: block;
	font-size: 12px;
	padding: 14px 10px;
	line-height:1;
}
.main-navigation li ul li a:hover/*,
.main-navigation li.current-menu-item a*/ {
	background: #6A304A;
	color: #fff;
}

/* =pages
----------------------------------------------- */
/* 共通 */
h2 {
	z-index:10;
	font-size:45px;
	font-weight:lighter;
	line-height:1;
	margin:0 0 20px;
	padding: 0;
	color:#333;
	font-family:"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
h3 {
	font-size:22px;
	line-height:1.2;
	margin:0 0 15px;
	color:#036EB7;
	font-weight:lighter;
	padding:0;
	font-family:"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.h3_title{
	font-size:20px;
	font-weight:normal;
	margin:20px 0;
	background:none;
	padding:0;
}
ul li h3 {
	margin:10px 0;
}
h4 {
	font-size:16px;
	line-height:1.2;
	margin:0 0 10px;
	padding:5px 10px;
}
.line {
}
.pink {
	color:#036EB7;
}
p {
	position:relative;
	z-index:10;
	font-size:14px;
	line-height:1.5;
	margin-bottom:1em;
}
.entry-content {
}
.entry-content:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
}
.page .entry-content {
}
.table {
	width:100%;
	border-collapse: separate;
	border-spacing: 2px;
	background-color: #ddd;
	font-size:14px;
	line-height: 1.2;
}
.table th {
	background:#eee;
	padding:12px 24px;
	text-align:center;
}
.table td {
	padding:12px 24px;
	background:#fff;
}
.tc {
	text-align:center;
}
strong {
	/*color:#59B200;*/
}
.page_title{
	margin: 130px 0 140px;
}
.page_title h2,
.page_title h3{
	text-align:right;
}
.page_title h2{
	font-size: 28px;
    letter-spacing: 2px;
    margin: 30px 0;
}
.con_top_wrap{
	position: relative;
	overflow: hidden;
	padding: 0 0 80px 0;
}
.con_top_wrap:before {
	content: "";
    height: 7000px;
    left: 400px;
    margin: 3% -10% 0;
    position: absolute;
    top: 650px;
    width: 7000px;
	background: url("../images/top_bg06.png");
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(-27deg);
	-ms-transform: rotate(-27deg);
	transform: rotate(-27deg);
	/*z-index: -1;*/
}
.ie7 .con_top_wrap:before,
.ie8 .con_top_wrap:before {
	display:block;
    height: 10000px;
    left: -410px;
    margin: 0;
    position: absolute;
    top: 0;
    width: 3000px;
	background: url("images/top_bg06.png");
}
.ie_bg{
	display:none;
}
/*.ie8 .ie_bg {
	display:block;
    height: 10000px;
    left: -410px;
    margin: 0;
    position: absolute;
    top: 0;
    width: 3000px;
	background: url("images/top_bg06.png");
	z-index:0;
}
.ie8 .con_page_wrap {
    position:relative;
	z-index:10;
}*/
.con_top{
	width:900px;
	margin:0 auto;
	position:relative;
}
.bgslideshow {
	left: 0;
    min-width: 100%;
	min-height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
	background-size:cover !important;
}
.bgslideshow img {
	position: absolute; 
	left:0; 
	top:0; 
	min-height:100%;
	min-width:100%;
	height: auto; 
	width:100%;
	display:none;
}
.ipad .bgslideshow img {
	min-height:100%;
	min-width:100%; 
	height: 100%; 
	width:auto;
}
.center{
	text-align:center;
	line-height:25px;
}
.link_more{
    background: url(images/link_more_page.png) no-repeat;
    color: #fff;
    display: block;
    font-size: 20px;
    height: 24px;
    padding: 8px 0 8px;
    text-align: center;
    text-decoration: none;
    width: 370px;
}


/* =TOP
----------------------------------------------- */
.top_con{
	position:absolute;
	right:-485px;
	width:1920px;
}
.top_con01{
	top:320px;
	z-index:2;
}
.top_left{
	position:absolute;
	left:485px;
	z-index:10;
}
.top_right{
	position:absolute;
	right:485px;
	z-index:10;
}
.top_center{
	position:absolute;
	right:740px;
	z-index:10;
}
.top_right h2,
.top_right h3,
.top_right p{
	text-align:right;
	clear:both;
}
.top_center h2,
.top_center h3,
.top_center p{
	text-align:center;
	color:#fff;
}
.top_right a{
	float:right;
}
.top_center a{
	display:block;
	margin:0 auto;
}
.top_txt01{
	top:380px;
}
.top_txt01 h2{
	margin:0;
}
.top_txt01 .sub{
	margin:0;
	color:#666;
	margin:0 0 30px;
	float:left;
	clear:none;
	font-family:"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.top_txt01 .sub.sub01{
	margin:0 0 30px 65px;
}
.top_txt01 .sub.sub02{
	margin:0 8px 30px 0;
	float:right;
}
.top_con .more{
	background:url(../images/link_more.png) no-repeat;
	height:20px;
	width:130px;
	padding:10px 0px 15px 3px;
	font-size:17px;
	color:#fff;
	text-align:center;
	display: block;
	text-decoration:none;
}
.top_con .more.mate{
	background:url(../images/link_more.png) no-repeat;
}
.top_con .mini{
	font-size:20px;
}
.top_txt02{
	top:775px;
}
.top_con02 {
    top: 600px;
    z-index: 1;
}
.top_con02 .text {
    top: 755px;
    z-index: 10;
	left:740px;
	position:absolute;
}
.top_con03 {
    top: 1285px;
    z-index: 1;
}
.top_con03 .bg {
    top:0;
    z-index: 3;
	position:absolute;
}
.top_con03 .bg01 {
    right: 5px;
    top: 430px;
    z-index: 9;
	position:absolute;
}
.top_con03 .bg02 {
    right: 550px;
    top: 500px;
    z-index: 9;
	position:absolute;
}
.top_con03 .bg03 {
    right: 552px;
    top: 935px;
    z-index: 9;
	position:absolute;
}
.top_con03 .top_center{
	top:575px;
}
.top_con03 .top_txt04{
	top:820px;
	z-index: 10;
}
.top_center h2 .gre{
	color:#036EB7;
}
.top_con05 {
    top: 2800px;
    z-index: 0;
}
.top_con04 {
    top: 1985px;
    z-index: 0;
}
.top_con05 .text {
    left: 570px;
    position: absolute;
    top: 0;
    z-index: 10;
}
.top_con05 .top_movie {
    left:540px;
    position: absolute;
    top: 225px;
    z-index: 10;
}
.top_con05 .top_movie h2,
.top_con05 .top_movie h3{
	text-align:center;
}
.top_con05 .top_movie h3{
	margin:0;
}
.top_con05 .top_movie_con {
	left: 323px;
    position: absolute;
    top: 40px;
}
.top_con05 .top_movie .mov{
	position:absolute;
}
.top_con05 .top_movie .mov01{
	left: 163px;
    top: 188px;
}
.top_con05 .top_movie .mov02{
	right: 163px;
    top: 188px;
}
.top_con05 .top_movie .mov03{
	left: 375px;
    top: 295px;
}
.more.mini{
	background:url(images/link_more_mini.png) no-repeat;
	display: block;
    font-size: 16px;
    margin: 0 auto;
    padding: 5px 0;
    width: 98px;
}
.top_con06_wrap{
	background:url(../images/top_bg06.png);
	bottom:0;
	z-index:50;
	padding-top:40px;
}
.top_con06 {
	width:950px;
	margin:0 auto;
	position:relative
}
.top_con06 h2.top06{
	width:465px;
	text-align:right;
}
.top_con06 .more{
	left: 484px;
    position: absolute;
    top: 12px;
}
.top_con_arr{
	left: 260px;
    position: absolute;
    top: -147px;
}
.news_con_list li {
	float:left;
	width:222px;
	margin: 0 20px 40px 0;
}
.news_con_list li.no4 {
	margin: 0 0 40px 0;
}
.news_con_list li a{
	text-decoration:none;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.news_con_list li h2 {
	float:left;
	color:#E41159;
	font-size:15px;
	font-weight:bold;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin:10px 0 0;
}
.news_con_list li .news_con_date{
	font-size: 13px;
}
.news_con_list li .img{
	position:relative;
	width:222px;
	height:132px;
	overflow:hidden;
	margin-bottom:10px;
}
.news_con_list li .img img{
	width:100%;
	float:left;
}
.news_con_list li .img .arr{
	position:absolute;
	top:0;
	right:0;
	width:auto;
}
.news_con_list li .news_con_date a{
	background: url("images/arr_ft.png") no-repeat scroll left center;
    color: #666;
    font-weight: normal;
    padding-left: 10px;
	/*margin-left:15px;*/
}
.flex-control-nav,
.flex-direction-nav{
	display:none;
}

/* news */
.top_txt06{
	position:relative;
}
.news_list.news_con_list li {
	float:none;
	width:100%;
	margin:0;
	padding:15px;
}
.news_list.news_con_list li.no1,
.news_list.news_con_list li.no3 {
    background:#E6F0F8;
}
.news_list.news_con_list li a {
    margin-left: 30px;
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
    font-size: 15px;
    font-weight: bold;
}
.top_news {
	margin-bottom:40px;
	padding-bottom:40px;
	border-bottom:1px solid #ccc; 
}
.news_con .ti_cate{
	display:none;
}
.news_con .new_list li {
	padding-bottom:10px;
    margin: 0 0 10px;
	border-bottom:1px solid #ccc;
}
.news_con .new_list li.no3 {
	border-bottom:none;
	padding:0;
	margin:0;
}
.news_con .new_list a {
	display:block;
}
a.archive.date-year{
	color:#666;
}
a.archive.date-year:hover{
	cursor:default;
	text-decoration:none;
	filter: alpha(opacity=1);
	-moz-opacity:1;
	opacity:1;
}

/* =contact
----------------------------------------------- */
.contact .page_title {
    margin: 100px 0 60px;
}
.order{
	border:1px solid #ccc;
	padding:25px;
	margin:40px 0;
}
.order h4{
	margin:0 0 15px;
	padding:0;
}
.order .blue-bt{
	padding: 15px;
	background-color:#036EB7;
	  border-radius: 5px;

	color: #FFFFFF;
}


.order img{
	float:right;
	margin:0 0 0 20px;
}
.order p{
	font-size:14px;
	margin: 0;
	color:#666;
}
.text-left p{
	text-align: left!important;
}

table.con{
	width:100%;
	border-bottom:1px solid #ccc;
}
table.con th{
	background:url(images/con_bg.png);
	font-weight:bold;
	vertical-align:middle;
	border-top:1px solid #ccc;
	width: 130px;
	padding-left:20px;
}
table.con td{
	padding:0 20px;
	border-top:1px solid #ccc;
}
#wpcf7-modify{
	float: left;
    margin: 9px 0 0 225px;
}
div.wpcf7 {
	font-size: 14px;
	margin:auto;
	padding: 0;
}
div.wpcf7 p {
	font-weight:normal;
	margin:5px 0 0;
	font-size:14px;
}
div.wpcf7 dt {
	margin: 15px 15px 0;
}
div.wpcf7 dt h3 {
	margin: 10px 0 0;
}
div.wpcf7 dt h3 span{
	font-size:12px;
	color:#fff;
	background:#59b200;
	padding:2px 5px;
}
div.wpcf7 dd {
	margin: 0 15px;
	padding:0 0 15px;
	border-bottom:1px dotted #AACC07;
}
div.wpcf7 dd.last {
	border-bottom:none;
}
div.wpcf7 p em {
	font-weight:normal;
	font-size:11px;
	color:#444;
}
div.wpcf7 p.sub {
	text-align:center;
	margin:35px 0 20px;
}
div.wpcf7 .wpcf7-text,
div.wpcf7 textarea {
	width:96%;
	margin: 15px 0;
	padding:10px;
}
div.wpcf7 #zip{
	width:150px;
	margin: 15px 15px 0 0;
}
div.wpcf7 .wpcf7-submit{
	display: block;
    margin: 45px auto 0;
    padding: 10px;
}
div.wpcf7 select {
	margin: 15px 0 0;
	padding:10px;
}
.wpcf7-submit {
	margin-bottom:0;
	border:none;
	background:#036EB7;
	color:#fff;
	font-size:24px;
	padding:16px 0;
	font-weight:bold;
	width:50%;
}
.wpcf7-submit:hover {
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.5;
	cursor:pointer;
}
span.wpcf7-not-valid-tip {
    background:#f00;
    color: #fff;
    display: block;
    left: 15px;
    padding: 5px 15px;
    position: absolute;
    top: -25px;
}
.contact_menu{
	display:table;
	table-layout: fixed;
	width:100%;
}
.contact_menu li{
	display:table-cell;
	padding:10px;
	border-right:1px dotted #ccc;
	line-height:1.6;
	text-align:center;
}
.contact_menu li:last-child{
	border-right:none;
}
.contact_menu li h5{
	margin-bottom:10px;
}
.contact .lang_ja .order p {
	text-align:center;
}

/* = company
----------------------------------------------- */
.company .bgslideshow {
	background:url(../images/com_bg2.jpg) no-repeat center center;
}
.company .page_title  {
	margin: 130px 0 75px;
}
.company .con_top_wrap:before{
	height: 6200px!important;
}
.com_con01_text{
	margin: auto;
/*	float:right;*/
	width:600px;
}
.com_con01_text h3{
	clear:both;
	font-size:28px;
	line-height: 40px;
    margin: 40px 0;
	text-align:center;
}
.com_con01_text h4{
	clear:both;
	font-size:20px;
	line-height: 30px;
    margin: 20px 0;
	text-align:center;
}
.com_name{
	float:right;
	margin-top:15px;
}
.com_con02{
	margin-top:80px;
}
h2.head{
	font-size:23px;
	text-align:center;
	font-weight:bold;
	margin:0 0 60px;
	min-height:30px;
}
h2.head span:before,
h2.head span:after{
	content: url(../images/h2_mark.png);
	margin:0 15px;
}
.com{
	width:100%;
}
.com th,
.com td {
	padding:10px 20px;
	font-size:14px;
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
	line-height: 20px;
}
.com th {
	background:#333;
	color:#fff;
	font-weight:bold;
	width:20%;
}
.com_con03 .com th {
	width:15%;
	background: #666;
}
.com_name{
	text-align:right;
}
.con_page_wrap{
	padding-top: 80px;
	background:url(../images/page_bg.png);
}
.con_page{
	width:900px;
	margin:0 auto;
}
.com_acc{
	float:right;
}
.com_con03_text{
	margin-bottom:60px;
	font-size:16px;
}

/* = activity
----------------------------------------------- */
.activity .bgslideshow {
	background:url(../images/top_bg05.jpg) no-repeat center center;
}
.food .bgslideshow {
	background:url(images/food_bg.jpg) no-repeat center center;
}
.job .bgslideshow {
	background:url(images/job_bg.jpg) no-repeat center center;
}
.business .bgslideshow {
	background:url(images/bus_bg.jpg) no-repeat center center;
}
.agriculture .bgslideshow {
	background:url(images/ag_bg.jpg) no-repeat center center;
}
.act_con01 p,
.shopping .con_top p{
	text-align:center;
	font-size:16px;
	line-height:30px;
}
.act_con{
	padding:0px 0px　30px;
}
.act_con .txt{
	width:420px
}
.act_con h3{
	clear:none;
	font-size:24px;
	margin:0 0 30px;
	line-height:25px;
}
.act_con h3 span{
	font-size:16px;
	display:block;
}
.act_con p{
}
.act_left img{
	float:right;
	margin-left:60px;
}

.act_con .tel-bt{
	font-size: 24px;
		    padding: 20px 30px;
    background-color: #036EB7;
    border-radius: 5px;
    color: #FFFFFF;
	text-decoration: none;

}



.act_gr h4{
	clear:none;
	font-size:15px;
	margin:0 0 5px;
	text-align:center;
}
.act_right{
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
}
.act_right h3{
	text-align:right;
}
.act_right .txt{
	float:right;
	margin-left:60px;
}
.act_con ol{
    list-style: decimal;
	font-weight:bold;
	margin:10px 0;
}
.act_con ol li{
	margin:0 0 10px 20px;
}
.link_more.mate {
    background: url("images/link_more_page_mate.png") no-repeat;
}
.step_wrap{
	position:relative;
}
.step_wrap01{
	width:570px;
}
.business img.right{
	position:absolute;
	right:30px;
	top:30px;
}
.business .step {
    min-height: 1px !important;
	margin-bottom:20px;
}
.business .step .text {
    margin-left:0;
}
.business img.center {
	display:block;
	margin:0 auto 20px;
}
.agriculture .pink_box{
    float: right;
    text-align: left;
    width: 380px;
}
.agriculture .pink_box h4{
    text-align: center;
}
.agriculture .pink_box h5{
	padding-top:10px;
	border-top:1px solid #ccc;
	margin-top:10px;
}
.act_left .step_wrap{
	position:relative;
}
.act_left h3.center{
	margin:60px 0 20px;
}
.act_left .step img {
    margin-left: 0;
}
.act_left .step_wrap .more {
	position:absolute;
	top:355px;
	left:25px;
}
.step.ag02 img{
	float:right;
}
.step.ag02 .text{
	margin:0;
	width:580px;
}
.act_left .step.ag02 .more {
	left: auto;
    position: absolute;
    right: 25px;
    top: 280px;
}


/* = shopping
----------------------------------------------- */
.shop-button img{
	width: 200px!important;
	margin:70px 40px 0px;

	}
.shopping .bgslideshow {
	background:url(../images/top_img05.jpg) no-repeat center center;
}
.step_wrap{
	height: 280px;
	padding:15px 25px 0;
	background:#fff;
	margin:30px 0;
}
.business .step_wrap{
	min-height: 545px;
}
.step{
	clear:both;
	min-height:150px;
	margin-bottom:40px;
	padding:15px 0;
}
.step img{
	float:left;
	width:240px;
}
.step .text{
	margin-left:270px;
}
.step .text h3,
.step .text h4{
	clear:none;
}
.step .text h3{
	background:#E6F0F8;
	padding: 2px 0;
}
.step .text h3 span{
	background:#036EB7;
	color:#fff;
	margin-right: 15px;
    padding: 3px 15px;
}
.shopping img.center{
	display:block;
	margin:0 auto 40px;
}
.shopping .pink_box {
    width: 860px;
}

/* = material
----------------------------------------------- */
.material .bgslideshow img{
	display:block;
	min-width:1400px;
}
h3.center{
	font-size:30px;
	line-height:50px;
	margin-bottom:60px;
	letter-spacing: 3px;
}
.item_list li{
	margin:0 0 60px;
	float:left;
}
.item_list li:nth-child(odd){
	margin:0 60px 60px 0;
}
.item_list li a{
	text-decoration:none;
}
.item_list li h4{
	clear:both;
	font-size:25px;
	font-weight:bold;
	padding:0;
	line-height:28px;
	margin:10px 0;
	color:#036EB7;
	font-family:"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.item_list li h4 span{
	font-size:16px;
	font-weight:normal;
	display:block;
}
.item_list li .txt{
	width:370px;
	padding:5px 25px;
}
.item_list li .txt_long{
	width:860px;
	padding:5px 25px;
}
.item_list li h4 img{
	display:block;
	margin:0 auto 10px;
}

/* mineral */
.mineral .bgslideshow {
	background:url(images/mine_bg.jpg) no-repeat center center;
}
.mineral .con_top_wrap.white:before {
    background: none;
}
.mineral .con_page_wrap {
    background:#000;
}
.mineral .page_title {
	margin:130px 0 40px;
}
.mate_main_img{
	display:block;
	margin:0 auto;
}
.mine_con01_text li h3{
	margin:0 0 30px;
}
.mine_con01_text li p{
	clear:both;
}
.mine_con01_text li h3.right{
	margin: 0 0 110px !important;
}
h3.right img{
	display:block;
	float:right
}
.mine_con01_text li .white{
    background:url(images/top_bg06.png);
    color: #525252;
    font-size: 15px;
    line-height: 20px;
    padding: 15px;
    text-align: center;
}
.mine_con01_text li .white strong{
    color: #52C9AA;
	margin:0 0 10px;
}
.mine_con01_text li .white p{
	margin: 10px 0 0;
	text-align:left;
}
.mineral h2.head,
.proteoglycan h2.head {
	color:#fff;
}
/*.mineral h2.head span:before,
.mineral h2.head span:after,
.proteoglycan h2.head span:before,
.proteoglycan h2.head span:after {
    content: url("images/h2_mark_mate.png");
    margin: 0 15px;
}*/
.mine_con{
	padding:60px 0;
}
.mine_con .txt{
	width:420px
}
.mine_con h3{
	color:#90D9C5;
	font-size:26px;
	line-height: 25px;
    margin:0 0 30px;
	clear:none;
}
.mine_con h3 span{
	font-size:16px;
	display:block;
}
.mine_con p{
	color:#fff;
}
.mine_left img{
	float:right;
	margin-left:60px;
}
.mine_gr{
	background:#90D9C5;
	font-size: 13px;
    line-height: 20px;
    padding: 15px;
}
.mine_gr h4{
	clear:none;
	color:#006619;
	font-size:15px;
	margin:0 0 5px;
	text-align:center;
}
.mine_right{
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
}
.mine_right .txt{
	float:right;
	margin-left:60px;
}

/* proteoglycan */
.proteoglycan .bgslideshow {
	background:url(images/mate_bg03.jpg) no-repeat center center;
}
.proteoglycan .con_top_wrap.white:before{
	background:none;
}
.proteoglycan .page_title h2,
.proteoglycan .breadcrumbs {
    color: #fff;
}
.proteoglycan .page_title h3,
.proteoglycan .breadcrumbs a {
    color: #90DAC5;
}
.pret_con01_text{
	position:relative;
	height:/*1750px*/910px;
}
.proteoglycan .con_top .item_list li {
	background:url(images/prot_bg01.png) no-repeat;
	background-size:100% auto;
	padding: 70px;
    position: absolute;
    width: 300px;
	height:300px;
}
.proteoglycan .item_list li h3{
	text-align:center;
	color:#0085B2;
	font-size:25px;
}
.proteoglycan .item_list li h3 span{
	display:block;
	font-size:16px;
}
.proteoglycan .item_list li p{
	font-size:13px;
}
.proteoglycan .item_list li.bl {
	background:url(images/prot_bg02.png) no-repeat;
	background-size:100% auto;
}
.proteoglycan .item_list li.bl h3 {
	color:#90D9C5;
}
.proteoglycan .item_list li.bl p {
	color:#fff;
}
.prot_img01{
	left: 325px;
    position: absolute;
    top: -155px;
    width: 330px;
    z-index: 10;
}
.prot_mov{
	left: /*590px*/90px;
    position: absolute;
    top: /*725px*/600px;
    z-index: 10;
}
.prot01{
	top: 20px;
    left:0;
	width: 290px !important;
	height: 290px !important;
}
.ie7 .prot01,
.ie8 .prot01{
	background:url(images/prot_bg01_ie.png) no-repeat !important;
}
.prot02{
	height: 360px;
    right: 0;
    top: 265px;
    width: 360px !important;
	height: 360px !important;
}
.ie7 .prot02,
.ie8 .prot02{
	background:url(images/prot_bg02_ie.png) no-repeat !important;
}
.prot03{
	top:750px;
	left:0;
}
.ie7 .prot03,
.ie8 .prot03{
	background:url(images/prot_bg03_ie.png) no-repeat !important;
}
.prot03 ol{
	list-style:decimal;
}
.prot03 ol li{
	position:static !important;
	background:none !important;
	color:#fff;
	font-size:17px;
	height:auto !important;
	margin:5px 15px 15px;
	padding:0 !important;
}
.prot04{
	height: 420px !important;
    padding: 80px !important;
    right: 76px;
    top: 1050px;
    width: 420px !important;
}
.ie7 .prot04,
.ie8 .prot04{
	background:url(images/prot_bg04_ie.png) no-repeat !important;
}
.proteoglycan .con_page_wrap{
	background:#000;
}
.proteoglycan .con_page_wrap h3{
	color:#0085B2;
	margin:90px 0 20px;
	line-height: 35px;
}
.proteoglycan .mine_con .txt h3,
.proteoglycan .pink_list h3{
	clear:none;
	margin:0 0 30px;
	line-height: 25px;
}
.proteoglycan .mine_con p.center{
	color:#fff;
	margin:0 0 30px;
}
.proteoglycan .pink_list{
	background:#BFEFFF;
}
.proteoglycan .pink_list p{
	color:#333;
}
.prot_link{
	margin:80px auto 60px;
	width:800px;
}
.proteoglycan .mov02{
	margin:15px 0 0 60px;
}

/* = product
----------------------------------------------- */
.product .bgslideshow img,
.healthfood .bgslideshow img{
	display:block;
	min-width:1400px;
}
.pink_suppot{
	background:#E6F0F8;
	padding:30px;
}
.pink_suppot h3{
	text-align:center;
}
.pink_suppot .center{
	font-size:18px;
}
.pink_suppot .small{
	font-size:12px;
	color: #666;
}

/* skincare */
.skincare .bgslideshow {
	background:url(images/pro_bg04.jpg) no-repeat center center;
}
/*.cleansingoil .lang_sel,
.soap .lang_sel,
.lotion .lang_sel,
.premium .lang_sel,
.repair.lang_sel,
.uvcream .lang_sel,
.amateras .lang_sel,
.proteoil .lang_sel{
	display: none;
}*/

/* perfect */
/*.perfect .lang_sel{
	display:none;
}*/
.powder .bgslideshow,
.perfect .bgslideshow {
	background:url(images/mate_bg01.jpg) no-repeat center center;
}
.use_img{
	position:absolute;
	right:-60px;
	top:-60px;
}
.perfect .con_page {
	position:relative;
}
.perfect .con_page h2 {
	text-align:left;
	padding: 35px 0 0;
}
.perfect .con_page h3 {
	line-height: 45px;
}
.exp_list {
	margin-top:110px;
}
.exp_list li {
	float:left;
	width:420px;
}

/* hybrid */
.hybrid .bgslideshow,
.joegenex .bgslideshow {
	background:url(images/mate_bg02.jpg) no-repeat center center;
}
.p_product .page_title {
    margin: 130px 0 110px;
}
.con_top_wrap.white:before{
	background:#fff;
}
.main_img {
	left: -140px;
    position: absolute;
    top: 240px;
}
.pro_mate {
	background:url(images/link_mate.png) no-repeat;
	display: block;
    font-size: 15px;
    margin: 0 auto;
    padding: 3px 0;
    width: 81px;
	position:absolute;
	color:#fff;
	text-align:center;
	text-decoration:none;
}
.pro_mate.link01{
	left: 20px;
    top: 490px;
	z-index:10;
}
.pro_mate.link02{
	left: 225px;
    top: 600px;
	z-index:10;
}
.con_right{
	width:340px;
	float:right;
}
.con_right h3 {
    clear: both;
    font-size: 28px;
    line-height: 50px;
    margin: 0 0 40px;
    text-align: right;
}
.gray{
	background:#eee;
	color: #535353;
    font-size: 12px;
    line-height: 20px;
    margin-top: 30px;
    padding: 15px;
}
.con_sec{
	clear:both;
	padding-top: 80px;
}
.con_sec .gray_table{
	width:100%;/* 50% */
}
.hybrid .con_sec .gray_table{
	width:50%;
}
.gray_table th,
.gray_table td{
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
	padding:10px;
}
.gray_table th{
	background:#EEE;
	font-weight:bold;
}
.con_sec .gray_table th{
	width:120px;
}
.con_sec .gray{
	float: right;
    margin: 0;
    width: 370px;
}
.con_sec .gray img{
	float:left;
	margin:0 15px 15px 0;
}
.link_shop {
    background: url("images/link_shop.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    clear: both;
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: bold;
    height: 20px;
    margin: 60px auto 0;
    padding: 18px 0 21px;
    text-align: center;
    text-decoration: none;
    width: 500px;
}
.bn_ama{
	display: block;
	width: 499px;
	margin: auto;
}
.bn_ama:hover {
	filter: alpha(opacity=65);
	-moz-opacity:0.65;
	opacity:0.65;
}
.ikyo{
	text-align: center;
	margin: 0 0 15px;
}
.ikyo img{
	height: 40px;
	margin: auto;
}

/*160929 製品文言修正 */
.hybrid .con_sec .gray.v2,
.caneal .con_sec .gray.v2{
	float: none;
    margin: 0 0 30px;
    width: 100%;
}
.hybrid .con_sec .gray_table.v2{
    width: 100%;
}
.heartful .con_sec .gray.v2,
.kawaii .con_sec .gray.v2{
    width: 870px;
	float:none;
}
.howto ul li{
	display:table;
	margin:0 0 5px;
}
.howto ul li span.pink{
	display:table-cell;
}
.p_product .gray_table th {
    white-space: nowrap;
}
.heartful .con_sec.v2 {
    padding-top:30px;
}
.profil .con_sec.v2 {
    padding-top:5px;
}
.profil .con_sec.v2 .gray_table {
    margin: 50px 0 10px;
}

/* heartful */
/*.healthfood .lang_sel,
.skincare .lang_sel,
.heartful .lang_sel{
	display: none;
}*/
.heartful .bgslideshow,
.kawaii .bgslideshow{
	background:url(images/mate_bg03.jpg) no-repeat center center;
}
.pink_list{
	background:#E6F0F8;
	padding:30px 30px 0;
}
.pink_list li{
	float:left;
	width:400px;
	margin:0 0 30px;
}
.pink_list li.left{
	margin:0 30px 30px 0;
	clear: both;
}
.pink_list li h3{
	font-size:21px;
	letter-spacing: 1px;
	margin:0 0 10px;
}
.pink_list li p{
	margin:0;
	font-size:13px;
}
.heartful .con_sec .gray_table{
	width:100%;
	clear:both;
	margin:60px 0 0;
}
.use_list{
	width:790px;
	display:block;
	margin:60px auto 0;
}
.use_list li{
	float:left;
	width:220px;
	margin:0 20px 30px;
}
.pink_box{
	clear:both;	
	text-align:center;
	padding:20px;
	background:#E6F0F8;
	width:750px;
	margin:0 auto;
}
.pink_box p{
	text-align:left;
	color:#525252;
	font-size:12px;
	margin:10px 0 0;
}
.re_new{
	color:#fff;
	font-size:16px;
	background:#036EB7;
	padding:5px 20px;
}

/* profil */
.profil .bgslideshow,
.joyfil .bgslideshow{
	background:url(images/mate_bg03.jpg) no-repeat center center;
}
.profil .con_right h3 {
    font-size: 26px;
}
.profil .con_sec .gray_table {
    width: 100%;
	margin:50px 0;
}
.profil .pro_mate.link01 {
    left: 88px;
    top: 568px;
}

/* caneal */
.caneal .bgslideshow {
	background:url(images/mate_bg03.jpg) no-repeat center center;
}

/* joyfil */
.joyfil #lang #zh,
.joyfil #lang #vi,
.joyfil #lang #ko,
.joyfil #lang #th,
.joyfil #lang #id,
.joyfil #lang #ar,
.joyfil #lang #ru,
.joyfil #lang #de,
.joyfil #lang #es{
	display: none;
}

/* amateras */
.soap .bgslideshow,
.cleansingoil .bgslideshow,
.lotion .bgslideshow,
.premium .bgslideshow,
.repair .bgslideshow,
.uvcream .bgslideshow,
.proteoil .bgslideshow,
.amateras .bgslideshow,
.premium2 .bgslideshow{
	background:url(images/mate_bg04.jpg) no-repeat center center;
}
.ama_con01{
	background: #fbfbfb;
	padding: 50px;
	position: relative;
}
.ama_con01 .main_img {
    left: 50px;
    top: 50px;
}
.ama_con01 .con_right {
    width: 490px;
}
.ama_con01 .con_right h3{
	text-align: left;
	margin-bottom: 22px;
    line-height: 1.6;
}
.ama_con01 .ama_img03{
	float: left;
	margin-right: 30px;
}
.ama_con01 ul li{
	display: table;
	width: 340px;
	box-sizing: border-box;
	padding: 13px 10px;
    font-weight: bold;
    min-height: 39px;
}
.ama_con01 ul li:nth-child(even){
	background: #FEF3F7;
}
.ama_con01 ul li span{
	display: table-cell;
	width: 20px;
}
.ama_con01 .p01{
	margin: 0;
}

/* = faq
----------------------------------------------- */
.faq #page {
	/*background:url(images/page_bg.png);*/
}
.faq .page_title {
    margin: 100px 0 60px;
}
.faq  h3.center{
	margin:0 0 10px;
}
.faq  p.center{
	margin:0 0 140px;
}
#tabs {
	border:1px solid #036EB7;
	position:relative;
	margin-top:70px;
	border-bottom-right-radius:0;
	border-radius:0;
}
#tabs .ui-tabs-nav {
	background:none;
	border:none;
	position:absolute;
	top:-61px;
	left:-1px;
	margin: 0;
    padding: 0;
	width: 101%;
}
#tabs .ui-state-default {
    border: none;
	padding:0;
	margin:0;
	width: 179px;
	border-right:1px solid #fff;
}
#tabs .ui-state-default a {
	display:block;
	height:auto;
	padding: 20px 0;
    text-align: center;
    width: 100%;
	margin:0;
	background:#eee;
	font-weight:bold;
	font-family: "ヒラギノ明朝 ProN W6","HiraMinProN-W6","ＭＳ Ｐ明朝","MS PMincho","MS 明朝",serif;
}
#tabs .ui-state-default a:hover {
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
#tabs a.menu1 {
    
}
#tabs a.menu1:hover,
#tabs .ui-state-active a {
	background:#036EB7;
	color:#fff;
}
#tabs a.menu2 {
    
}
#tabs .ui-tabs-nav a:hover,
#tabs .ui-state-active a{
	background:#036EB7;
    color:#fff;
}
.ui-widget-content .txt a {
    color: #036EB7 !important;
}
.ui-tabs-panel {
	padding:20px;
}
.faq_list li {
	padding:20px;
	background:#E6F0F8;
	position:relative;
	margin: 0;
}
.faq_list li.sec {
	background:none;
}
.faq_list li h2 {
	color:#036EB7;
	font-size:18px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin:0;
	line-height:1.4;
	padding-right:35px;
}
.faq_list li h2:hover {
	cursor:pointer;
	filter: alpha(opacity=65);
	-moz-opacity:0.65;
	opacity:0.65;
}
.faq_list li h2{
	background: url("../images/faq_mark_off.png") no-repeat right center;
	background-size:25px 25px;
}
.faq_list li h2.active{
	background: url("../images/faq_mark_on.png") no-repeat right center;
	background-size:25px 25px;
}
.faq_list li .txt{
	border-top:1px solid #358BC5;
	padding-top:20px;
	margin-top:20px;
	width:760px;
}
.faq_list li .txt p{
	margin:0;
}

/* =movie
----------------------------------------------- */
.movie .bgslideshow {
	background:url(images/mate_bg02.jpg) no-repeat center center;
}
.movie_list li{
	width:260px;
}
.movie_list li:nth-child(odd){
	margin: 0 0 60px;
}
.movie_list li.cen{
	margin:0 60px 60px;
}
.movie_list li img{
	width:260px;
}
.movie_list.item_list li h4 {
    font-size: 18px;
    line-height: 20px;
}
.movie_list.item_list li .txt {
    padding: 5px 0;
    width: auto;
}

/* = privacy policy
----------------------------------------------- */
.faq .con_top_wrap,
.policy .con_top_wrap,
.site .con_top_wrap,
.compliance .con_top_wrap,
.attention .con_top_wrap,
.law .con_top_wrap{
	padding:0 0 80px;
}
dl.dl{
	margin-top:60px;
}
dl.dl dt{
	color: #036EB7;
    font-family: "ヒラギノ明朝 ProN W6","HiraMinProN-W6","ＭＳ Ｐ明朝","MS PMincho","MS 明朝",serif;
    font-size: 22px;
    line-height: 1.2;
    padding: 25px 0 5px;
	font-weight:bold;
}
dl.dl dd{
	color: #666;
	padding: 0 0 25px;
	line-height:20px;
}
.policy .con_top_wrap:before{
	content: none;
}
.policy .con_top h3{
	font-weight: bold;
	margin: 30px 0 10px;
}
.policy .pp{
	margin: 0;
	padding: 0;
}
.policy .pp li{
	display: table;
	padding: 0;
	line-height: 1.4;
	margin: 10px 0 10px 10px;
}
.policy .pp li span{
	display: table-cell;
	padding-right: 5px;
	color: #036EB7;
}

/* = compliance
----------------------------------------------- */
.compliance .lang_sel{
	display: none;
}
.comp_box h3{
	clear: none;
}
.comp_box .right{
	background: #f4f4f4;
	padding: 20px;
	float: right;
	margin-left: 20px;
}
.compliance h4{
	padding-left: 0;
}
.compliance .link_more{
	font-size: 16px;
	padding: 12px 0 11px;
	line-height: 1.4;
}
.compliance .link_more.w{
	margin: auto;
	line-height: 1.4;
	height: auto;
}
.compliance .link_more.w2{
	background: #fff;
	color: #036EB7;
	border: 5px solid #036EB7;
	box-sizing: border-box;
}

/* = attention
----------------------------------------------- */
/*.attention .lang_sel{
	display: none;
}*/
.attention h3.center {
    margin-bottom: 30px;
}
.attention .att_box{
	background: url(images/page_bg.png);
	padding: 50px;
}
.attention .att_box:after {
    content: '';
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
.attention .att_box .text h3{
	font-weight: bold;
	color: #333;
	text-align: center;
}
.attention .att_box .text ol li img{
	float: right;
	margin:0 0 15px 20px;
}
.attention .att_box .text ol li{
	margin: 15px 0 0;
	padding: 15px 0 0;
	border-top: 1px solid #ccc;
	line-height: 1.6;
	clear: both;
}
.attention .att_box .text ol li h4{
	padding: 5px 0;
	color: #036EB7;
	clear: none;
}
.attention .att_box .text ol li:last-child img{
	margin-bottom:0;
}
.attention p.at{
	font-size: 17px;
	margin-top: -15px;
	line-height: 1.8;
}
.attention .att_box .text ol li li{
	margin: 0 0 10px;
	padding: 0;
	border-top: none;
	clear: none;
	float: left;
	text-align: center;
}
.attention .att_box .text ol li li:first-child{
	margin-right: 15px;
}

/* = blog
----------------------------------------------- */
.archive .page_title,
.single .page_title {
    margin: 100px 0 60px;
}
.entry_body p{
	padding: 15px 0 0 0;
	width:600px;
	    float: left;
	
}
.arc_con{
	width:900px;
	float: left;
}
.entry-title{
	background:#E6F0F8;
	padding:15px;
}
.entry-title a{
	text-decoration:none;
	display:block;
}
.s_cat{
	text-align:right;
	margin:10px 0;
}
.s_cat a{
	margin-right:15px;
}
#secondary {
	position:relative;
	left:675px;
}
#secondary.fixed {
	
}
#secondary h2.head {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px;
    text-align:left;
}
#secondary h2.head:before {
    content: url("images/blog_mark.png");
    margin: 0 5px 0 0;
}
.cat_list{
	margin-bottom:30px;
}
.cat_list li,
.new_list li{
	margin:0 0 10px;
	clear:both;
}
.cat_list li a{
	 background: url("images/arr_ft.png") no-repeat left center;
	 padding-left:15px;
	 text-decoration:none;
	 color: #666;
     display: block;
}
.arc_list{
	margin:0 0 30px;
}
.blog_arc select{
	width:100%;
}
.new_list img{
	width:80px;
	float:left;
	margin:0 10px 20px 0;
}
.new_list .news_con_date{
	font-size:11px;
}
.new_list a{
	font-size:11px;
}
.blog_info{
	background: url("images/page_bg.png");
	padding:15px 0 15px 15px;
}
.archive .blog_info{
	margin-bottom:60px;
}
.blog_info .left{
	width:330px;
	padding-right:15px;
	border-right:1px solid #fff;
	font-size:13px;
	margin:0;
}
.blog_info .add{
	float:right;
	width:250px;
	padding-left:25px;
	border-left:1px solid #ccc;
	font-size:12px;
}
.blog_info .add p{
	font-size:12px;
	margin:0;
}
.area_list{
	margin-bottom:30px;
}
.area li{
	margin: 0 0 0 30px;
}
.area li a{
	 background: url("images/arr_ft.png") no-repeat left center;
	 padding-left:15px;
	 text-decoration:none;
	 color: #666;
}
.area_list h3 {
    background: url("images/faq_mark_off.png") no-repeat left center;
	background-size:15px 15px;
}
.area_list h3.active {
    background: url("images/faq_mark_on.png") no-repeat left center;
	background-size:15px 15px;
}
.area_list h3{
	font-size:16px;
	margin:0 0 5px 10px;
	padding-left:20px;
}
.noshop{
	min-height:300px;
}

/* =member
----------------------------------------------- */
.member_body{
	margin:30px 0 60px;
}
.member_body p img{
	max-width:340px;
	height:auto;
}
.member_body p a{
	width:340px;
	display: block;
}
.member_body p {
    position: static !important;;
}
.member_body .gray {
	background:url("images/page_bg.png");
}
.member_body .gray p{
	font-size:12px;
	margin:0;
	width: 310px;
} 
.member_body .gray a{
	width:auto;
	display: unset;
}
table.st{
	float:right;
	width:270px;
	border:1px solid #036EB7;
}
table.st th,
table.st td{
	padding:10px;
}
table.st th{
	background:#036EB7;
	color:#fff;
	font-weight:bold;
	text-align:center;
}
table.st td{
	line-height:1.4;
	color:#036EB7;
}
.member_body .gray table.st{
	border:none;
}
.member_body .gray table.st th{
	background:#fff;
	color:#036EB7;
}
.member_body .gray table.st th p{
	margin:0;
	width:auto;
	border-bottom:1px dotted #333;
	padding-bottom:10px;
}
.member_body .gray table.st td{
	background:#fff;
	padding:0 10px 10px;
}
.tag .s_cat_member .blog_info{
	display:none;
}


/* =single
----------------------------------------------- */
.s_cat_letter .entry-header,
.s_cat_voice .entry-header  {
	position:relative;
	z-index:100;
	font-size:16px;
	color:#59B200;
}
.post_nav {
	margin:30px 0 100px;
	padding-top:20px;
	position: relative;
	height:30px;
	border-top:1px dotted #ccc;
	border-bottom:1px dotted #ccc;
}
.post_nav:after {
    content: '';
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
.post_nav a:hover {
	filter: alpha(opacity=65);
	-moz-opacity:0.65;
	opacity:0.65;
}
.prev_post {
	position:absolute;
	left:0;
}
.lists_back {
	position:absolute;
	left:280px;
}
.next_post {
	position:absolute;
	right:0;
}

/* = wp-pagenavi
----------------------------------------------- */
.wp-pagenavi {
	text-align:center;
}
.wp-pagenavi a,
.wp-pagenavi span {
	border:none !important;
	color:#036EB7;
	font-weight:bold;
	text-decoration:none;
}
.wp-pagenavi a:hover {
	text-decoration:underline;
}
.wp-pagenavi .current {
	background:#036EB7;
	color:#FFF;
}
.wp-pagenavi .pages {
	display:none;
}
.previouspostslink,
.nextpostslink {
	font-size:24px;
	font-weight:normal !important;
}

	
/* =pagetop
----------------------------------------------- */
#pagetop {
    bottom: 0;
    position: fixed;
    right: 0;
    /*width: 40%;*/
}
#pagetop img {
    width: 150px;
}
#pagetop:hover {
	cursor:pointer;
}
#pagetop:hover {
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.5;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}



/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}
	.singular .entry-header .entry-meta {
		position: static;
	}
	.singular .site-content,
	.singular .entry-header,
	.singular .entry-content,
	.singular footer.entry-meta,
	.singular .comments-title {
		margin: 0;
		width: 100%;
	}
	.entry-header .entry-title,
	.entry-title,
	.singular .entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}

/* gc2017 */
#logo {
	z-index:999;
}
.topimg_wpra {
	z-index:auto !important;
}
.btn_gc2017 {
	position:absolute;
	width:100%;
	height:800px;
	top:0;
	left:0;
	text-indent:-9999px;
	display:block;
	margin-left:-101px;
	z-index:999;
}
.sl_gc2017:hover img {
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}
