@charset "UTF-8";
/*----------------------------------------------------
	再設定
----------------------------------------------------*/
html {
	font-size: 16px;
}
@media (max-width: 767px) {
	html {
		font-size: 14px;
	}
}

body {
	font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	color: #000;
}
@media (min-width: 768px) {
	body {
		min-width: 1120px;
	}
}
@media (max-width: 767px) {
	body {
		padding-top: 60px;
	}
}

body.fluid {
	min-width: 0;
}

a {
	color: #000;
	text-decoration: none;
	transition: all .3s;
}
a img {
	transition: all .3s;
}
a:hover {
	color: #bfa032;
}
a:hover img {
	opacity: 0.75;
}

img {
	max-width: 100%;
	height: auto;
	width: auto;
	vertical-align: middle;
}

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
@media (max-width: 767px) {
	header {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		background-color: #fff;
		z-index: 9999;
	}
}
header .site-nav {
	display: flex;
	align-items: flex-start;
}
header .gnav {
	display: flex;
}
header .gnav li {
	margin-right: 1.25em;
	line-height: 1.125;
	font-size: 0.75em;
	font-weight: bold;
}
header .gnav a:before {
	content: "\f105";
	margin-right: 0.5em;
	color: #bfa032;
	font-family: FontAwesome;
}
@media (max-width: 767px) {
	header .gnav {
		flex-wrap: wrap;
	}
	header .gnav li {
		padding: 0.5em 0;
		font-size: 0.875em;
	}
}
header .sns {
	display: flex;
	line-height: 1;
}
@media (min-width: 768px) {
	header .sns li {
		margin: -1em 0 0 0;
	}
	header .sns li:not(:first-child) {
		margin-left: 12px;
	}
	header .sns img {
		width: 40px;
		height: 40px;
	}
}

.headerWrap {
	padding: 1.5em 0;
}
@media (max-width: 767px) {
	.headerWrap {
		padding: 7px 0;
	}
}

@media (min-width: 768px) {
	.headerDesc {
		display: flex;
		padding: 0 0 1em;
		justify-content: space-between;
	}
	.headerDesc p {
		font-size: 0.75em;
		line-height: 1.125;
		font-weight: bold;
	}
}
@media (max-width: 767px) {
	.headerDesc {
		display: none;
	}
}

