@charset "UTF-8";

/* =========================================================
■Reset of Default Style
========================================================= */
h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: 0;
    border-collapse: collapse;
    border-spacing: 0;
	font-style: normal;
	font-weight: normal;	
	font-size: 100%;
	line-height: 1.5;
	text-align: left;
}
textarea { font-size: 100%; }
img { vertical-align: bottom; }
hr  { display: none; }
html { overflow: auto; }

/* =========================================================
■body
========================================================= */
body {
	max-width: 100%;
	margin: 0 auto;
	background-color: #fff; /* 背景色 */
	color: #333; /* 文字色 */
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
a:link {
	color: #d90000;
	text-decoration: none;
}
a:visited {
	color: #d90000;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
}
.pagetop {
	position: fixed; /* 固定 */
	bottom: 14px; /* 場所を右下に移動 */
	right: 14px; /* 場所を右下に移動 */
	display: block; /* aタグをblock要素に変更 */
	background-color: rgba(0,0,0,0.5);
	font-size: 18px; /* 文字サイズ */
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 1px;
	border-radius: 20px;
	padding-top: 20px;
	box-sizing: border-box;
	z-index: 3; /* 必要であればリンク要素の重なりのベース順序指定 */
}
.pagetop:link {
	color: #fff;
	text-decoration: none;
}
.pagetop:hover {
	opacity: 0.7;
}
/* =========================================================
■header
========================================================= */
#header {
	background-color: #2f2f2f;
	display: flex;
	flex-direction: column;
}
#header #headerbox {
	width: 1080px;
	margin: 0 auto;
}
@media only screen and (max-width: 1080px) {
#header #headerbox {
	width:100%;
	margin: 0 auto;
}
}
#header h1 {
	padding: 6px 1% 1px; /* 文字周りの余白 */
	font-size: 11px;
	color: #ccc;
	font-weight: normal;	
	line-height: 1.2;
}
#header #box_head {
	display:flex;
	justify-content: space-between;
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
#header #box_head .pc {
	display: block !important;
	margin-right: auto;
}
#header #box_head .sp {
	display: none !important;
	margin: auto;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
#header #box_head .pc {
	display: none !important;
	margin: auto;
}
#header #box_head .sp {
	display: block !important;
	margin: auto;
}
}

#header .box01 {
	margin: 2px 1.5% 0;
}
/* 画像マウスオーバー時に明るく */
#header .box01 a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
#header .box02 {
	margin: 4px 1.5% 0;
	color: #fefefe;
}

#header #menu {
	width: 100%;
	margin: 0 auto;
	list-style: none;
}
#header #menu li {
	display: block;
	float: left;
	width: calc((100% / 6) - .01px);
	font-size: 15px;
	background-color: #2f2f2f;
	text-align: center;
	box-sizing: border-box;
}
#header #menu li:not(:last-child){
	border-right: solid 1px #666; /* 右線（実線 太さ 色） */
}
#header #menu li a {
	display: block;
	padding: 12px 0 10px;
	color: #fff;
	text-decoration: none;
}
#header #menu li a:hover {
	background-color: #d90000;
	transition: all 0.3s;
}

@media screen and (min-width: 768px) {
#header .sp-nav {
   display: none;
}
}

@media only screen and (max-width: 768px) {
#header #menu {
	display: none;
}
#header #box_head {
	display:flex;
	justify-content: start;
	padding-left: 2%;
	margin: 2px 0 5px;
}
#header .box01 {
	margin: 2px 0 0;
}
#header .box02 {
	margin: 4px 0 0;
	color: #fefefe;
}
/* hamburger(ハンバーガーアイコン) */
#header .hamburger {
	position: absolute;
	right: 3%;
	top: 42px;
	width: 40px;
	height: 36px;
	cursor: pointer;
	z-index: 30;
}
#header .hamburger__line {
	position: absolute;
	width: 40px;
	height: 3px;
	right: 0;
	background-color: #fff;
	transition: all 0.5s;
}
#header .hamburger__line--1 {
	top: 1px;
}
#header .hamburger__line--2 {
	top: 16px;
}
#header .hamburger__line--3 {
	top: 32px;
}
/*ハンバーガーがクリックされたら*/
#header .open .hamburger__line {
	background-color: #333;
}
#header .open .hamburger__line--1 {
	transform: rotate(-45deg);
	top: 11px;
}
#header .open .hamburger__line--2 {
	opacity: 0;
}
#header .open .hamburger__line--3 {
	transform: rotate(45deg);
	top: 11px;
}
/* sp-nav(ナビ) */
#header .sp-nav {
	position: fixed;
	right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
	top: 0;
	width: 70%; /* 出てくるスライドメニューの幅 */
	height: 100%;
	background: rgba(255, 255, 255, .9);
	transition: all 0.5s;
	z-index: 20;
	overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
