@charset "utf-8";
/*
///////////////////////////////////////////////////////////////////////////////////
//
//  基本CSS設定
//
///////////////////////////////////////////////////////////////////////////////////
/*
/* [RESET,FORMAT]
--------------------------------------------------------------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
body {
	line-height: 1;
	word-break: break-all;
	background: url(../images/common/bg-border.png) repeat;
}
main,article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section { 
	display: block;
}
ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	color: #1D1D1D;
	text-decoration: none;
	-webkit-transition: opacity 0.6s ease-in-out;
	-moz-transition: opacity 0.6s ease-in-out;
	-ms-transition: opacity 0.6s ease-in-out;
	transition: opacity 0.6s ease-in-out;
}
a:hover {
	opacity: 0.5;
	-webkit-opacity: 0.5;
	-moz-opacity: 0.5;
	filter: alpha(opacity=50);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=50)"; /* IE 8 */
}
ins {
	background-color: #ff9;
	color: #1D1D1D;
	text-decoration: none;
}
mark {
	background-color: #ff9;
	color: #1D1D1D;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 180%;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #CCC;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
/* [SITE FORMAT]
--------------------------------------------------------------------------*/
html, body {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Meiryo", "メイリオ", "Osaka", "MS PGothic", arial, helvetica, sans-serif;
	font-size: 16px;
	height: 100%;
	line-height: 160%;
	color: #1D1D1D;
	letter-spacing: 1px;
}
img {
	vertical-align: bottom;
}
h1,
h2,
h3,
h4,
h5  {
	line-height: 140%;
}
.eng {
	color: #1D1D1D;
	font-size: 16px;
	margin-bottom: 10px;
	line-height: 100%;
	font-family: 'Oswald', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Meiryo', 'メイリオ', 'Osaka', 'MS PGothic', arial, helvetica, sans-serif;
}
.min-f {
	font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-weight: normal;
}
/* [other]
--------------------------------------------------------------------------*/
@-webkit-keyframes passing-bar {
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passing-bar {
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@-webkit-keyframes passing-txt {
	0% { opacity: 0; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes passing-txt {
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}
.passing .passing-bar {
	position: relative;
	display: inline-block;
	will-change: transform;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing .passing-bar:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: #1D1D1D;
}
.passing .passing-txt {
	opacity: 0;
	will-change: transform;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing.move .passing-bar:before {
	-webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
	animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing.move .passing-txt {
	-webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
	animation:passing-txt 0s ease .5s 1 normal forwards;
}
.passing.move .passing-bar.delay:before {
	-webkit-animation: passing-bar 1.5s ease 0s 1 normal forwards;
	animation: passing-bar 1.5s ease 0s 1 normal forwards;
}
.passing.move .delay .passing-txt {
	-webkit-animation: passing-txt 0.5s ease .5s 1 normal forwards;
	animation:passing-txt 0.5s ease .5s 1 normal forwards;
}
a[href^="tel:"] {
	pointer-events: none;
}
.f-fixd-wrap {
	display: none;
}
.back_top a {
	width: 40px;
	height: 40px;
	border-radius: 22px;
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 20;
	background: #1D1D1D;
	border: 1px solid #fff;
	text-align: center;
	color: #fff;
	line-height: 38px;
	font-size: 12px;
}
/* [footer]
--------------------------------------------------------------------------*/
footer {
	width: 100%;
}
.f-cv-wrap .pkg {
	padding: 0 80px;
}
.f-cv {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	width: 100%;
	height: auto;
	background: #363636;
	padding: 80px 80px 90px;
	border-radius: 40px;
	color: #fff;
}
.f-cv .ttl-box {
	width: 100%;
	margin-bottom: 20px;
}
.f-cv .ttl-box .eng {
	font-size: 44px;
	line-height: 140%;
	color: #fff;
	margin-bottom: 0;
}
.f-cv .ttl-box .ttl {
	color: #ffff;
	font-size: 12px;
}
.f-cv .dsp {
	width: 100%;
	font-size: 13px;
	text-align: center;
	margin-bottom: 30px;
}
.f-cv a.f-cv-btn {
	display: block;
	width: 280px;
	height: 56px;
	margin: 0 auto;
	text-align: center;
	background: #fff;
	border-radius: 28px;
	line-height: 54px;
}
.f-conts-wrap .pkg {
	padding: 130px 80px;
}
.f-conts {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	height: auto;
}
.f-conts .f-logo {
	width: 26.7%;
}
.f-conts .f-logo a {
	display: block;
	width: 320px;
	height: auto;
}
.f-conts .f-logo img {
	width: 100%;
	height: auto;
}
.f-conts .f-nav {
	width: 50%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.f-conts .f-nav .com-info {
	margin-bottom: 40px;
	width: 100%;
}
.f-conts .f-nav .com-info .ttl {
	font-size: 15px;
	line-height: 100%;
	margin-bottom: 10px;
	font-weight: normal;
}
.f-conts .f-nav .com-info .address {
	font-size: 12px;
	line-height: 140%;
}
.f-conts .f-nav .nav {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 40px;
}
.f-conts .f-nav .nav li {
	margin-right: 29px;
	font-size: 13px;
}
.f-conts .f-nav .nav li:last-child {
	margin-right: 0;
}
.f-conts .f-nav .copyright {
	font-size: 11px;
}
@media (max-width: 430px) {
	.f-cv-wrap .pkg {
		padding: 0 30px;
	}
	.f-conts-wrap .pkg {
		padding: 100px 30px;
	}
	.f-conts .f-logo {
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
	}
	.f-conts .f-logo a {
		width: 240px;
		margin: 0 auto;
	}
	.f-conts .f-nav .com-info {
		text-align: center;
		margin-bottom: 60px;
	}
	.f-conts .f-nav .copyright {
		width: 100%;
		text-align: center;
	}
	.f-conts .f-nav {
		width: 100%;
	}
	.f-conts .f-nav .nav {
		width: 65%;
		margin: 0 auto 50px;
		justify-content: center;
	}
	.f-conts .f-nav .nav li:nth-child(3) {
		margin-right: 0;
	}
}
@media screen and (-webkit-min-device-pixel-ratio:2) and (min-width:450px) and ( max-width:1024px){
	.f-conts .f-logo {
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
	}
	.f-conts .f-logo a {
		width: 240px;
		margin: 0 auto;
	}
	.f-conts .f-nav .com-info {
		text-align: center;
		margin-bottom: 60px;
	}
	.f-conts .f-nav .copyright {
		width: 100%;
		text-align: center;
	}
	.f-conts .f-nav {
		width: 100%;
	}
	.f-conts .f-nav .nav {
		width: 100%;
		margin: 0 auto 50px;
		justify-content: center;
	}
	.f-conts .f-nav .nav li:nth-child(3) {
		margin-right: 0;
	}
}
/* [パンくず/ページナビ]
--------------------------------------------------------------------------*/
#breadcrumbs {
	width: 100%;
	background: #fff;
}
#breadcrumbs p {
	width: 100%;
	margin: 0 auto;
	font-size: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	overflow: hidden;
	color: #999;
	max-width: 1360px;
	padding: 15px 80px;
}
#breadcrumbs span,
#breadcrumbs a {
	line-height: 30px;
}
#breadcrumbs a {
	transition: all 0.5s ease 0s;
}
#breadcrumbs a:hover {
	color: #363636;
	opacity: 1;
}
.wp-pagenavi {
	padding-top: 40px;
	font-weight: bold;
	font-size: 13px;
}
.wp-pagenavi .current,
.wp-pagenavi .pages {
	padding: 11px 20px;
	color: #fff;
	background: #363636;
	border: 1px solid #363636;
	border-color: #363636!important;
	border-radius: 35px;
	margin-right: 10px;
	display: inline-block;
}
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
	border: none;
}
.wp-pagenavi .inactive {
	padding: 11px 20px;
	border: 1px solid #363636;
	border-radius: 35px;
	margin-right: 10px;
	margin-bottom: 10px;
	color: #363636;
	transition: 0.8s;
	display: inline-block;
}
.wp-pagenavi .inactive:hover {
	color: #fff;
	background: #363636;
	transition: 0.8s;
	opacity: 1;
}
.wp-pagenavi a {
	padding: 0 20px 0 10px;
	color: #363636;
	display: inline-block;
}
.wp-pagenavi a.page.smaller,
.wp-pagenavi a.page.larger {
	padding: 11px 20px;
	border: 1px solid #363636;
	border-radius: 35px;
	margin-right: 10px;
	margin-bottom: 10px;
	color: #363636;
	transition: 0.8s;
	display: inline-block;
}
.wp-pagenavi span.extend {
	color: #363636;
	padding: 10px;
}
.wp-caption {
	width: 100%!important;
}
.wp-caption-text {
	font-size: 12px;
	color: #666;
	margin-top: 10px;
	line-height: 140%;
}
/* [00.MEDIA QUERIES]
--------------------------------------------------------------------------*/
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}
@media (max-width: 960px) {
	.back_top a {
		bottom: 30px;
		opacity: 1;
	}
	#breadcrumbs {
		padding: 0 30px;
	}
	#breadcrumbs p {
		padding: 15px 0;
		overflow: scroll;
		white-space: nowrap;
	}
	.f-cv {
		padding: 60px 30px;
		border-radius: 30px;
	}
}
