/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* common
------------------------------------------------------------*/
body {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    font-family: "Noto Serif JP", serif;
    background: #fff;
    -webkit-text-size-adjust: 100%;
	max-width: 100%;
}
a {
	color: #333;
	text-decoration: none;
}
img {
	width: 100%;
	display: block;
}
p {
	line-height: 2;
}
.f_bold {
	font-weight: 500;
}
.f_big {
	font-size: 18px;
}
.txt_center {
	text-align: center;
}
section {
	padding: 100px 0;
}
.alt_bg {
	background: #f8f8f8;
}
.container {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}
.inner {
	max-width: 950px;
	width: 90%;
	margin: 0 auto;
}
.inner2 {
	max-width: 640px;
	width: 90%;
	margin: 0 auto;
}
.sp {
	display: none;
}

/* btn
------------------------------------------------------------*/
.btn {
    background: #053a86;
    color: rgb(255 255 255);
    text-decoration: none;
    display: block;
    padding: 17px 10px;
    border-radius: 30px;
    width: 313px;
    box-sizing: border-box;
    position: relative;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 50px auto 0;
    border: 1px solid #053a86;
    transition: all ease .3s;
}
.btn::before{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 30px;
    height: 1px;
    transition: all ease .3s;
    background: #fff;
}
.btn:hover{
    background: #fff;
    color: #053a86;
}
.btn:hover::before{
    background: #053a86;
}

/* headings
------------------------------------------------------------*/
.tit_sub {
	margin-bottom: 20px;
	text-align: center;
}
.tit_sub .tit_jp {
	color: #1e1e1e;
	font-size: 40px;
	font-weight: 700;
}
.tit_sub .tit_en {
	display: block;
	color: #BD8A00;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
}
.ts_02 {
	margin-bottom: 30px;
}
.ts_02 .tit_jp,
.ts_03 .tit_jp {
	font-size: 32px;
}
.ts_03 .tit_en {
	text-transform: capitalize;
}
.ts_04 .tit_jp {
	font-size: 22px;
}

/* header
------------------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 30px 0;
	z-index: 999;
	background-color: #fff;
	overflow: hidden;
}
header .h_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: auto;
	width: 95%;
	overflow: hidden;
}
header .h_wrap .logo {
	max-width: 160px;
	width: 11%;
}

/* gnav
------------------------------------------------------------*/
#gnav {
	float: right;
}
#gnav ul {
	display: flex;
}
#gnav ul li {
	margin: 0 15px;
}
#gnav ul li a {
	display: block;
	color: #1e1e1e;
	font-weight: 700;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}
#gnav ul li a.active,
#gnav ul li a:hover {
	color: #BD8A00;
}

/* fixed */
header.fixed {
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

/* footer
------------------------------------------------------------*/
footer .logo {
	padding-bottom: 10px;
	margin: 0 auto 10px;
	max-width: 90px;
	width: 100%;
}
footer .copyright {
	font-size: 10px;
	text-align: center;
}

/* pagetop
------------------------------------------------------------*/
#pagetop {
	position: fixed;
	z-index: 9999;
	width: 80px;
	bottom: 87px;
	right: 20px;
}
#pagetop a {
	display: block;
}
#pagetop a img {
	width: 100%;
	display: block;
}
#pagetop a:hover {
	opacity: 1;
	text-decoration: none;
}
#pagetop a:hover img {
	opacity: 1;
	text-decoration: none;
}

/* contact
------------------------------------------------------------*/
#contact form .input_wrap {
	margin-bottom: 40px;
}
#contact form .input_wrap label {
	display: block;
	margin-bottom: 10px;
}
#contact form .input_wrap label span {
	position: relative;
	display: inline-block;
	padding-right: 10px;
	font-weight: bold;
}
#contact form .input_wrap label span.req::before {
	content: '*';
	position: absolute;
	top: 0;
	right: 0;
	color: #AA0000;
}
#contact form .input_wrap input,
#contact form .input_wrap textarea {
	padding: 16px;
	width: 100%;
	border: 1px solid #979797;
	box-sizing: border-box;
}
#contact form .input_wrap textarea {
	height: 195px;
}
#contact form .input_wrap input::placeholder,
#contact form .input_wrap textarea::placeholder {
	color: rgba(0, 0, 0, .5);
	font-size: 14px;
}
#contact form .input_wrap input:focus,
#contact form .input_wrap textarea:focus {
	outline: 0;
	border-color: #BD8A00;
}
#contact form .btn_submit {
	position: relative;
}
#contact form .btn_submit input {
	position: relative;
	display: block;
	padding: 15px 16px;
	margin: 0 auto;
	max-width: 240px;
	width: 90%;
	color: #fff;
	text-align: center;
	box-sizing: border-box;
	background: url('../img/common/btn_border.png') no-repeat center / 230px;
	background-color: #BD8A00;
	border: 0;
	cursor: pointer;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
}
#contact form .btn_submit input:hover {
	background-color: #9c7301;
}
.wpcf7-spinner {
	display: block !important;
	margin: 10px auto 0 !important;
}

