@charset "utf-8";
body {
	font-size: 14px;
	font-family: "Quicksand","游ゴシック体","游ゴシック","Yu Gothic",YuGothic,"ヒラギノ角ゴシック Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-weight: 500;
	color: #333;
	min-width: 1024px;
	margin: 0 auto;
	min-height: 100vh;
	position: relative;
	padding-bottom: 80px;
}

h1,h2,h3,h4,h5,h6,p,pre,blockquote,ul,ol,dl,dd,address {
	line-height: 1.8;
	text-justify: inter-ideograph;
	margin: 0;
	padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
	color: #127db3;
}

#wrapper {
	width: 90%;
	margin: 0 auto;
	max-width: 1720px;
	min-width: 1280px;
}

.spview {
	display: none !important;
}

.pcview {
	display: block !important;
}

/*----------------------------------------------
ヘッダー
----------------------------------------------*/
header#headerContainer {
	position: relative;
	display: block;
	height: 86px;
	border-bottom: 1px solid #B5B5B5;
}

header#headerContainer h1 {
	display: block;
	margin: 0 auto;
	padding-top: 21px;
	z-index: 999;
}

header#headerContainer nav {
	display: flex;
	position: absolute;
	top: 21px;
	right: 0;
	opacity: 1.0;
	z-index: 1000;
	max-height: 70px;
}

header#headerContainer nav ul {
	background: none;
	display: table;
	margin: 0 0 0 auto;
	position: relative;
}

header#headerContainer nav ul li {
	display: inline-table;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	overflow: hidden;
	vertical-align: middle;
	margin-left: 30px;
}
header#headerContainer nav ul li:last-child {
	margin-left: 50px;
}


header#headerContainer nav ul li:hover {
	opacity:0.7;
}

header#headerContainer .btnMenu {
	display: none;
}
/*----------------------------------------------
フッター
----------------------------------------------*/

footer {
	background: #212129;
	width: 100%;
	height: 80px;
	color: #fff;
	position: absolute;
	bottom: 0;
}

footer .cp {
	color: #fff;
	text-align: center;
	padding-top: 18px;
	font-size: 14px;
}
footer .cp dl {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
footer .cp dl dd:first-child {
	margin-right: 20px;
	padding-right: 20px;
	border-right: 2px solid #fff;
}
footer .cp dl dd a {
	color: #fff;
	text-decoration: none;
}
footer .cp dl dd a:hover {
	text-decoration: underline;
}




/*----------------------------------------------
パンくず
----------------------------------------------*/
.breadcrumb {
	margin: 80px 0 74px;
}
.breadcrumb ul {
	list-style: none;
}
.breadcrumb ul li {
}
.breadcrumb ul li:after {
	content: ">";
	padding: 0 10px;
	font-size: 16px;
	font-weight: bold;
}
.breadcrumb ul li a {
	color: #333;
	text-decoration: underline;
}
@media only screen and (max-width:1220px) {
.breadcrumb {
	margin: 8vw 0 4vw;
}

}
/*----------------------------------------------
その他
----------------------------------------------*/
.alC {
	text-align: center;
}

@-webkit-keyframes smallToBig{
    from {
        -webkit-transform: scale(1);
    }
    to {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes smallToBig{
    from {
        -moz-transform: scale(1);
    }
    to {
        -moz-transform: scale(1);
    }
}






@media only screen and (max-width:1296px) {
body {
	min-width: auto;
	padding-bottom: 0;
}
#wrapper {
	width: 90%;
	margin: 0 auto;
	max-width: inherit;
	min-width: inherit;
}

/*----------------------------------------------
ヘッダー
----------------------------------------------*/
header#headerContainer {
	height: 135px;
}
header#headerContainer nav {
	top: 70px;
}


footer {
	position: static;
}

}




@media only screen and (max-width:1220px) {
.pcview {
	display: none !important;
}
.spview {
	display: block !important;
}

/*----------------------------------------------
ヘッダー
----------------------------------------------*/
header#headerContainer {
	height: 15vw;
}
header#headerContainer h1 {
	padding-top: 2vw;
}

header#headerContainer nav {
	display: none;
	position: absolute;
	top: 0;
	right: -5vw;
	min-height: 100vh;
	width: 100vw;
	background: #707070;
	box-sizing: border-box;
	max-height: none;
}

header#headerContainer .btnMenu {
	display: block;
	position: absolute;
	width: 34px;
	top: 6vw;
	right: 5vw;
	z-index: 1000;
	text-align: right;
}

header#headerContainer .btnMenu a {
	position: relative;
	display: block;
	background: none;
	border: none;
	appearance: none;
	cursor: pointer;
	width: 34px;
	height: 12px;
	transition: all 1s;
}

header#headerContainer .btnMenu a span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #212129;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

header#headerContainer .btnMenu a span:first-child {
	top: 0;
}

header#headerContainer .btnMenu a span:last-child {
    bottom: 0;
	top: auto;
}

header#headerContainer .btnMenu.active a span:first-child {
    -webkit-transform: translateY(5px) rotate(20deg);
    -moz-transform: translateY(5px) rotate(20deg);
    -ms-transform: translateY(5px) rotate(20deg);
    transform: translateY(5px) rotate(20deg);
	background: #fff;
}

header#headerContainer .btnMenu.active a span:last-child {
    -webkit-transform: translateY(-5px) rotate(-20deg);
    -moz-transform: translateY(-5px) rotate(-20deg);
    -ms-transform: translateY(-5px) rotate(-20deg);
    transform: translateY(-5px) rotate(-20deg);
	background: #fff;
}

header#headerContainer .navigation {
}
header#headerContainer .navigation ul {
	display: block;
	width: 90%;
	margin: 20vw auto 12.5vw;
}
header#headerContainer .navigation ul li {
	margin: 0;
	width: 100%;
	border-bottom: 1px solid #fff;
}
header#headerContainer nav ul li:last-child {
	margin: 0;
	border-bottom: none;
}
header#headerContainer .navigation ul li a {
	display: block;
	font-size: 1.25rem;
	color: #fff;
	width: 100%;
	padding: 6vw 0 6vw 10vw;
	font-weight: bold;
}
header#headerContainer .navigation ul li.toku a {
	font-size: 1.00rem;
}


header#headerContainer .conBtn {
	position: absolute;
	bottom: 0;
	background: #212129;
}
header#headerContainer .conBtn a {
	display: block;
	text-align: center;
	width: 100vw;
	font-size: 1.25rem;
	color: #fff;
	font-weight: bold;
	padding: 4.5vw 0;
}
header#headerContainer .conBtn a img {
	padding: 0 0 0 0.5em;
}







footer {
	position: absolute;
}

}

















