@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;
	text-align: center;
	line-height: 1.5;
	padding: 10px 10px 15px;
}
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%;} /* 10px */
body {
	width: 100%;
	font-size: 1.2rem; /* 12px */
	font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro", "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic"  , "Meiryo UI" , "メイリオ" , Meiryo , "Mplus 1p" , "Noto Sans Japanese" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	color: #323232; /* サイト全体のテキスト色 */
}
/* Header
---------------------------------------------------------- */
#header {
	width: 100%;
	height: 50px; /* ヘッダーの高さ */
	position: fixed;
	background: rgba(0,0,0,.8); /* ヘッダーの背景色 */
}
.header__inner {
	width: 95%;
	height: 50px; /* ヘッダーの高さと同じ値を記載 */
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__modeStyle {}
.header__modeStyle .light {
	font-size: 1.5rem;
	color: #aaa;
	margin-right: 1rem;
}
.header__modeStyle .dark {
	font-size: 1.5rem;
	color: #fff;
	margin-right: 1rem;
}
.header__modeStyle .light,
.header__modeStyle .dark { cursor: pointer;}
.header__menu {
	width: 50px; /* ヘッダーの高さと同じ値を記載 */
	height: 50px; /* ヘッダーの高さと同じ値を記載 */
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	font-weight: bold;
	cursor: pointer;
	color: #fff; /* メニューテキスト色 */
	z-index: 999;
}
.header__menu.open { color: #323232;} /* 
/* Navigation
---------------------------------------------------------- */
#navigation {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	transition: all 0.8s;
	transform: translate(-100%);
	background: rgba(242,242,242,.8); /* ナビゲーションメニュー背景色 */
	z-index: 888;
}
#navigation.active { transform: translate(0);}
#navigation ul {
	width: 80%;
	margin: 0 auto;
}
#navigation ul li { border-top: 1px solid #aaa;} /* ナビゲーションメニューリスト区切り線色 */
#navigation ul li:last-child { border-bottom: 1px solid #aaa;} /* ナビゲーションメニューリスト区切り線色 ※上のものと同じ値を記載 */
#navigation ul li a {
	display: block;
	position: relative;
	font-size: 1.6rem; /* ナビゲーションメニューテキストサイズ */
	line-height: 2; /* ナビゲーションメニューテキスト高さ */
	font-weight: bold; /* ナビゲーションメニューテキスト太字 */
	color: #323232; /* ナビゲーションメニューテキスト色 */
	padding: 15px 0 15px 30px; /* ナビゲーションメニューリスト余白 */
}
#navigation ul li a:hover { text-decoration: none;}
/* Icon */
#navigation ul li a::before {
    content: '';
    width: 14px; /* アイコン横幅 */
    height: 14px; /* アイコン高さ 横幅と同じ値を記載 */
    background: #323232; /* アイコン背景色 */
    border-radius: 50%;
    position: absolute;
    top: 23px; /* アイコン位置縦 */
    left: 5px; /* アイコン位置横 */
}
#navigation 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: 27px; /* アイコン矢印位置縦 */
    left: 8px; /* アイコン矢印位置横 */
}
/* Breadcrumb
---------------------------------------------------------- */
#breadcrumb {
	width: 100%;
	height: 25px;
	display: flex;
	padding-top: 50px;
}
#breadcrumb div {
	height: 25px;
	display: flex;
	align-items: center;
	margin-left: 1rem;
}
#breadcrumb div a {
	display: block;
	position: relative;
	color: #aaa; /* パンくずテキスト色 */
	padding-right: 10px;
}
#breadcrumb a::before {
	content: "";
	position: absolute;
	width: 6px; /* パンくず矢印横幅 */
	height: 6px; /* パンくず矢印高さ */
	border-top: solid 1px #999; /* パンくず矢印太さと色 */
	border-right: solid 1px #999; /* パンくず矢印太さと色 上記矢印と同じ値を記載 */
	transform: rotate(45deg);
	top: 2px; /* パンくず矢印位置縦 */
	right: 0; /* パンくず矢印位置横 */
}
#breadcrumb div a:hover { text-decoration: underline;}
/* Contents
---------------------------------------------------------- */
/* main */
#main { padding-bottom: 20px;}
/* pageHeader */
.pageHeader {}
.pageHeader__title {}
.pageHeader__visual {}
/* navIndex */
.pageIndex {
	background: #eee;
	border-top: 1px solid #323232;
	border-bottom: 1px solid #323232;
}
.pageIndex__inner {
	width: 90%;
	margin: 0 auto;
	padding: 10px 0 25px;
}
.pageIndex__title {
	text-align: left;
	padding-left: 10px;
}
.list__ordered--basic {}
.list__ordered--basic li { border-top: 1px solid #999;}
.list__ordered--basic li:last-child { border-bottom: 1px solid #999;}
.list__ordered--basic li a {
	display: block;
	color: #323232;
	font-size: 1.6rem;
	text-align: left;
	line-height: 1.5;
	text-indent: -1.5rem;
	margin-left: 1.5rem;
	padding: 15px 0 15px 15px;
}
/* pageContent */
.pageContent {
	width: 90%;
	border-bottom: 1px solid #323232;
	margin: 15px auto;
}
/* textArea */
.textArea {
	width: 90%;
	margin: 15px auto;
}
.textArea p {
	font-size: 1.5rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}
.textArea ul { margin-left: 1rem;}
.textArea ul li {
	list-style: disc;
	font-size: 1.5rem;
	line-height: 1.7;
	margin-bottom: 1.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: 1rem;}
.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 */
.fwb { font-weight: bold;}
.mt20 { margin-top: 20px;}
.mt40 { margin-top: 40px;}
/* Heading
---------------------------------------------------------- */
h1 { font-size: 2rem;}
h2 { font-size: 1.8rem;}
h3,h4,h5 { font-size: 1.6rem;}
/* Page Link Button
---------------------------------------------------------- */
.pageLink {
	display: flex;
	justify-content: space-between;
}
.pageLink a {
	width: 49%;
	display: block;
	font-size: 1.6rem;
	color: #323232;
	font-weight: bold;
	text-align: center;
	padding: 7px 0;
}
body.top .pageLink a,
body.page04 .pageLink a { width: 100%;}
/* Page Top
---------------------------------------------------------- */
#pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 80%;
	z-index: 9999;
}
#pagetop a {
    display: block;
    background: rgba(0,0,0,.6);
	font-size: 1.2rem;
    color: #fff;
    width: 100px;
    padding: 25px 0;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
}
#pagetop a:hover { opacity: .8;}
/* Footer
---------------------------------------------------------- */
#footer {
	width: 100%;
	background: #f2f2f2;
}
.footer__inner {
	width: 90%;
	margin: 0 auto;
}
.footer__logo {
	font-size: 1.6rem;
	font-weight: bold;
	padding: 20px 0;
}
.footer__nav { margin-bottom: 10px;}
.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: #323232;
	font-size: 1.4rem;
	line-height: 1.7;
	padding: 10px 40px 10px 10px;
}
.footer__nav ul li a::before {
    content: '';
    width: 14px;
    height: 14px;
    background: #323232;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -7px;
}
.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: 50%;
    right: 15px;
    margin-top: -3px;
}
/* Copyright */
#copyright {
	display: block;
	font-size: 1.2rem;
	padding: 5px 0 15px 2rem;
}
/******************** ここからタブレット /********************
---------------------------------------------------------- */
@media screen and (min-width:600px) and ( max-width:959px) {
/* Header
---------------------------------------------------------- */
#header {}
.header__inner {}
.header__modeStyle {}
.header__modeStyle .light {}
.header__modeStyle .dark {}
.header__menu {}
.header__menu.open {} 
/* Navigation
---------------------------------------------------------- */
#navigation {}
#navigation.active {}
#navigation ul {}
#navigation ul li {} /* ナビゲーションメニューリスト区切り線色 */
#navigation ul li:last-child {} /* ナビゲーションメニューリスト区切り線色 ※上のものと同じ値を記載 */
#navigation ul li a {}
#navigation ul li a:hover {}
/* Icon */
#navigation ul li a::before {}
#navigation ul li a::after {}
/* Breadcrumb
---------------------------------------------------------- */
#breadcrumb {
	width: calc(100% - 50px);
	background: #eee;
	padding-left: 50px;
}
#breadcrumb div {}
#breadcrumb div a {}
#breadcrumb a::before {}
#breadcrumb div a:hover {}
/* Contents
---------------------------------------------------------- */
/* main */
#main {}
/* pageHeader */
.pageHeader {}
.pageHeader__title {}
.pageHeader__visual {
	height: 400px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.pageHeader .textArea {}
/* navIndex */
.pageIndex {}
.pageIndex__inner {}
.pageIndex__title {}
.list__ordered--basic {}
.list__ordered--basic li {}
.list__ordered--basic li:last-child {}
.list__ordered--basic li a {}
.list__ordered--basic li a:hover { background: #fff;}
/* pageContent */
.pageContent {}
/* textArea */
.textArea {}
.textArea p {}
/* common style */
.fwb {}
.mt20 {}
/* Heading
---------------------------------------------------------- */
h1 {}
h2 {}
h3,h4,h5 {}
/* Page Link Button
---------------------------------------------------------- */
.pageLink {}
.pageLink a {}
.pageLink a:hover {}
body.top .pageLink a,
body.page04 .pageLink a {}
/* Page Top
---------------------------------------------------------- */
#pagetop {}
#pagetop a {}
#pagetop a:hover {}
/* Footer
---------------------------------------------------------- */
#footer {}
.footer__inner {}
.footer__logo {}
.footer__nav {}
.footer__nav ul {}
.footer__nav ul li {}
.footer__nav ul li:first-child {}
.footer__nav ul li a {}
.footer__nav ul li a:hover {}
.footer__nav ul li a::before {}
.footer__nav ul li a::after {}
/* Copyright */
#copyright {}

}

/******************** ここからPC960-1280 /********************
---------------------------------------------------------- */
@media screen and (min-width:960px) and ( max-width:1280px) {
/* Header
---------------------------------------------------------- */
#header {}
.header__inner {}
.header__modeStyle {}
.header__modeStyle .light {}
.header__modeStyle .dark {}
.header__menu {}
.header__menu.open {} 
/* Navigation
---------------------------------------------------------- */
#navigation { width: 480px;}
#navigation.active {}
#navigation ul {}
#navigation ul li {} /* ナビゲーションメニューリスト区切り線色 */
#navigation ul li:last-child {} /* ナビゲーションメニューリスト区切り線色 ※上のものと同じ値を記載 */
#navigation ul li a {}
#navigation ul li a:hover { background: #eee;}
/* Icon */
#navigation ul li a::before {}
#navigation ul li a::after {}
/* Breadcrumb
---------------------------------------------------------- */
#breadcrumb {
	width: calc(100% - 60px);
	background: #eee;
	padding-left: 60px;
}
#breadcrumb div {}
#breadcrumb div a {}
#breadcrumb a::before {}
#breadcrumb div a:hover {}
/* Contents
---------------------------------------------------------- */
/* main */
#main {}
/* pageHeader */
.pageHeader {}
.pageHeader__title { padding: 10px 0;}
.pageHeader__visual {
	height: 500px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.pageHeader .textArea {
	width: 900px;
	padding: 15px 0;
}
/* navIndex */
.pageIndex {}
.pageIndex__inner { width: 900px;}
.pageIndex__title { text-align: center;}
.list__ordered--basic {}
.list__ordered--basic li {}
.list__ordered--basic li:last-child {}
.list__ordered--basic li a {}
.list__ordered--basic li a:hover { background: #fff;}
/* pageContent */
.pageContent { width: 900px;}
/* textArea */
.textArea { padding: 10px 0;}
.textArea p { font-size: 1.6rem;}
.textArea ul {}
.textArea ul li {font-size: 1.6rem;}
.textArea dl dt,
.textArea dl dd { font-size: 1.6rem;}
.textArea ol {}
.textArea ol li { font-size: 1.6rem;}
/* common style */
.fwb {}
.mt20 {}
/* Heading
---------------------------------------------------------- */
h1 { font-size: 2.2rem;}
h2 {
	font-size: 2rem;
	padding: 10px 0;
}
h3,h4,h5 { font-size: 2rem;}
/* Page Link Button
---------------------------------------------------------- */
.pageLink {
	width: 900px;
	margin: 0 auto;
}
.pageLink a {}
.pageLink a:hover { background: #eee;}
body.top .pageLink a,
body.page04 .pageLink a {}
/* Page Top
---------------------------------------------------------- */
#pagetop {}
#pagetop a {}
#pagetop a:hover {}
/* Footer
---------------------------------------------------------- */
#footer {}
.footer__inner { width: 900px;}
.footer__logo {}
.footer__nav {}
.footer__nav ul {}
.footer__nav ul li {}
.footer__nav ul li:first-child {}
.footer__nav ul li a {}
.footer__nav ul li a:hover { background: #fff;}
.footer__nav ul li a::before {}
.footer__nav ul li a::after {}
/* Copyright */
#copyright {
	width: 900px;
	margin: 0 auto;
}
		
}

/******************** ここからPC wide /********************
---------------------------------------------------------- */
@media screen and (min-width:1281px) {
/* Header
---------------------------------------------------------- */
#header {}
.header__inner {}
.header__modeStyle {}
.header__modeStyle .light {}
.header__modeStyle .dark {}
.header__menu {}
.header__menu.open {} 
/* Navigation
---------------------------------------------------------- */
#navigation { width: 480px;}
#navigation.active {}
#navigation ul {}
#navigation ul li {} /* ナビゲーションメニューリスト区切り線色 */
#navigation ul li:last-child {} /* ナビゲーションメニューリスト区切り線色 ※上のものと同じ値を記載 */
#navigation ul li a {}
#navigation ul li a:hover { background: #eee;}
/* Icon */
#navigation ul li a::before {}
#navigation ul li a::after {}
/* Breadcrumb
---------------------------------------------------------- */
#breadcrumb {
	width: calc(100% - 100px);
	background: #eee;
	padding-left: 100px;
}
#breadcrumb div {}
#breadcrumb div a {}
#breadcrumb a::before {}
#breadcrumb div a:hover {}
/* Contents
---------------------------------------------------------- */
/* main */
#main {}
/* pageHeader */
.pageHeader {}
.pageHeader__title { padding: 20px 0;}
.pageHeader__visual {
	height: 600px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.pageHeader .textArea {
	width: 900px;
	padding: 30px 0;
}
/* navIndex */
.pageIndex {}
.pageIndex__inner { width: 1000px;}
.pageIndex__title { text-align: center;}
.list__ordered--basic {}
.list__ordered--basic li {}
.list__ordered--basic li:last-child {}
.list__ordered--basic li a {}
.list__ordered--basic li a:hover { background: #fff;}
/* pageContent */
.pageContent { width: 1000px;}
/* textArea */
.textArea { padding: 15px 0;}
.textArea p { font-size: 1.6rem;}
.textArea ul {}
.textArea ul li { font-size: 1.6rem;}
.textArea dl dt,
.textArea dl dd { font-size: 1.6rem;}
.textArea ol {}
.textArea ol li { font-size: 1.6rem;}
/* common style */
.fwb {}
.mt20 {}
/* Heading
---------------------------------------------------------- */
h1 { font-size: 2.4rem;}
h2 {
	font-size: 2.2rem;
	padding: 20px 0;
}
h3,h4,h5 { font-size: 2rem;}
/* Page Link Button
---------------------------------------------------------- */
.pageLink {
	width: 1000px;
	margin: 0 auto;
}
.pageLink a {}
.pageLink a:hover { background: #eee;}
body.top .pageLink a,
body.page04 .pageLink a {}
/* Page Top
---------------------------------------------------------- */
#pagetop {}
#pagetop a {}
#pagetop a:hover {}
/* Footer
---------------------------------------------------------- */
#footer {}
.footer__inner { width: 1000px;}
.footer__logo {}
.footer__nav {}
.footer__nav ul {}
.footer__nav ul li {}
.footer__nav ul li:first-child {}
.footer__nav ul li a {}
.footer__nav ul li a:hover { background: #fff;}
.footer__nav ul li a::before {}
.footer__nav ul li a::after {}
/* Copyright */
#copyright {
	width: 1000px;
	margin: 0 auto;
}

}


