@charset "utf-8";

/* ------------------------------
▼ body
------------------------------ */

* {
box-sizing: border-box;
}
html {
font-size: 62.5%;
}

body {
background-color: #fff;
color: #333;
font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
font-size: 16px;
font-size: 1.6rem;
line-height: 1.8;
margin: 0;
overflow-x: hidden;
}

/* ------------------------------
▲ body
▼ a
------------------------------ */

a {
color: #666;
text-decoration: none;
-webkit-transition: opacity 0.3s ease-out;
-moz-transition: opacity 0.3s ease-out;
-ms-transition: opacity 0.3s ease-out;
transition: opacity 0.3s ease-out;
}
a:hover,
a:focus {
color: #666;
text-decoration: none;
opacity: .3;
-webkit-opacity: .3;
-moz-opacity: .3;
filter: alpha(opacity=30);	/* IE lt 8 */
-ms-filter: "alpha(opacity=30)"; /* IE 8 */
}
a:visited {
outline: none;
}
a:focus, *:focus { outline:none; }

a.arrow {
display: block;
position: relative;
padding-right: 12px;
}
a.arrow:after {
display: block;
content: "";
position: absolute;
top: 50%;
right: 0;
width: 6px;
height: 6px;
margin: -2px 0 0 0;
border-top: solid 1px #666;
border-right: solid 1px #666;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}

/* ------------------------------
▲ a
▼ h1〜h6
------------------------------ */

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
margin: 0;
padding: 0;
}
h1 { font-size: 3.6rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.4rem; }
h4 { font-size: 2rem; }
h5 { font-size: 1.8rem; }
h6 { font-size: 1.6rem; }

/* ------------------------------
▲ h1〜h6
▼ p
------------------------------ */

p { margin-bottom: 1.6rem }

/* ------------------------------
▲ p
▼ margin
------------------------------ */

.mt_no { margin-top: 0; }
.mb_no { margin-bottom: 0; }
.pt_no { padding-top: 0; }
.pb_no { padding-bottom: 0; }

.ma_8px { margin: 8px; }
.ma_16px { margin: 16px; }
.pa_8px { padding: 8px; }
.pa_16px { padding: 16px; }
.ma_1rm { margin: 1rem; }
.ma_2rm { margin: 2rem; }
.pa_1rm { padding: 1rem; }
.pa_2rm { padding: 2rem; }

.mt_1rm { margin-top: 1rem; }
.mt_2rm { margin-top: 2rem; }
.mt_3rm { margin-top: 3rem; }

.mb_1rm { margin-bottom: 1rem; }
.mb_2rm { margin-bottom: 2rem; }
.mb_3rm { margin-bottom: 3rem; }

.ml_1rm { margin-left: 1rem; }
.mr_1rm { margin-right: 1rem; }

.mt_1px { margin-top: 1px; }
.mt_2px { margin-top: 2px; }
.mt_3px { margin-top: 3px; }

.mb_1px { margin-bottom: 1px; }
.mb_2px { margin-bottom: 2px; }
.mb_3px { margin-bottom: 3px; }

.pt_1rm { padding-top: 1rem; }
.pt_2rm { padding-top: 2rem; }
.pt_3rm { padding-top: 3rem; }

@media screen and (max-width: 1023px) {
	.mmb_1rm { margin-bottom: 1rem; }
}

@media screen and (max-width: 639px) {
	.smb_1rm { margin-bottom: 1rem; }
}

/* ------------------------------
▲ margin
▼ parts
------------------------------ */

/* list */

/* circle */
ul.circle li {
margin-left: 1.6rem;
position: relative;
}
ul.circle li::after {
display: block;
content: '';
position: absolute;
top: .9rem;
left: -1.2rem;
width: 6px;
height: 6px;
background-color: #666;
border-radius: 100%;
}

/* circle2 */
ul.circle2 li {
margin-left: 1.6rem;
position: relative;
}
ul.circle2 li::after {
display: block;
content: '';
position: absolute;
top: .9rem;
left: -1.2rem;
width: 5px;
height: 5px;
background-color: transparent;
border: 1px solid #666;
border-radius: 100%;
}

