@charset "utf-8";

/*===============================================
	Reset
===============================================*/
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, font, img, ins, kbd, q, s, samp, 
small, strike, strong, sub, sup, tt, var, 
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td, 
article, aside, details, figcaption, figure, 
footer, header, menu, nav, section,
canvas, audio, video {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	font-style: normal;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, menu, nav, section {
	display: block;
}
h1, h2, h3, h4, h5, h6, strong {
	font-weight: bold;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th{
	text-align: left;
}
img {
	vertical-align: top;
}
sup, sub {
	font-size: 80%;
	line-height: 1;
}
sup { vertical-align: 0.3em; }
sub { vertical-align: -.1em; }


/*===============================================
	shared
===============================================*/
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	color: #333;
	line-height: 1;
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
a {
	color: #333;
	text-decoration: none;
}
.txtL { text-align: left; }
.txtR { text-align: right; }
.txtC { text-align: center; }

@media screen and (min-width: 641px) {
	.sp { display: none !important; }
	.img100 { width:100%; height:auto; }
	#wrapper {
		position: relative;
		min-width: 1140px;
	}
}
@media screen and (max-width: 640px) {
	.pc { display: none !important; }
	.sp { display: block !important; }
	img.sp { display: inline !important; }

	img { width:100%; height:auto; }
	#wrapper {
		min-width: 320px;
	}
}

/* ---------------------------------------------------------------------------------
header
--------------------------------------------------------------------------------- */
header {
	position: fixed;
	z-index: 100;
	width: 100%;
	background: #fff;
}

@media screen and (min-width: 641px) {
	header {
		padding-top: 13px;
		border-bottom: 2px solid #cdcdcd;
	}
	header div:first-child {
		display: flex;
		justify-content: space-between;
		width: 962px;
		margin: 0 auto;
		padding-right: 2px;
	}
	header h1 a {
		display: block;
		width: 320px;
		height: 56px;
		margin-bottom: 12px;
		text-indent: -9999px;
		background: url(../images/pc_logo.gif) left top no-repeat;
	}
	header div ul.pc {
		display: flex;
	}
	header div ul.pc li + li {
		margin-left: 25px;
	}
	header nav ul {
		display: flex;
		justify-content: center;
		min-width: 962px;
		border-top: 1px dotted #cdcdcd;
	}
	header nav ul li + li {
		margin-left: 45px;
	}
}

@media screen and (max-width: 640px) {
	header h1 a {
		display: block;
		width: 78.75vw;
		height: 16.25vw;
		text-indent: -9999px;
		background: url(../images/sp_logo.gif) left top no-repeat;
		background-size: 100%;
	}
	header div ul.sp {
		display: flex !important;
	}
	header #menubtn {
		position: fixed;
		top: 2.34375vw; right: 2.03125vw;
		width: 10vw;
	}
	header nav {
		display: flex;
		position: fixed;
		top:0; right:0;
		transform: translateX(100%);
		transition: 0.3s transform;
		z-index: 999;
	}
	header nav.open {
		transform: translateX(0);
	}
	header .bg {
		display: none;
		position: fixed;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.3);
		z-index: 98;
	}
	header #closebtn {
		width: 14.53125vw;
		margin-right: 1px;
		z-index: 99;
	}
	header nav ul {
		width: 67vw;
		z-index: 99;
	}
	header nav ul img {
		display: none;
	}
	header nav li span {
		display: block;
		width: 100%;
		padding: 5vw 0 5vw 5.5vw;
		font-size: 4.375vw;
		font-weight: bold;
		color: #fff;
		text-decoration: none;
		background: #000;
		border-top: 1px solid #fff;
		box-sizing: border-box;
	}
	header nav li:first-child a, header nav li.act:first-child {
		border-top: none;
	}
}