#header .sp-nav ul {
	list-style-type: none;
	margin: 20px 0 0 4%;
}
#header .sp-nav li {
	color: #333;
	padding: 4px 0;
}
#header .sp-nav li a:link {
	color: #333;
}
#header .sp-nav li a:visited {
	color: #333;
	text-decoration: none;
}
#header .sp-nav li a:hover {
	color: #d90000;
	text-decoration: underline;
}
#header .sp-nav li a:active {
	text-decoration: none;
}
/*ハンバーガーがクリックされたら右からスライド*/
#header .open .sp-nav {
	right: 0;
}
/* black-bg(ハンバーガーメニュー解除用bg) */
#header .black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	transition: all 0s;
	cursor: pointer;
	z-index: 10;
}
/*ハンバーガーメニューが開いたら表示*/
#header .open .black-bg {
	opacity: 0.3;
	visibility: visible;
}
}

/* =========================================================
■wrapper
========================================================= */
.wrapper {
	max-width: 1080px;
	margin: 0 auto;
}

/* =========================================================
■content
========================================================= */
.content {
	width: 75%;
	float: right;
	padding: 0 1%;
	box-sizing: border-box;	
}
.content h2 {
	font-size: 24px;
	padding: 0px 0.5% 1px;
	border-bottom: dotted 2px #C0C0C0;
	margin: 8px 2.5% 0;
}

.content .breadcrumbs {
	font-size: 12px;
	color: #444;
	line-height: 1;
	padding: 0;
    margin: 6px 0 0 1%;
}
.content .breadcrumbs ol li {
  display: inline;
  list-style-type: none;
}
.content .breadcrumbs ol li:before {
  content: " > ";
}
.content .breadcrumbs ol li:first-child:before {
	content: "";
}

.content .box01c {
	width: 94%;
	font-size: 14px;
	line-height: 1.4;
	padding: 6px 1%;
	margin: 14px 3% 10px;
	border-bottom: dotted 1px #ccc;
	box-sizing: border-box;
}

.content .box51 {
	width: 94%;
	font-size: 14px;
	margin: 18px 3% 0;
	box-sizing: border-box;
}
.content .box52 {
	width: 92%;
	font-size: 16px;
	margin: 24px 4% 0;
	box-sizing: border-box;
}
.content .style52 {
	padding: 16px 0 0;
}
.content .contact-area a {
	width: 64%;
	margin: 80px auto 40px;
	font-size: 18px;
	color: #fff;
	font-weight: 600;
    text-decoration: none;
    display: block;
	padding: 24px 20px;
	line-height: 1.1;
    text-align: center;
    box-sizing: border-box;
    background-color: #e60000;
	border: solid 2px #e60000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.content .contact-area a:hover {
	color: #e60000;
    background-color: #fff;
}
@media screen and (max-width: 900px){
/* 900px以下 */
.content .contact-area a {
	display: none;
}
}

/* =========================================================
■sidebar
========================================================= */
.sidebar {
	float: left;
	width: 25%;
	height: auto;
	padding: 0 1%;
	box-sizing: border-box;
}
.sidebar a:link {
	color: #404960;
	text-decoration: none;
}
.sidebar a:visited {
	color: #404960;
	text-decoration: none;
}
.sidebar a:hover {
	text-decoration: underline;
}
.sidebar a:active {
	text-decoration: none;
}

.sidebar .contact-area a {
	width: 96%;
	margin: 10px auto 6px;
	font-size: 15px;
	color: #fff;
	font-weight: 600;
    text-decoration: none;
    display: block;
	padding: 30px 6px;
	line-height: 1.1;
    text-align: center;
    box-sizing: border-box;
    background-color: #e60000;
	border: solid 2px #e60000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.sidebar .contact-area a:hover {
	color: #e60000;
    background-color: #fff;
}
@media screen and (max-width: 900px){
/* 900px以下 */
.sidebar .contact-area a {
	width: 80%;
	font-size: 18px;
	margin: 40px auto;
	padding: 24px 20px;
}
}

.sidebar h3 {
	font-size: 14px;
	padding: 4px 1.5%;
	margin: 4px 1%;
	background-color: #eee;
	border-left: solid 5px #e8383d; /* 左線（実線 太さ 色） */	
}
.sidebar h4 {
	font-size: 14px;
	margin: 0;
}
.sidebar .box00a {
	margin: 12px 1% 6px;
	text-align: center;
}
/* 画像マウスオーバー時に明るく */
.sidebar .box00a a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
@media screen and (max-width: 768px){
/* 768px以下 */
.sidebar .box00a {
	display: none;
}
}