/* arw1 */
ul.arw1 li {
margin-left: 2rem;
position: relative;
}
ul.arw1 li::after {
display: block;
content: '';
position: absolute;
top: .9rem;
left: -1.5rem;
width: 6px;
height: 6px;
border-right: 1px solid #666;
border-bottom: 1px solid #666;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}

/* arw2 */
ul.arw2 li {
margin-left: 2rem;
position: relative;
}
ul.arw2 li::after,
ul.arw2 li::before {
display: block;
content: '';
position: absolute;
}
ul.arw2 li::after {
top: .5rem;
left: -1.8rem;
width: 12px;
height: 12px;
background-color: #999;
border-radius: 100%;
}
ul.arw2 li::before {
z-index: 2;
top: .9rem;
left: -1.5rem;
width: 4px;
height: 4px;
border-right: 1px solid #fff;
border-bottom: 1px solid #fff;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}

/* num */
ol.num li {
list-style-type: decimal;
margin-left: 2rem;
}

/* num2 */
ol.num2 li {
list-style-type: decimal-leading-zero;
margin-left: 3.4rem;
}

/* hr */

/* both sides line */
.bsline {
display: flex;
align-items: center;
margin-bottom: 1rem;
}
.bsline:before, .bsline:after {
content: '';
flex-grow: 1;
height: 1px;
background: #ccc;
display: block;
}
.bsline:before {
margin-right: .6rem;
}
.bsline:after {
margin-left: .6rem;
}

/* background */
.bg_glay1 {
background: #f2f2f2;
}
.bg_glay2 {
background: #e5e5e5;
}
.bg_glay3 {
background: #d8d8d8;
}

/* border */
.bs_glay1 {
border: solid 1px #f2f2f2;
}
.bs_glay2 {
border: solid 1px #e5e5e5;
}
.bs_glay3 {
border: solid 1px #d8d8d8;
}

/* table */
.tbl1 {
width: 100%;
}
.tbl1 td {
padding: 0.5rem 0.55556rem;
font-size: 0.77778rem;
text-align: left;
}

/* img */
/* fullwidth */
figure.fullwidth {
width: 100vw;
margin-left: calc(-50vw + 50%);
}
figure.fullwidth img { width: 100%; }

/* radius */
figure img.radius {
border-radius: 6px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
}

/* opacity */
figure.blk1,
figure.blk2,
figure.blk3 {
background-color: #000;
position: relative;
}
figure.blk1 img {
display: block;
opacity: 0.8;
}
figure.blk2 img {
display: block;
opacity: 0.5;
}
figure.blk3 img {
display: block;
opacity: 0.3;
}

figure.wht1,
figure.wht2,
figure.wht3 {
background-color: #fff;
position: relative;
}
figure.wht1 img {
display: block;
opacity: 0.8;
}
figure.wht2 img {
display: block;
opacity: 0.5;
}
figure.wht3 img {
display: block;
opacity: 0.3;
}

/* figcaption */
figcaption.midl {
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
margin:0;
padding:0;
}
figure.blk1 figcaption.midl,
figure.blk2 figcaption.midl,
figure.blk3 figcaption.midl {
color: #fff;
}
figure.blk1 figcaption.midl a,
figure.blk2 figcaption.midl a,
figure.blk3 figcaption.midl a {
color: #fff;
}

figure.wht1 figcaption.midl,
figure.wht2 figcaption.midl,
figure.wht3 figcaption.midl {
color: #000;
}

/* float */
.cf:after {
content: "";
display: block;
clear: both;
}
.cf img.lf {
float: left;
margin-right: 20px;
}
.cf img.rg {
float: right;
margin-left: 20px;
}
@media screen and (max-width:640px) {
	.cf img.lf {
	float: none;
	display: block;
  margin-left: auto;
  margin-right: auto;
	margin-bottom: 10px;
	}
	.cf img.rg {
	float: none;
	display: block;
  margin-left: auto;
  margin-right: auto;
	margin-bottom: 10px;
	}
}

/* ------------------------------
▲ parts
▼ fullwidth
------------------------------ */

.fullwidth {
width: 100vw;
margin-left: calc(-50vw + 50%);
}
.fullwidth img { width: 100%; }

/* ------------------------------
▲ fullwidth
▼ origin customise
------------------------------ */

.site-header {
padding: 0;
box-shadow: none;
}

@media only screen and (min-width: 960px) {
	.content {
		width: 100%;
		clear: both;
	}
	.sidebar {
		width: 100%;
    clear: both;
	}
}

.site-inner {
margin-top: 3rem;
padding: 0 30px 0;
}

.breadcrumb {
margin-top: 1rem;
}

.post-edit-link { font-size: 1.2rem }

/* ------------------------------
▲ origin customise
▼ header
------------------------------ */

/* site-header */
@media screen and (max-width:640px) {
	.site-header {
	position: fixed;
	width: 100%;
	z-index: 9999;
	background: rgba(0,0,0,1);
	}
	.site-header.fixed {
	background: rgba(0,0,0,1);
	}
	.home .site-header {
	background: rgba(0,0,0,1);
	}
}
@media screen and (min-width:640px) {
	.site-header {
	position: fixed;
	width: 100%;
	z-index: 9999;
	background: rgba(0,0,0,0.6);
	}
	.site-header.fixed {
	background: rgba(0,0,0,0.6);
	}
	.home .site-header {
	background: transparent;
	}
	.home .site-header.fixed {
	background: rgba(0,0,0,0.6);
	}
}

/* slider */
@media screen and (max-width:640px) {
	#slider {
	width: 100%;
	height: 320px;
	object-fit: cover; /* 他のブラウザ用(＝通常の指定) */
	object-position: 50% 50%; /* 他のブラウザ用(＝通常の指定) */
	font-family: 'object-fit: cover; object-position: 50% 50%;' /* IE・Edge対応 */
	}
}
@media screen and (min-width:640px) {
	#slider {
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
	}
	#slider .inner {
	height: 100%;
	/* background: rgba(0,0,0,0.3); */
	}
}