/* ---------------------------------------------------------------------------------
article
--------------------------------------------------------------------------------- */
@media screen and (min-width: 641px) {
	article {
		padding: 119px 0 80px;
		background: center 119px no-repeat;
	}
	article h1 {
		height: 108px;
		text-indent: -9999px;
		background: center top no-repeat;
	}
}
@media screen and (max-width:640px) {
	article {
		padding: 30.78125vw 0 12.5vw;
		background: center 30.78125vw no-repeat;
		background-size: 100%;
	}
	article h1:first-of-type {
		width: 100%;
		height: 20.3125vw;
		text-indent: -9999px;
		background: center top no-repeat;
		background-size: 100%;
	}
}

/* パンくず
-----------------------------------------------------------*/
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
}
.breadcrumbs li + li::before {
	content:"＞";
	margin: 0 0.3em;
}
.breadcrumbs a { text-decoration: underline; }
.breadcrumbs a:hover { text-decoration: none; }

@media screen and (min-width: 641px) {
	.breadcrumbs {
		width: 960px;
		margin: 0 auto;
		line-height: 36px;
	}
}
@media screen and (max-width:640px) {
	.breadcrumbs {
		margin: 0 3.125vw 0.78125vw;
		padding: 0.2em 0;
		font-size: 3.4375vw;
		line-height: 1.63636;
	}
}


/* ---------------------------------------------------------------------------------
footer
--------------------------------------------------------------------------------- */
footer {
	position: relative;
	text-align: center;
	color: #fff;
	background: #63b700;
}
footer p span, footer dt, footer dd {
	margin: 0 auto;
	text-indent: -9999px;
}
footer dl {
	padding: 60px 0;
	background: #0064b3;
}
footer div a {
	color: #fff;
}
footer div a:hover {
	text-decoration: underline;
}
footer div a::before {
	content:"▶ ";
}

@media screen and (min-width: 641px) {
	footer .webds {
		background: #f3fcfe;
	}
	footer .webds span {
		display: block;
		width: 682px; height: 240px;
		background: url(../images/pc_foot_ds.gif) center top no-repeat;
	}
	footer dt {
		width: 738px; height: 69px;
		background: url(../images/pc_foot_copy.gif) center top no-repeat;
	}
	footer dd a {
		display: block;
		width: 738px; height: 91px;
		margin: 0 auto;
		background: url(../images/pc_foot_btn.gif) center top no-repeat;
		cursor: pointer;
		transition: 0.3s all;
	}
	footer dd a:hover {
		opacity: 0.8;
	}
	footer .lixil {
		padding: 31px 0 61px;
		background: #fff;
	}
	footer .pagetop {
		position: absolute;
		bottom:70px; left:50%;
		margin-left: 480px;
	}
	footer div {
		display: flex;
		justify-content: space-between;
		width: 960px;
		margin: 0 auto;
		font-size: 0.75rem;
		line-height: 2.5;
	}
	footer div ul {
		display: flex;
	}
	footer div li {
		margin-right: 1.25em;
	}
}
@media screen and (max-width:640px) {
	footer .webds span {
		display: block;
		width: 100%; height: 42.1875vw;
		background: url(../images/sp_foot_ds.gif) center top no-repeat;
		background-size: 100%;
	}
	footer dl {
		padding: 0 0 7.8125vw;
		background: #0064b3;
	}
	footer dt {
		width: 100%; height: 20.3125vw;
		background: url(../images/sp_foot_copy.gif) center top no-repeat;
		background-size: 100%;
	}
	footer dd a {
		display: block;
		width: 100%; height: 15.625vw;
		background: url(../images/sp_foot_btn.gif) center top no-repeat;
		background-size: 100%;
	}
	footer .lixil {
		padding: 6.5625vw 27.65625vw 8.75vw 25.46875vw;
		background: #fff;
	}
	footer .pagetop {
		width: 14.0625vw; height: 14.0625vw;
		position: absolute;
		bottom: 25vw; right: 1.71875vw;
	}
	footer div {
		padding: 3.125vw 0;
		font-size: 4.0625vw;
		line-height: 1.923;
	}
	footer div ul {
		display: flex;
		justify-content: center;
	}
	footer div li + li {
		margin-left: 1.25em;
	}
}
