@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;
}
body {
	line-height: 1;
	word-break: break-all;
}
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: #231815;
	text-decoration: none;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s 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: #231815;
	text-decoration: none;
}
mark {
	background-color: #ff9;
	color: #231815;
	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: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	height: 100%;
	line-height: 180%;
	letter-spacing: 0.1em;
	color: #333;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="submit"],
textarea,
button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border: none;
}
select {
	background: none;
	vertical-align: middle;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: none;
}
input[type="checkbox"],
input[type="radio"] {
	vertical-align: middle;
	margin-top: -1px;
	cursor: pointer;
}
input[type="submit"],
button {
	cursor: pointer;
	-webkit-transition: opacity 0.6s ease-out;
	-moz-transition: opacity 0.6s ease-out;
	-ms-transition: opacity 0.6s ease-out;
	transition: opacity 0.6s ease-out;
}
input[type="submit"]:hover,
button:hover {
	opacity: 0.50;
	-webkit-opacity: 0.50;
	-moz-opacity: 0.50;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
}
label {
	cursor: pointer;
}
img {
	vertical-align: bottom;
}
h1 {
	line-height: 140%;
	font-weight: normal;
}
h2 {
	font-size: 12px;
	line-height: 140%;
	font-weight: normal;
}
/* [header-PC]
--------------------------------------------------------------------------*/
header {
	position: absolute;
	z-index: 100;
	width: 100%;
}
header div.pkg-head {
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	display: flex;
	transition: 0.4s;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
header div.pkg-head .logo {
	width: 139px;
	height: auto;
	position: absolute;
	top: 0;
	left: 80px;
}
@media (max-width: 750px) {
	header div.pkg-head .logo {
		width: 110px;
		left: 30px;
	}
}
header div.pkg-head .logo img {
	width: 100%;
	height: auto;
}
/* [SP-NAV]
--------------------------------------------------------------------------*/
.menu {
	width: 100%;
	height: auto;
	position: fixed;
    display: block;
    z-index: 20;
    box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	transition: 0.8s;
	top: 90px;
	right: 0;
	left: 0;
	margin: 0 auto;
}
@media (max-width: 750px) {
	.menu {
		top: 30px;
	}
}
#menu-trigger {
  	position: absolute;
  	width: 40px;
  	height: 40px;
  	right: 80px;
    background: #225CAA;
    padding: 8px;
    box-sizing: border-box;
    z-index: 100;
}
@media (max-width: 750px) {
	#menu-trigger {
		right: 30px;
	}
}
#menu-trigger span {
	display: inline-block;
  	transition: all .4s;
  	box-sizing: border-box;
  	position: absolute;
  	left: 0;
  	width: 22px;
  	height: 2px;
  	background-color: #fff;
 	border-radius: 2px;
 	right: 0;
 	left: 0;
 	margin: 0 auto;
}
#menu-trigger span:nth-of-type(1) {
  	top: 11px;
}
#menu-trigger span:nth-of-type(2) {
	top: 27px;
}
#menu-trigger span:nth-of-type(3) {
  	bottom: 19px;
}
#menu-trigger.active {
	background: none;
}
#menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	top: 19px;
}
#menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
#menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(6px) rotate(45deg);
		transform: translateY(6px) rotate(45deg);
	top: 13px;
}
nav#nav-main {
	position: fixed;
	width: 395px;
	height: auto;
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	z-index: 1;
	top: 60px;
	right: 45px;
}
@media (max-width: 430px) {
	nav#nav-main {
		width: 100%;
		top: 0;
		right: 0;
		left: 0;
		padding-left: 20px;
	}
}
nav#nav-main {
	display: none;
}
nav#nav-main .navigation {
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}
nav#nav-main ul {
	position: absolute;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-weight: 300;
    padding: 75px 40px;
	background: rgba(0,0,0, 0.8);
}
@media (max-width: 750px) {
	nav#nav-main ul {
		height: 100vh;
	}
}
nav#nav-main ul li {
	position: relative;
	width: 100%;
	margin-bottom: 32px;
}
nav#nav-main ul a {
	width: 100%;
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	color: #fff;
	font-size: 14px;
}
@media (max-width: 750px) {
	nav#nav-main ul a {
		font-size: 10px;
	}
}
nav#nav-main ul a .jp {
	font-size: 23px;
	line-height: 100%;
	color: #fff;
	padding-bottom: 10px;
	margin-bottom: 5px;
	border-bottom: 1px solid #707070;
}
@media (max-width: 750px) {
	nav#nav-main ul a .jp {
		font-size: 16px;
	}
}
/* [header-Fixed-PC]
--------------------------------------------------------------------------*/
@media (max-width: 1180px) {
	.conts-fixed.pkg-head #menu-trigger span {
		background-color: #fff;
	}
	.conts-fixed.pkg-head #menu-trigger.active span {
		background-color: #fff;
	}
}
/* [other]
--------------------------------------------------------------------------*/
a[href^="tel:"] {
    pointer-events: none;
}
.back_top a {
	background: #225CAA;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	color: #fff;
	font-size: 12px;
	line-height: 24px;
	width: 50px;
	height: 50px;
	text-align: center;
	display: block;
	position: fixed;
	right: 2%;
	bottom: 2%;
	z-index: 3;
	padding: 12px 0;
	border: 1px solid #fff;
}
@media (max-width: 750px) {
	.back_top a {
		right: 20px;
		bottom: 20px;
	}
}
input[type="text"],
input[type="tel"],
input[type="email"] {
	width: 100%;
	border: solid 1px #EEE;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	line-height: 44px;
	padding: 0 10px;
	font-size: 16px;
}
textarea {
	width: 100%;
	border: solid 1px #EEE;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 0 10px;
}
input[type="submit"] {
	background: #231815;
	color: #FFF;
	width: 320px;
	height: 60px;
	line-height: 60px;
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-size: 15px;
	margin: 0 auto;
}
/* [footer]
--------------------------------------------------------------------------*/
footer {
	background: #225CAA;
	width: 100%;
	color: #fff;
	padding: 100px 40px 120px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
@media (max-width: 750px) {
	footer  {
		padding: 50px 40px 90px;
	}
}
.footer_wrap {
	width: 100%;
	max-width: 540px;
	margin: 0 auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer_wrap .f-txt {
	width: 30%;
	font-size: 10px;
	line-height: 140%;
}
@media (max-width: 750px) {
	.footer_wrap .f-txt {
		width: 100%;
		order: 2;
		text-align: center;
	}
}
.f-txt .f-logo {
	width: 121px;
	height: auto;
	padding-bottom: 20px;
}
@media (max-width: 750px) {
	.f-txt .f-logo {
		margin: 0 auto;
	}
}
.f-txt .f-logo img {
	width: 100%;
	height: auto;
}
.copyright {
	font-size: 10px;
}
.footer_wrap .f-nav {
	width: 59%;
	height: auto;
	margin-bottom: 40px;
}
@media (max-width: 750px) {
	.footer_wrap .f-nav {
		width: 100%;
		order: 1;
		margin-bottom: 80px;
	}
}
.f-nav li {
	width: 100%;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #fff;
	position: relative;
}
.f-nav li:nth-child(4n) {
	margin-right: 0;
}
.f-nav li a {
	font-size: 14px;
	color: #fff;
}
.f-nav li a span {
	position: absolute;
	right: 0;
	line-height: 24px;
}

img.alignright { display: block; margin: 30px 0 30px auto; }/* 配置位置 右 */
img.alignleft { display: block; margin: 30px auto 30px 0; }/* 配置位置 左 */
img.aligncenter { display: block; margin: 30px auto; }/* 配置位置 中央 */