.headerContent {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (min-width: 768px) {
	.headerContent .headerInfo {
		display: flex;
	}
	.headerContent .headerInfo > div {
		margin-left: 0.75em;
	}
	.headerContent .headerInfo-sp {
		display: none;
	}
	.headerContent .logo img {
		width: 235px;
	}
}
@media (max-width: 767px) {
	.headerContent .headerInfo {
		display: none;
	}
	.headerContent .logo {
		margin-right: 0.5em;
	}
	.headerContent .logo img {
		width: 128px;
	}
	.headerContent .headerInfo-sp {
		display: flex;
	}
	.headerContent .headerInfo-sp > div {
		margin-left: 0.5em;
	}
	.headerContent .headerInfo-sp img {
		height: 46px;
	}
}

@media (min-width: 768px) {
	.headerNav {
		position: relative;
		border-top: 1px solid #eeeeee;
		z-index: 9999;
	}
	.headerNav .nav {
		display: table;
		width: 100%;
	}
	.headerNav .lv1 {
		position: relative;
		text-align: center;
		display: table-cell;
		cursor: pointer;
		text-align: center;
	}
	.headerNav .lv1:after {
		content: '';
		display: block;
		width: 1px;
		height: 30px;
		background-color: #bfbfbf;
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -15px;
	}
	.headerNav .lv1:last-child:after {
		display: none;
	}
	.headerNav .lv1 > span,
	.headerNav .lv1 > a {
		padding: 0 1em;
		height: 68px;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: color .3s;
		font-weight: bold;
	}
	.headerNav .lv1 > span:hover,
	.headerNav .lv1 > a:hover {
		color: #bfa032;
	}
	.headerNav .current:before,
	.headerNav .show:before {
		content: '';
		display: block;
		width: 80%;
		height: 4px;
		background-color: #d4b079;
		position: absolute;
		left: 10%;
		top: 58px;
	}
	.headerNav .show .subnav {
		display: block;
		animation: fadeIn 0.3s linear forwards;
	}
	.headerNav .subnav {
		display: none;
		position: absolute;
		left: -20px;
		top: 62px;
		min-width: calc(100% + 40px);
		padding: 0.5em 1em 0;
		background-color: #626262;
	}
	.headerNav .subnav li {
		border-bottom: 1px dotted #fff;
	}
	.headerNav .subnav li:last-child {
		border-bottom: none;
	}
	.headerNav .subnav a {
		display: flex;
		justify-content: space-between;
		width: 100%;
		position: relative;
		color: #fff;
		font-size: 0.875em;
		padding: 1em 1.5em 1em 0;
		white-space: nowrap;
	}
	.headerNav .subnav a:hover {
		color: #bfa032;
	}
	.headerNav .subnav a:after {
		display: inline-block;
		position: absolute;
		margin: -0.75em 0.5em 0 0;
		right: 0;
		top: 50%;
		content: "\f105";
		color: #bfa032;
		font-family: FontAwesome;
	}
	.headerNav a {
		display: block;
	}
}
@media (max-width: 767px) {
	.headerNav {
		display: none;
		height: calc(100vh - 60px);
		padding: 1em 0;
		color: #fff;
		background-color: #626262;
		overflow: auto;
	}
	.headerNav.show {
		display: block;
		animation: fadeIn 0.3s linear forwards;
	}
	.headerNav a {
		color: #fff;
	}
	.headerNav .lv1 {
		padding: 0.5em 0;
	}
	.headerNav .lv1 > span {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0.25em -10px 0.5em;
		white-space: nowrap;
	}
	.headerNav .lv1 > span:before {
		margin-right: 1em;
		content: '';
		display: block;
		height: 1px;
		width: 100%;
		background-color: #fff;
	}
	.headerNav .lv1 > span:after {
		margin-left: 1em;
		content: '';
		display: block;
		height: 1px;
		width: 100%;
		background-color: #fff;
	}
	.headerNav .lv1 a {
		display: block;
		position: relative;
		padding: 0.825em 1em 0.825em 0.75em;
		font-size: 0.875em;
		border: 1px solid #fff;
	}
	.headerNav .lv1 a:after {
		display: inline-block;
		position: absolute;
		margin: -0.75em 0.5em 0 0;
		right: 0;
		top: 50%;
		content: "\f105";
		color: #bfa032;
		font-family: FontAwesome;
	}
	.headerNav .subnav {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.headerNav .subnav .lv2 {
		width: 49%;
		margin: 1% 0;
	}
	.headerNav .subnav .long-sp {
		width: 100%;
	}
	.headerNav .links-sp {
		border-top: 1px solid #fff;
		margin-top: 0.5em;
		margin-left: -10px;
		margin-right: -10px;
	}
	.headerNav .inner {
		padding: 1em 10px;
	}
	.headerNav .tel {
		padding: 1em 0 0.5em;
	}
	.headerNav .sns {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.headerNav .sns li {
		width: 28%;
		text-align: center;
	}
	.headerNav .sns li:not(:last-child) img {
		width: 40px;
	}
	.headerNav .action {
		display: flex;
	}
	.headerNav .action > div {
		width: 50%;
	}
}

/*----------------------------------------------------
	メイン
----------------------------------------------------*/
.breadcrumb {
	padding: 0.375em 0;
	background-color: #f7f7f7;
}
.breadcrumb li {
	display: inline-block;
	font-size: 0.75em;
}
.breadcrumb li:first-child:before {
	display: none;
}
.breadcrumb li:before {
	content: '>';
	display: inline-block;
	margin: 0 1em;
	font-size: 0.75em;
}
@media (max-width: 767px) {
	.breadcrumb li {
		font-size: 0.625em;
	}
	.breadcrumb li:before {
		margin: 0 0.25em;
		font-size: 0.625em;
	}
}

section {
	padding-top: 2em;
	padding-bottom: 2em;
}

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
.footerTop {
	background-color: #757575;
}
@media (min-width: 768px) {
	.footerTop .wrap {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.footerTop .nav li {
		display: inline-block;
		font-size: 0.875em;
		line-height: 1;
		float: left;
	}
	.footerTop .nav li:after {
		color: #fff;
		content: '|';
		display: inline-block;
		margin: 0 1em;
	}
	.footerTop .nav li:last-child:after {
		display: none;
	}
}
.footerTop a {
	color: #fff;
}
.footerTop a:hover {
	color: #bfa032;
}
@media (max-width: 767px) {
	.footerTop .nav {
		padding: 0.25em 0;
	}
	.footerTop .nav li {
		padding: 0.5em 0;
	}
	.footerTop .pagetop {
		margin-left: -10px;
		margin-right: -10px;
	}
}

.footerContent {
	padding: 2em 0 2em;
	background-color: #eeeeee;
}

@media (min-width: 768px) {
	.footerGuide {
		display: flex;
		justify-content: space-between;
	}
	.footerGuide .col {
		width: 350px;
	}
	.footerGuide .items {
		padding: 1em 0;
	}
}
.footerGuide .item {
	margin-bottom: 1em;
}
.footerGuide .item:last-child {
	margin-bottom: 0;
}
.footerGuide h3 {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0.5em 0.5em;
	margin-bottom: 0.5em;
	font-weight: bold;
	font-size: 1.125em;
	background-color: #fff;
}
.footerGuide h3:before {
	content: '';
	display: inline-block;
	width: 0.75em;
	height: 4px;
	margin-right: 0.5em;
	background-color: #d4b079;
}
.footerGuide h4 {
	font-weight: bold;
	font-size: 1.125em;
	padding: 0.25em 0;
}
.footerGuide p {
	padding: 0.5em 0;
	font-size: 0.875em;
}
.footerGuide .ex {
	padding: 0.5em 0;
}
.footerGuide .ex li {
	font-size: 0.75em;
	padding-left: 1em;
	text-indent: -1em;
}
.footerGuide table {
	width: 100%;
	margin: 0.5em 0;
	font-size: 0.875em;
	text-align: center;
}
.footerGuide table tr {
	border-bottom: 1px solid #a0a0a0;
}
.footerGuide table tr:first-child {
	border-top: 1px solid #a0a0a0;
}
.footerGuide table th {
	padding: 0.5em 0.25em;
	border-right: 1px solid #a0a0a0;
}
.footerGuide table td {
	padding: 0.5em 0.25em;
}
.footerGuide .yupack p {
	flex: 1;
	padding-right: 1em;
}
.footerGuide .yupack .pic {
	width: 162px;
}
.footerGuide .bank {
	padding: 0.75em 1em;
}
@media (max-width: 767px) {
	.footerGuide .body {
		display: none;
		margin-bottom: 2em;
	}
	.footerGuide h3:after {
		position: absolute;
		right: 0;
		top: 50%;
		content: '';
		display: inline-block;
		margin: -10px 10px 0 0;
		width: 20px;
		height: 20px;
		margin-right: 0.5em;
		background: url(../images/ico_plus.png) center center no-repeat/contain;
	}
	.footerGuide .show h3:after {
		background-image: url(../images/ico_minus.png);
	}
	.footerGuide .open .body {
		display: block;
		animation: fadeIn 0.3s linear forwards;
	}
	.footerGuide .yupack .pic {
		width: 120px;
	}
}

.footerContact {
	padding: 1em 0.5em;
	background-color: #fff;
}
@media (min-width: 768px) {
	.footerContact {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.footerContact .header {
		width: 27.5%;
		padding-left: 1em;
		border-right: 1px solid #535353;
	}
	.footerContact .tel {
		width: 35%;
		text-align: center;
		border-right: 1px solid #535353;
	}
	.footerContact .email {
		width: 37.5%;
		text-align: center;
	}
}
.footerContact h3 {
	line-height: 1;
	margin-bottom: 0.5em;
	letter-spacing: 0.05em;
	font-size: 1.75em;
}
.footerContact h4 {
	margin-bottom: 0.25em;
	font-weight: bold;
	font-size: 1.125em;
}
.footerContact .info {
	font-size: 0.875em;
}
@media (max-width: 767px) {
	.footerContact {
		padding: 0 1em;
		text-align: center;
	}
	.footerContact .header {
		padding: 1em 0;
		border-bottom: 1px solid #a9a9a9;
	}
	.footerContact .tel {
		padding: 1em 0;
		border-bottom: 1px solid #a9a9a9;
	}
	.footerContact .email {
		padding: 1em 0;
	}
}

.footerSitemap {
	padding: 1.5em 0;
}
@media (min-width: 768px) {
	.footerSitemap {
		display: flex;
		justify-content: space-between;
		border-bottom: 1px solid #bfbfbf;
	}
	.footerSitemap .logo {
		padding-top: 0.5em;
	}
	.footerSitemap .nav li {
		padding: 0.25em 0;
		font-size: 0.875em;
	}
	.footerSitemap .nav a:before {
		content: "\f105";
		margin-right: 0.5em;
		color: #bfa032;
		font-family: FontAwesome;
	}
}
@media (max-width: 767px) {
	.footerSitemap .logo {
		text-align: center;
	}
	.footerSitemap .logo img {
		width: 120px;
	}
	.footerSitemap .nav {
		display: none;
	}
}

.copyright {
	padding: 1.5em 0;
	text-align: center;
	font-size: 0.75em;
}