/* site-title */
.title-area {
padding-bottom: 0;
padding-top: 0;
}
.title-area .site-title {
text-indent: 100%;
white-space: nowrap;
-moz-background-size: cover;
background-size: cover;
}
.title-area .site-title a {
display: block;
width: 100%;
height: 100%;
overflow: hidden;
margin: 0 auto;
background-position: center center;
background-size: contain;
}
.title-area .site-title a {
margin-top: 0;
background-image: url(/images/logo.png);
}
.site-header .site-title a {
width: 120px;
height: 62px;
}
@media screen and (max-width:640px) {
	.home .site-header .site-title a {
	width: 120px;
	height: 62px;
	}
}
@media screen and (min-width:640px) and (max-width:1024px) {
	.home .site-header .site-title a {
	width: 180px;
	height: 93px;
	}
}
@media screen and (min-width:1024px) {
	.home .site-header .site-title a {
	width: 260px;
	height: 135px;
	}
}
/* site-header.fixed site-title */
.site-header.fixed .title-area .site-title a {
width: 120px;
height: 62px;
}

.header_img {
	margin-bottom: 0;
}
@media screen and (max-width:640px) {
	.header_img {
		margin-top: 62px;
		margin-bottom: 3rem;
	}
}

/* ------------------------------
▲ header
▼ gmenu
------------------------------ */

.nav ul {
overflow-x: auto;
-webkit-overflow-scrolling: touch; /* 慣性スクロール */
}

@media screen and (max-width:640px) {
	.gmenu {
	display: none;
	}
}
@media screen and (min-width:640px) {
	.gmenu {
	}
}

/* gmenu */
.gmenu > li {
font-weight: bold;
}
.gmenu.en > li {
font-weight: normal;
}
@media screen and (max-width:640px) {
	.gmenu > li {
	margin-left: 10px;
	font-size: 1rem;
	}
	.gmenu.en > li {
	margin-left: 10px;
	font-size: 1.2rem;
	}
}
@media screen and (min-width:640px) and (max-width:1024px) {
	.gmenu > li {
	margin-left: 13px;
	font-size: 1.2rem;
	}
	.gmenu.en > li {
	margin-left: 13px;
	font-size: 1.6rem;
	}
}
@media screen and (min-width:1024px) and (max-width:1280px) {
	.gmenu > li {
	margin-left: 16px;
	font-size: 1.3rem;
	}
	.gmenu.en > li {
	margin-left: 16px;
	font-size: 1.6rem;
	}
}
@media screen and (min-width:1280px) {
	.gmenu > li {
	margin-left: 16px;
	font-size: 1.6rem;
	}
	.gmenu.en > li {
	margin-left: 16px;
	font-size: 1.8rem;
	}
}

