@charset "utf-8";
/* Reset
---------------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
h1,h2,h3,h4,h5,h6 {
    font-size: 100%;
	font-weight: bold;
}
body { line-height: 1;}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { display: block;}
ul,ol { list-style: none;}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
}
img {
	width: 100%;
	height: auto;
}
html { font-size: 62.5%;}
body {
	width: 100%;
	font-size: 1.2rem;
	font-family: Verdana,"游ゴシック Medium","Yu Gothic Medium","游ゴシック体",YuGothic,sans-serif;
	background: #f5f5f5;
	color: #101016;
}
/* Header
---------------------------------------------------------- */
#header {
	width: 100%;
	height: 56px;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,.9);
	z-index: 999;
}
.header__inner {
	width: 90%;
	height: 56px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* logo */
.header__logo {}
.header__logo a {
	font-size: 3rem;
	font-weight: normal;
	color: #f5f5f5;
	font-family: 'Italianno', cursive;
}
/* header content */
.header__content {
	width: 38%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* mode */
.header__modeStyle {
	width: 8rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.header__modeStyle .light {
	font-size: 1.5rem;
	color: #555;
}
.header__modeStyle .dark {
	font-size: 1.5rem;
	color: #f5f5f5;
}
.header__modeStyle .light,
.header__modeStyle .dark { cursor: pointer;}
/* menu */
.header__menu {
	width: 25px;
	height: 22px;
	position: relative;
	cursor: pointer;
	z-index: 999;
}
.header__menu span {
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	background: #f5f5f5;
	transition: all .5s;
}
.header__menu span:nth-of-type(1) { top: 0;}
.header__menu span:nth-of-type(2) {
	top: 0;
	bottom: 0;
	margin: auto;
}
.header__menu span:nth-of-type(3) {
	bottom: 0;
	transform-origin: 0 50% 0;
	transform: scale(.7, 1);
}
.header__menu.open span {}
.header__menu.open span:nth-of-type(1) { transform: matrix(0.7071, -0.7071, 0.7071, 0.7071, 0, 8.5);}
.header__menu.open span:nth-of-type(2) { transform: matrix(0, 0, 0, 1, 0, 0);}
.header__menu.open span:nth-of-type(3) {
	transform-origin: 50% 50% 0px;
	transform: matrix(0.7071, 0.7071, -0.7071, 0.7071, 0, -11);
}
/* Navigation
---------------------------------------------------------- */
#navigation {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: 0.8s;
	transform: translate(100%);
	background: #101016;
	z-index: 888;
}
#navigation.active { transform: translate(0);}
#navigation h2 {
	color: #f5f5f5;
	font-size: 1.5rem;
	font-weight: normal;
	margin-bottom: 20px;
}
/* list */
#navigation ul {
	width: 80%;
	margin: 0 auto;
}
#navigation ul li { border-top: 1px solid #555;}
#navigation ul li:last-child { border-bottom: 1px solid #555;}
#navigation ul li a {
	display: block;
	position: relative;
	font-size: 1.5rem;
	line-height: 2;
	color: #f5f5f5;
	padding: 15px 0 15px 30px;
}
#navigation ul li a:hover {}
/* Icon */
#navigation ul li a::before {
    content: '';
    width: 14px;
    height: 14px;
    background: #555;
    border-radius: 50%;
    position: absolute;
    top: 23px;
    left: 5px;
}
#navigation ul li a::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: solid 1px #f5f5f5;
    border-right: solid 1px #f5f5f5;
    transform: rotate(45deg);
    position: absolute;
    top: 27px;
    left: 8px;
}
/* Breadcrumb
---------------------------------------------------------- */
#breadcrumb {
	width: 100%;
	display: flex;
	box-sizing: border-box;
	position: relative;
	background: #ddd;
	padding: 10px;
	margin-top: 56px;
}
#breadcrumb li {
	display: flex;
	align-items: center;
	margin-left: 1rem;
}
#breadcrumb li a {
	display: block;
	position: relative;
	color: #555;
	padding-right: 10px;
}
#breadcrumb li a::before {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	border-top: solid 1px #555;
	border-right: solid 1px #555;
	transform: rotate(45deg);
	top: 3px;
	right: 0;
}
#breadcrumb li a:hover { text-decoration: underline;}
/* Contents
---------------------------------------------------------- */
#main {}
/* pageHeader */
.sectionHead {}
.sectionHead__title {
	width: 90%;
	font-size: 2rem;
	line-height: 1.5;
	text-align: center;
	padding: 15px 0;
	margin: 0 auto;
}
.sectionHead__visual {}
.sectionHead__visual img {}
/* navIndex */
.navIndex {
	background: #eee;
	border-top: 1px solid #323232;
	border-bottom: 1px solid #323232;
}
.navIndex__title {
	font-size: 1.5rem;
	font-weight: normal;
	text-align: center;
	padding: 15px 0;
}
.list__ordered {
	width: 90%;
	margin: 0 auto;
	padding-bottom: 20px;
}
.list__ordered li { border-top: 1px solid #999;}
.list__ordered li:last-child { border-bottom: 1px solid #999;}
.list__ordered li a {
	display: block;
	color: #101016;
	font-size: 1.4rem;
	text-align: left;
	line-height: 1.5;
	text-indent: -1.5rem;
	margin-left: 1.5rem;
	padding: 12px 0 12px 15px;
}
/* pageContent */
.pageContent {
	width: 90%;
	border-bottom: 1px solid #323232;
	margin: 0 auto;
	padding: 25px 0;
}
.pageContent h2 {
	font-size: 1.8rem;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 25px;
}
.pageContent h3 {
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 25px;
}
.pageContent h4 {
	font-size: 1.5rem;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 25px;
}
.imageBox {}
.imageBox img { border-radius: 3px;}
/* textArea */
.textArea {
	width: 90%;
	margin: 25px auto;
}
.textArea p {
	font-size: 1.5rem;
	line-height: 1.5;
	margin-bottom: 25px;
}
.textArea ul { margin-left: 3rem;}
.textArea ul li {
	list-style: disc;
	font-size: 1.5rem;
	line-height: 1.5;
	margin-bottom: .5rem;
}
.textArea dl { margin-bottom: 20px;}
.textArea dl dt,
.textArea dl dd {
	font-size: 1.5rem;
	line-height: 1.7;
}
.textArea dl dt { font-weight: bold;}
.textArea dl dd { margin-top: 20px;}
.textArea ol {}
.textArea ol li {
	font-size: 1.5rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}
.textArea table {
	width: 100%;
	background: #222;
}
.textArea table tr {}
.textArea table th,
.textArea table td {
	font-size: 1.5rem;
	line-height: 1.7;
	padding: 10px 15px;
}
.textArea table th { background: #ddd;}
.textArea table td {
	background: #fff;
	text-align: center;
}
/* common style */
.mt25 { margin-top: 25px !important;}
.fwB { font-weight: bold !important;}
/* Page Link Button
---------------------------------------------------------- */
.pageLink {
	width: 80%;
	display: flex;
	justify-content: space-around;
	margin: 0 auto;
	padding: 30px 0 50px;
}
.pageLink a {
	color: #101016;
	border-bottom: 1px solid #101016;
	position: relative;
	padding: 10px;
}
/* Page Top
---------------------------------------------------------- */
#pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index: 999;
}
#pagetop a {
	width: 100px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
    background: rgba(0,0,0,.6);
    color: #f5f5f5;
    border-radius: 20px;
}
#pagetop a:hover { opacity: .8;}
/* Footer
---------------------------------------------------------- */
#footer {
	width: 100%;
	background: #eee;
	border-top: 1px solid #101016;
}
.footer__inner {
	width: 90%;
	margin: 0 auto;
}
.footer__logo {
	font-size: 1.5rem;
	font-weight: bold;
	padding: 20px 0;
}
.footer__nav { margin-bottom: 15px;}
.footer__nav ul {}
.footer__nav ul li { border-bottom: 1px solid #aaa;}
.footer__nav ul li:first-child { border-top: 1px solid #aaa;}
.footer__nav ul li a {
	display: block;
	position: relative;
	color: #101016;
	font-size: 1.4rem;
	line-height: 1.5;
	padding: 10px 40px 10px 10px;
}
.footer__nav ul li a::before {
    content: '';
    width: 14px;
    height: 14px;
    background: #323232;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 7px);
    right: 1rem;
}
.footer__nav ul li a::after {
    content: '';
    width: 5px;
    height: 5px;
    border: 0px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 15px;
}
/* Copyright */
#copyright {
	display: block;
	text-align: center;
	padding: 7px 0;
}
/******************** ここからタブレット /********************
---------------------------------------------------------- */
@media screen and (min-width:600px) and ( max-width:959px) {
.header__inner { width: 94%;}
.header__content { width: 200px;}
.header__modeStyle {
	width: 16rem;
	flex-direction: row;
}
.header__modeStyle .light { margin-right: 10px}
#breadcrumb { padding: 10px 30px;}
.sectionHead .textArea { width: 80%;}
}
/******************** ここからPC960-1280 /********************
---------------------------------------------------------- */
@media screen and (min-width:960px) and ( max-width:1280px) {
.header__inner { width: 98%;}
.header__content { width: 200px;}
.header__modeStyle {
	width: 16rem;
	flex-direction: row;
}
.header__modeStyle .light { margin-right: 10px}
#navigation { width: 680px;}
#navigation a:hover { background: #222;}
#breadcrumb { padding: 10px 30px;}
body.top .sectionHead {
	position: relative;
	padding-bottom: 190px;
}
.sectionHead__title { font-size: 2.4rem;}
.sectionHead__visual {
	height: 540px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
body.top .sectionHead__visual { height: 700px;}
.sectionHead .textArea { width: 800px;}
body.top .sectionHead .textArea {
	position: absolute;
	bottom: 80px;
	left: calc(50% - 400px);
	box-sizing: border-box;
	background: #f5f5f5;
	padding: 20px 30px;
	margin: 0;
}
.sectionHead .textArea p { margin: 0;}
.navIndex__title {
	font-size: 1.8rem;
	padding: 25px 0;
}
.list__ordered {
	width: 900px;
	padding-bottom: 30px;
}
.list__ordered li:hover { background: #f5f5f5;}
.list__ordered li a { font-size: 1.6rem;}
.pageContent { width: 960px;}
.pageContent h2 { font-size: 2rem;}
.pageContent h3 { font-size: 1.8rem;}
.pageContent h4 { font-size: 1.6rem;}
.textArea {
	width: 80%;
	margin: 40px auto;
}
.textArea p {
	font-size: 1.6rem;
	line-height: 1.7;
}
.textArea ul li {
	font-size: 1.6rem;
	line-height: 1.7;
}
.textArea dl dt {
	font-size: 1.6rem;
	line-height: 1.7;
}
.pageLink { width: 60%;}
.pageLink a:hover { opacity: .8;}
.footer__inner { width: 960px;}
.footer__logo {
	font-size: 1.6rem;
	padding: 30px 0;
}
.footer__nav ul li a {
	font-size: 1.5rem;
	line-height: 1.7;
	padding: 15px 40px 15px 15px;
}
.footer__nav ul li a:hover { background: #f5f5f5;}

}
/******************** ここからPC wide /********************
---------------------------------------------------------- */
@media screen and (min-width:1281px) {
.header__inner { width: 98%;}
.header__content { width: 200px;}
.header__modeStyle {
	width: 16rem;
	flex-direction: row;
}
.header__modeStyle .light { margin-right: 10px}
#navigation { width: 680px;}
#navigation a:hover { background: #222;}
#breadcrumb { padding: 10px 30px;}
body.top .sectionHead {
	position: relative;
	padding-bottom: 130px;
}
.sectionHead__title { font-size: 2.4rem;}
.sectionHead__visual {
	height: 540px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
body.top .sectionHead__visual { height: 700px;}
.sectionHead .textArea { width: 800px;}
body.top .sectionHead .textArea {
	position: absolute;
	bottom: 40px;
	left: calc(50% - 400px);
	background: #f5f5f5;
	padding: 20px 30px;
	margin: 0;
}
.sectionHead .textArea p { margin: 0;}
.navIndex__title {
	font-size: 1.8rem;
	padding: 25px 0;
}
.list__ordered {
	width: 900px;
	padding-bottom: 30px;
}
.list__ordered li:hover { background: #f5f5f5;}
.list__ordered li a { font-size: 1.6rem;}
.pageContent { width: 1000px;}
.pageContent h2 { font-size: 2rem;}
.pageContent h3 { font-size: 1.8rem;}
.pageContent h4 { font-size: 1.6rem;}
.textArea {
	width: 80%;
	margin: 40px auto;
}
.textArea p {
	font-size: 1.6rem;
	line-height: 1.7;
}
.textArea ul li {
	font-size: 1.6rem;
	line-height: 1.7;
}
.textArea dl dt {
	font-size: 1.6rem;
	line-height: 1.7;
}
.pageLink { width: 60%;}
.pageLink a:hover { opacity: .8;}
.footer__inner { width: 1000px;}
.footer__logo {
	font-size: 1.6rem;
	padding: 30px 0;
}
.footer__nav ul li a {
	font-size: 1.5rem;
	line-height: 1.7;
	padding: 15px 40px 15px 15px;
}
.footer__nav ul li a:hover { background: #f5f5f5;}
}