.sidebar .box00b {
	box-sizing:border-box;
	width: 98%;
	margin: 0 1%;
	padding: 6px 0 1px;
	text-align: left;
}
.sidebar ul {
	list-style-type: none;
}
.sidebar li {
	position:relative;
	margin-left: 1.5%;
	padding: 0 4px 3px 9px;
}
.sidebar li:before {
	position:absolute;
	content:'';
	top: 5px;
	left: 0;
	height:0;
	width:0;
	border-style: solid;
	border-width: 5px 0 5px 6px;
	border-color: transparent transparent transparent #d90000;
}

.sidebar #sb_box_a, #sb_box_c, #sb_box_e {
	padding: 14px 0 2px;
	margin: 0 4%;
	text-align: center;
}
/* 画像マウスオーバー時に明るく */
.sidebar #sb_box_a a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.sidebar #sb_box_a .pc {
	display: block !important;
	margin: auto;
}
.sidebar #sb_box_a .sp {
	display: none !important;
	margin: auto;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 900px) {
.sidebar #sb_box_a .pc {
	display: none !important;
	margin: auto;
}
.sidebar #sb_box_a .sp {
	display: block !important;
	margin: auto;
}
}
/* 画像マウスオーバー時に明るく */
.sidebar #sb_box_c a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.sidebar #sb_box_c .pc {
	display: block !important;
	margin: auto;
}
.sidebar #sb_box_c .sp {
	display: none !important;
	margin: auto;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 900px) {
.sidebar #sb_box_c .pc {
	display: none !important;
	margin: auto;
}
.sidebar #sb_box_c .sp {
	display: block !important;
	margin: auto;
}
}
/* 画像マウスオーバー時に明るく */
.sidebar #sb_box_e a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.sidebar #sb_box_e .pc {
	display: block !important;
	margin: auto;
}
.sidebar #sb_box_e .sp {
	display: none !important;
	margin: auto;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 900px) {
.sidebar #sb_box_e .pc {
	display: none !important;
	margin: auto;
}
.sidebar #sb_box_e .sp {
	display: block !important;
	margin: auto;
}
}

.sidebar #sb_box_b, #sb_box_d, #sb_box_f {
	padding: 14px 0;
	margin: 0 4%;
	text-align: center;
	border-bottom: dotted 1px #999; /* 下線（点線 太さ 色） */
}
/* 画像マウスオーバー時に明るく */
.sidebar #sb_box_b a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.sidebar #sb_box_b .pc {
	display: block !important;
	margin: auto;
}
.sidebar #sb_box_b .sp {
	display: none !important;
	margin: auto;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 900px) {
.sidebar #sb_box_b .pc {
	display: none !important;
	margin: auto;
}
.sidebar #sb_box_b .sp {
	display: block !important;
	margin: auto;
}
}
/* 画像マウスオーバー時に明るく */
.sidebar #sb_box_d a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.sidebar #sb_box_d .pc {
	display: block !important;
	margin: auto;
}
.sidebar #sb_box_d .sp {
	display: none !important;
	margin: auto;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 900px) {
.sidebar #sb_box_d .pc {
	display: none !important;
	margin: auto;
}
.sidebar #sb_box_d .sp {
	display: block !important;
	margin: auto;
}
}
/* 画像マウスオーバー時に明るく */
.sidebar #sb_box_f a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.sidebar #sb_box_f .pc {
	display: block !important;
	margin: auto;
}
.sidebar #sb_box_f .sp {
	display: none !important;
	margin: auto;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 900px) {
.sidebar #sb_box_f .pc {
	display: none !important;
	margin: auto;
}
.sidebar #sb_box_f .sp {
	display: block !important;
	margin: auto;
}
}

/* =========================================================
■footer
========================================================= */
#footer {
    width: 100%;
    float: left;
}
@media (max-width: 900px) {
     .wrapper, .content, .sidebar {
          float: none;
          margin: 0;
          width: auto;
}
}
#footer #footerbox {
	width: 1080px;
	margin: 0 auto;
}
@media only screen and (max-width: 1080px) {
#footer #footerbox {
	width:100%;
	margin: 0 auto;
}
}
#footer .foot-box01 {
	font-size: 14px;
	margin: 20px 1% 2px;
	text-align: center;
}
#footer .foot-box02 {
	padding: 7px 0 2px;
	font-size: 10px;
	line-height: 1;
	text-align: center;
	border-top: dotted 1px #999; /* 上線（点線 太さ 色） */
}
#footer .foot-box03 {
	padding: 8px 0;
	font-size: 12px;
	line-height: 1;
	text-align: center;
}
#footer .foot-box04 {
	margin: 0 1% 10px;
	font-size: 12px;
	text-align: center;
}