.gmenu > li a {
color: #fff;
}
.home .site-header .gmenu {
margin-right: 20px;
}

/* site-header.fixed gmenu */
@media screen and (max-width:640px) {
	.site-header .gmenu {
	margin-right: 60px;
	}
	.site-header.fixed .gmenu {
	margin-right: 60px;
	}
}
@media screen and (min-width:640px) and (max-width:1024px) {
	.site-header .gmenu {
	margin-right: 80px;
	}
	.site-header.fixed .gmenu {
	margin-right: 80px;
	}
}
@media screen and (min-width:1024px) {
	.site-header .gmenu {
	margin-right: 90px;
	}
	.site-header.fixed .gmenu {
	margin-right: 90px;
	}
}

/* mail */
/*
.gmenu li.mail {
padding-left: 8px;
line-height: 1.6em;
background: url(/images/header/mail.svg) left 0px top 6px no-repeat;
background-size: 15px auto;
}
.gmenu.en li.mail {
padding-left: 10px;
line-height: 1.6em;
background: url(/images/header/mail.svg) left 0px top 10px no-repeat;
background-size: 15px auto;
}
*/

/* lang */
.gmenu .lang img {
margin-top: -2px;
width: 16px;
height: 16px;
}
.gmenu.en .lang img {
margin-top: 1px;
width: 16px;
height: 16px;
}
.gmenu .lang::before{
content: '';
display: inline-block;
background: #fff;
height: 12px;
width: 1px;
margin-right: 12px;
margin-top: 7px;
}
.gmenu.en .lang::before {
content: '';
display: inline-block;
background: #fff;
height: 12px;
width: 1px;
margin-right: 12px;
margin-top: 10px;
}