/* wp-pagenavi
---------------------------------------------------------- */
.wp-pagenavi {
	margin-top: 40px;
	text-align: center;
}
.wp-pagenavi a {
	color: #0772ba;
	font-weight: 700;
	padding: 0 10px !important;
	border-radius: 30px;
	margin: 0 2px 10px 2px !important;
	text-align: center;
	box-sizing: border-box;
	transition: all ease 0.3s;
	min-width: 44px;
	height: 44px;
	line-height: 44px;
	background-color: #fff;
	border: 1px solid #0772ba;
	display: inline-block;
	text-decoration: none;
}
.wp-pagenavi a:hover {
	color: #fff;
	background-color: #0772ba;
}
.wp-pagenavi .current {
	color: #fff;
	background-color: #0772ba;
	border: 1px solid #0772ba;
}
.wp-pagenavi span {
	color: #0772ba;
	font-weight: 700;
	font-family: Arial, Helvetica, sans-serif;
	padding: 0 10px !important;
	border-radius: 30px;
	margin: 0 2px 10px 2px !important;
	text-align: center;
	box-sizing: border-box;
	transition: all ease 0.3s;
	min-width: 44px;
	height: 44px;
	line-height: 44px;
	background-color: #fff;
	border: 1px solid #0772ba;
	display: inline-block;
}
.wp-pagenavi .previouspostslink {
	display: inline;
	font-family: "Poppins", sans-serif;
	margin-right: 24px !important;
	background-position: center left 20px;
	background-image: url(../img/common/ico_arrow05_alt.png);
	background-size: 15px;
	background-repeat: no-repeat;
	padding: 10px 18px 9px 51px !important;
}
.wp-pagenavi .previouspostslink:hover {
	background-image: url(../img/common/ico_arrow05.png);
}
.wp-pagenavi .nextpostslink {
	display: inline;
	font-family: "Poppins", sans-serif;
	margin-left: 24px !important;
	background-position: center right 20px;
	background-image: url(../img/common/ico_arrow_alt.png);
	background-size: 15px;
	background-repeat: no-repeat;
	padding: 10px 51px 9px 18px !important;
}
.wp-pagenavi .nextpostslink:hover {
	background-image: url(../img/common/ico_arrow.png);
}

@media screen and ( max-width : 980px ) {
	/* common
	------------------------------------------------------------*/
	section {
		padding: 70px 0;
	}
	.container .inner,
	.container .inner2 {
		max-width: none;
		width: 100%;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}

	/* headings
	------------------------------------------------------------*/
	.tit_sub, .ts_02 {
		margin-bottom: 15px;
	}
	.tit_sub .tit_jp {
		font-size: 210%;
	}
	.tit_sub .tit_en {
		font-size: 75%;
	}
	.ts_02 .tit_jp,
	.ts_03 .tit_jp {
		font-size: 170%;
	}
	.ts_04 .tit_jp {
		font-size: 120%;
	}

	/* header
	------------------------------------------------------------*/
	header {
		padding: 20px 0;
		overflow: visible;
	}
	header .h_wrap .logo {
		max-width: 140px;
		width: 100%;
	}
	#trigger-menu {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		float: right;
		width: 35px;
		height: 35px;
		cursor: pointer;
		transition: all ease 0.3s;
	}
	#trigger-menu .line {
		position: relative;
		display: block;
		width: 35px;
		height: 4px;
		box-sizing: border-box;
		background-color: #1e1e1e;
		border-radius: 10px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		-ms-border-radius: 10px;
		-o-border-radius: 10px;
		transition: all .3s ease;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		-o-transition: all .3s ease;
	}
	#gnav_sp {
		position: absolute;
		top: 75px;
		left: 0;
		right: 0;
		z-index: 99;
		visibility: hidden;
		background-color: #fff;
	}
	#gnav_sp.visible{
		visibility: visible;
	}
	#gnav_sp::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
		height: 1px;
		width: 95%;
		background-color: #ddd;
	}
	#gnav_sp #gnav {
		float: none;
	}
	#gnav_sp #gnav ul {
		display: block;
	}
	#gnav_sp #gnav ul li {
		text-align: right;
	}
	#gnav_sp #gnav ul li a {
		padding: 15px 10px;
	}

	body::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 9;
		opacity: 0;
		visibility: hidden;
		background-color: rgba(0, 0, 0, .8);
		transition: all .3s ease;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		-o-transition: all .3s ease;
	}
	body.menu-open::before {
		opacity: 1;
		visibility: visible;
	}
	body.menu-open #trigger-menu .line:nth-child(2) {
		opacity: 0;
	}
	body.menu-open #trigger-menu .line:first-child {
		top: 11px;
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
	}
	body.menu-open #trigger-menu .line:last-child {
		bottom: 12px;
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
	}
}

@media screen and ( max-width : 768px ) {
	/* common
	------------------------------------------------------------*/
	section {
		padding: 50px 0;
	}
	.container .inner,
	.container .inner2 {
		max-width: none;
		width: 100%;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	/* headings
	------------------------------------------------------------*/
	.tit_sub, .ts_02 {
		margin-bottom: 15px;
	}
	.tit_sub .tit_jp {
		font-size: 180%;
	}
	.tit_sub .tit_en {
		font-size: 70%;
	}
	.ts_02 .tit_jp,
	.ts_03 .tit_jp {
		font-size: 150%;
	}
	.ts_04 .tit_jp {
		font-size: 110%;
	}

	/* contact
	------------------------------------------------------------*/
	#contact form .input_wrap {
		margin-bottom: 30px;
	}
	#contact form .input_wrap input,
	#contact form .input_wrap textarea {
		padding: 13px;
	}
	#contact form .input_wrap textarea {
		height: 175px;
	}
	#contact form .btn_submit input {
		padding: 11px 15px;
		max-width: 180px;
		background-size: 170px;
	}

	/* footer
	------------------------------------------------------------*/
	footer .logo {
		max-width: 60px;
	}
}