.init_bottom:after {
content: '';
display: inline-block;
width: 6px;
height: 6px;
margin: 8px 0 0 0;
border-right: 1px solid #fff;
border-bottom: 1px solid #fff;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}


.gmenu > li {
position: relative;
}
.gmenu > li ul {
position: absolute;
top: 10px;
width: 100%;
background: rgba(255, 255, 255, 1);
-webkit-transition: .2s ease;
transition: .2s ease;
visibility: hidden;
opacity: 0;
z-index: 1;
}

.gmenu > li:hover > ul {
top: 20px;
visibility: visible;
opacity: 1;
}

.gmenu > li ul > li a {
font-size: 1.2rem;
color: #000;
display: block;
width: 100%;
}
.gmenu > li ul > li:hover  {
background-color: #eee;
}
.gmenu > li ul > li.on:hover  {
background-color: transparent;
}
.gmenu > li ul > li {
padding-left: 12px;
background: #fff;
}
.gmenu > li ul > li.on {
position: relative;
}
.gmenu > li ul > li.on::after {
display: block;
content: '';
position: absolute;
top: 10px;
left: 8px;
width: 8px;
height: 3px;
border-left: 2px solid #666;
border-bottom: 2px solid #666;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.gmenu.en > li ul > li.on::after {
top: 12px;
}

/* ------------------------------
▲ gmenu
▼ drawer
------------------------------ */

@media screen and (max-width:640px) {
	.drawer_menu_bg,
	.drawer_menu,
	.lang_menu {
	}
}
@media screen and (min-width:640px) {
	.drawer_menu_bg,
	.drawer_menu,
	.lang_menu {
	display: none;
	}
}

.drawer_menu_bg {
position: fixed;
top: 0;
right: 0;
width: 56px;
height: 62px;
background-color: rgba(255, 255, 255, 1);
z-index: 998;
}

.drawer_menu .drawer_button {
display: none;
}
.drawer_menu .drawer_button .drawer_bar {
background: #666;
}
.drawer_menu .drawer_bg {
width: 100%;
height: 100%;
position: fixed;
z-index: 999;
background-color: rgba(0, 0, 0, .5);
display: none;
top: 0;
left: 0;
}
.drawer_menu .drawer_button {
display: block;
background: transparent;
color: #666;
margin: 0;
padding: 0;
width: 46px;
height: 60px;
letter-spacing: 0.1rem;
cursor: pointer;
position: fixed;
top: 0;
right: 1px;
z-index: 1001;
outline: none;
}
.drawer_menu .drawer_button {
transform:scale(0.8);
-webkit-transform:scale(0.8);
transform-origin:0 0;
-webkit-transform-origin:0 0;
}
.drawer_menu .drawer_button.active .drawer_bar {
width: 36px;
}
.drawer_menu .drawer_button.active .drawer_bar1 {
transform: rotate(36deg);
margin-left: 7px;
}
.drawer_menu .drawer_button.active .drawer_bar2 {
opacity: 0;
}
.drawer_menu .drawer_button.active .drawer_bar3 {
transform: rotate(-36deg);
margin-left: 7px;
}
.drawer_menu .drawer_button.active::after {
}
.drawer_menu .drawer_button.active .drawer_menu_text {
display: none;
}
.drawer_menu .drawer_button.active .drawer_close {
display: block;
}
.drawer_menu .drawer_bar {
display: block;
height: 2px;
margin: 8px 4px;
transition: all 0.2s;
transform-origin: 0 0;
}
.drawer_menu .drawer_text {
text-align: center;
letter-spacing: 0.08rem;
font-size: .68rem;
}
.drawer_menu .drawer_close {
text-align: center;
letter-spacing: 0.08rem;
font-size: .68rem;
display: none;
}
.drawer_menu .drawer_menu_text {
display: block;
}

.drawer_menu .nav_drawer {
width: 280px;
height: 100%;
transition: all 0.2s;
transform: translate(280px);
position: fixed;
top: 0;
right: 0;
z-index: 1000;
background: #fff;
overflow-x: hidden;
overflow-y: auto;
}
.drawer_menu .nav_drawer .indent {
margin-top: 2rem;
margin-left: 1.4rem;
margin-bottom: 60px;
}
.drawer_menu .drawer_nav {
display: block;
position: relative;
margin-top: 3rem;
padding-left: 20px;
padding-top: 8px;
}
.drawer_menu .drawer_nav li {
font-size: 1.8rem;
color: #999;
text-align: left;
background: #fff;
height: auto;
line-height: 1.8;
position: relative;
}
.drawer_menu .drawer_nav li a {
background-color: #fff;
color: #333;
display: block;
text-align: left;
}
.drawer_menu .drawer_nav > li {
font-size: 1.2rem;
margin-bottom: 6px;
padding-bottom: 6px;
}
.drawer_menu .drawer_nav > li a {
font-size: 1.8rem;
}
/* スマートフォン2階層目 */
.drawer_menu .drawer_nav li:hover ul.second_level {
display: block;
}
.drawer_menu .drawer_nav li ul.second_level {
visibility: visible;
position: relative;
padding: 0;
z-index: 1001;
}
.drawer_menu .drawer_nav li ul.second_level li {
border-top: 1px solid #eee;
}
.drawer_menu .drawer_nav li ul.second_level li a {
padding-left: 1rem;
}
.drawer_menu .nav_drawer.open {
transform: translate(0);
}
.drawer_menu.left .drawer_button {
right: auto;
left: 32px;
}
.drawer_menu.left .nav_drawer {
transform: translate(-250px);
right: auto;
left: 0;
}
.drawer_menu.left .nav_drawer.open {
transform: translate(0);
}

.drawer_nav li a {
margin-left: 2rem;
position: relative;
}
.drawer_nav li a::after {
display: block;
content: '';
position: absolute;
top: 1.4rem;
left: -1.5rem;
width: 6px;
height: 6px;
border-right: 1px solid #666;
border-bottom: 1px solid #666;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}

.lang_menu {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 998;
}
.lang_menu img {
margin-top: 12px;
width: 24px;
height: 24px;
}

.lang_menu a {
background: #333;
color: #fff !important;
display: block;
height: 46px;
line-height: 46px;
text-align: center;
width: 46px;
}


.lang_menu_inner {
position: relative;
display: none;
}

.lang_menu_inner > ul {
position: absolute;
top: -100px;
left: 30px;
}

.lang_menu_inner > ul > li {
padding-left: 8px;
background: #333;
}

.lang_menu_inner > ul > li.on {
position: relative;
}
.lang_menu_inner > ul > li.on::after {
display: block;
content: '';
position: absolute;
top: 20px;
left: 8px;
width: 8px;
height: 3px;
border-left: 2px solid #fff;
border-bottom: 2px solid #fff;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}

/* ------------------------------
▲ drawer
▼ pagination
------------------------------ */

.pagination {
text-align: center;
width: 100%;
display: block;
}
.pagination a {
background: #fff;
color: #666;
border: 1px solid #ddd;
text-decoration: none;
}
/* SP　*/
@media only screen and (max-width: 667px) {
	.pagination .inner {
	width: 90%;
	margin: 0 5%;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	height: 46px;
	}
	.pagination .page-of {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
	position: absolute;
	left: 37%;
	width: 26%;
	font-weight: bold;
	color: #fff;
	background: rgba(102, 102, 102, 1);
	height: 46px;
	line-height: 46px;
	font-size: 1.3rem;
	border: 1px solid #ddd;
	}
	.pagination .m-prev {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: 0;
	-webkit-order: 0;
	order: 0;
	width: 15%;
	position: absolute;
	left: 0%;
	}
	.pagination .pn-prev {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
	width: 22%;
	position: absolute;
	left: 15%;
	}
	.pagination .pn-next {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 3;
	-webkit-order: 3;
	order: 3;
	width: 22%;
	position: absolute;
	left: 63%;
	}
	.pagination .m-next {
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 4;
	-webkit-order: 4;
	order: 4;
	width: 15%;
	position: absolute;
	left: 85%;
	}
	.pagination .current, .pagination .pn-numbers {
	display: none
	}
	.pagination a {
	line-height: 46px;
	height: 46px;
	font-weight: bold;
	font-size: 1.3rem;
	}
}
/* DeskTop */
@media only screen and (min-width: 668px) {
	.pagination .page-of {
	display: none;
	}
	.pagination a, .pagination .current {
	display: inline-block;
	padding: 0 2rem;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 50px;
	height: 50px;
	}
	.pagination .current {
	background: rgba(102, 102, 102, 1);
	color: #fff;
	border: 1px solid #ddd;
	}
	.pagination a:hover {
	background: rgba(102, 102, 102, 1);
	color: #fff;
	}
}

/* ------------------------------
▲ pagination
▼ nav_single
------------------------------ */

.nav_single {
margin-top: 2rem;
margin-bottom: 3rem;
display:table;
width: 100%;
}
.nav_single .nav_prev {
display:table-cell;
}
.nav_single .nav_next {
display:table-cell;
text-align: right;
}
.nav_single a {
display: inline-block;
padding: 6px 12px;
font-size: 1.2rem;
background-color: #fff;
border: 1px solid #ddd;
-webkit-border-radius: 16px;
-moz-border-radius: 16px;
border-radius: 16px;
}

/* ------------------------------
▲ nav_single
▼ slick
------------------------------ */

.slick-slider {
position: relative;
}
.slick-prev:before,
.slick-next:before {
color: #666;
font-size: 2.8rem;
}
.slick-prev {
display: inline-block;
height: 40px;
position: absolute;
top: 40%;
z-index: 10;
}
.slick-next {
display: inline-block;
height: 40px;
position: absolute;
top: 40%;
z-index: 10;
}
.slick-prev:before {
content: '<';
}
.slick-next:before {
content: '>';
}

/* slide_box */
.slide_box {
display: none;
}
.slide_box.slick-initialized {
display: block;
}
.slide_box {
margin: 3rem 0 3rem;
}

.slide_box figure { margin-right: 1px; }
.slide_box figure a { display: block; }
.slide_box .img {
margin: 0 auto 1rem;
max-width: 640px;
height: auto;
}
@media only screen and (min-width: 960px) {
	.slide_box .img {
		max-width: 480px;
	}
}
.slide_box .txt {
text-align: center;
font-size: 1.2rem;
}

/* ------------------------------
▲ slick
▼ sidebar
------------------------------ */


/* ------------------------------
▲ sidebar
▼ footer
------------------------------ */

.site-footer {
padding-top: 2rem;
background: #c32a38;
color: #fff;
}

.site-footer a {
color: #fff;
}
.site-footer a:hover {
color: #fff;
}

.logo_footer {
text-align: center;
}
@media screen and (min-width:640px) {
	.logo_footer {
	text-align: left;
	}
}
.logo_footer img {
width: 180px;
height: 93px;
}
@media screen and (min-width:640px) {
	.logo_footer img {
		width: 280px;
		height: 145px;
	}
}

.info_footer {
margin-top: 1rem;
text-align: center;
}
@media screen and (min-width:640px) {
	.info_footer {
	text-align: left;
	}
}

/* menu_footer */

@media screen and (max-width:640px) {
	#menu_footer {
		margin: 0 auto;
		width : 180px;
	}
}

#menu_footer.menu li {
display: block;
width: 100%;
text-align: left;
}
#menu_footer.menu li {
margin-left: 1.6rem;
position: relative;
}
#menu_footer.menu li::after {
display: block;
content: '';
position: absolute;
top: .9rem;
left: -1.2rem;
width: 5px;
height: 5px;
background-color: transparent;
border: 1px solid #fff;
border-radius: 100%;
}

.copyright {
text-align: center;
}
@media screen and (min-width:640px) {
	.copyright {
	text-align: right;
	}
}


/* ------------------------------
▲ footer
▼ page top
------------------------------ */

#pagetop {
position: fixed;
bottom: 0;
right: 0;
z-index: 90;
}
#pagetop a {
background: #3f3b3a;
color: #fff !important;
display: block;
height: 46px;
line-height: 46px;
text-align: center;
width: 46px;
}
#pagetop a:after {
content: '';
display: inline-block;
width: 12px;
height: 12px;
margin: 20px 0 0 0;
border-right: 1px solid #fff;
border-bottom: 1px solid #fff;
-webkit-transform: rotate(-135deg);
transform: rotate(-135deg);
}

/* ------------------------------
▲ page top
▼ plugin
------------------------------ */

/* MW WP Form */
.ctact label {
font-size: 1.6rem;
}
.ctact .code {
margin-left: 6px;
}
.ctact .code code {
line-height: 28px !important;
word-break: keep-all !important;
word-wrap: normal !important;
display: inline;
padding: 4px 5px !important;
margin: 5px 5px 5px 0 !important;
color: #999 !important;
font-size: 1.2rem;
border: #ccc 1px solid;
border-radius: 2px;
}
.ctact .line {
padding-bottom: 1rem;
border-bottom: 1px solid #eee;
}
.ctact [type='text'] {
height: 3rem;
}
.ctact [type='text'],
.ctact textarea {
color: #666;
font-size: 1.6rem;
padding: 8px;
border-radius: 4px;
}
.ctact [type="submit"],
.ctact [type="reset"] {
font-size: 1.6rem;
}
.mw_wp_form .error {
margin-bottom: 6px;
}
.rcaph {
margin-top: 4rem;
}
#inline-recaptcha {
margin: 1rem auto 0;
display: inline-block;
width: 128px;
height: 30px;
transform:scale(0.5);
-webkit-transform:scale(0.5);
transform-origin:0 0;
-webkit-transform-origin:0 0;
}
.rcaph_policy {
font-size: 1.2rem;
}
.rcaph_policy a {
border-bottom: 1px dotted #666;
}
@media only screen and (min-width: 960px) {
	.rcaph {
		text-align: center;
	}
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
olor: #cacaca;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
color: #cacaca;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
color: #cacaca;
}
input::placeholder,
textarea::placeholder {
color: #cacaca;
}

/* Google Maps Easy */
@media only screen and (min-width: 640px) {
	.sp_gmap {
		display: none;
	}
}
@media only screen and (max-width: 639px) {
	.pc_gmap {
		display: none;
	}
}

/* ------------------------------
▲ plugin
------------------------------ */
