@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: #666; /*文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
a:link {
	color: #111F4D;
	text-decoration: none;
}
a:visited {
	color: #111F4D;
	text-decoration: none;
}
a:hover {
	color: #e43a19;
	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: 28px; /* 文字サイズ */
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 1px;
	border-radius: 2px;
	padding-top: 26px;
	box-sizing: border-box;
	z-index: 3; /* 必要であればリンク要素の重なりのベース順序指定 */
}
.pagetop:link {
	color: #fff;
	text-decoration: none;
}
.pagetop:hover {
	opacity: 0.7;
}
/* =========================================================
■nav
========================================================= */
#navi {
	background-color: #fff;
	display: flex;
	flex-direction: column;
}
#navi #headerbox {
	width: 1080px;
	margin: 0 auto;
}
@media only screen and (max-width: 1080px) {
#navi #headerbox {
	width:100%;
	margin: 0 auto;
}
}
#navi h1 {
	padding: 6px 1% 1px; /* 文字周りの余白 */
	font-size: 11px;
	color: #666;
	font-weight: normal;	
	line-height: 1.2;
}
#navi #box_head {
	display:flex;
	justify-content: space-between;
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
#navi #box_head .pc {
	display: block !important;
	margin-right: auto;
}
#navi #box_head .sp {
	display: none !important;
	margin: auto;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
#navi #box_head .pc {
	display: none !important;
	margin: auto;
}
#navi #box_head .sp {
	display: block !important;
	margin: auto;
}
}

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

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

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

@media only screen and (max-width: 768px) {
#navi #menu {
	display: none;
}
#navi #box_head {
	display:flex;
	justify-content: start;
	padding-left: 2%;
	margin: 2px 0 5px;
}
#navi .box01 {
	margin: 2px 0 0;
}
#navi .box02 {
	margin: 20px 0 0;
}
/* hamburger(ハンバーガーアイコン) */
#navi .hamburger {
	position: absolute;
	right: 3%;
	top: 42px;
	width: 40px;
	height: 36px;
	cursor: pointer;
	z-index: 30;
}
#navi .hamburger__line {
	position: absolute;
	width: 40px;
	height: 3px;
	right: 0;
	background-color: #111F4D;
	transition: all 0.5s;
}
#navi .hamburger__line--1 {
	top: 1px;
}
#navi .hamburger__line--2 {
	top: 16px;
}
#navi .hamburger__line--3 {
	top: 32px;
}
/*ハンバーガーがクリックされたら*/
#navi .open .hamburger__line {
	background-color: #111F4D;
}
#navi .open .hamburger__line--1 {
	transform: rotate(-45deg);
	top: 11px;
}
#navi .open .hamburger__line--2 {
	opacity: 0;
}
#navi .open .hamburger__line--3 {
	transform: rotate(45deg);
	top: 11px;
}
/* sp-nav(ナビ) */
#navi .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; /* メニューが多くなったらスクロールできるように */
}
#navi .sp-nav ul {
	list-style-type: none;
	margin: 20px 0 0 4%;
}
#navi .sp-nav li {
	color: #111F4D;
	padding: 4px 0;
}
#navi .sp-nav li a:link {
	color: #111F4D;
}
#navi .sp-nav li a:visited {
	color: #111F4D;
	text-decoration: none;
}
#navi .sp-nav li a:hover {
	color: #e43a19;
	text-decoration: underline;
}
#navi .sp-nav li a:active {
	text-decoration: none;
}
/*ハンバーガーがクリックされたら右からスライド*/
#navi .open .sp-nav {
	right: 0;
}
/* black-bg(ハンバーガーメニュー解除用bg) */
#navi .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;
}
/*ハンバーガーメニューが開いたら表示*/
#navi .open .black-bg {
	opacity: 0.3;
	visibility: visible;
}
}

/* =========================================================
■header
========================================================= */
#header {
	background-color: #f9f9f9;
	display: flex;
	flex-direction: column;
}
#header #headerbox {
	width: 960px;
	margin: 0 auto;
}
@media only screen and (max-width: 960px) {
#header #headerbox {
	width:100%;
	margin: 0 auto;
}
}
#header h1 {
	padding: 6px 4px 4px;
	font-size: 11px; /* 文字サイズ */
	color: #ddd;
	font-weight: normal;	
	line-height: 1.2;
}
#header #box_image {
	width: 100%;
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
#header #box_image .pc {
	display: block !important;
	margin: auto;
}
#header #box_image .sp {
	display: none !important;
	margin: auto;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
#header #box_image .pc {
	display: none !important;
	margin: auto;
}
#header #box_image .sp {
	display: block !important;
	margin: auto;
}
}

#header #main-gallery {
  margin: 10px 2% 40px;
  background:#eee;
}
 
#header #main-gallery .gallery-cell {
  width: 70%;
  height: 300px;
  margin-right: 10px;
  background: #8C8;
  counter-increment: gallery-cell;
}
 
/* セルナンバー */
#header #main-gallery .gallery-cell:before {
  display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 300px;
  font-size: 80px;
  color: white;
}

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

/* =========================================================
■content
========================================================= */
.content {
	width: 100%;
	float: left;
}

.content .topics{
	width: 96%;
	font-size: 14px; /* 文字サイズ */
	color: #fff;
	background-color: #111F4D;
    text-align: center;
	clear: left;
	margin: 30px 2% 10px;
	padding: 4px 1%;
	display: block;
	box-sizing: border-box;
}

.content .style2 {
	color: #fff; /* 文字色 */
}
.content dl.info {
    width: 96%;
    margin: 6px 2%;
    padding: 6px 0 0;
    line-height: 1.8;
}
.content dl.info dt {
    width: 10%;
    float: left;
    margin: 0;
    padding: 0 0 0 5px;
	font-size: 14px; /* 文字サイズ */
	line-height: 1.4;
}
.content dl.info dd {
    margin: 0 0 10px;
    padding: 0 5px 10px 8em;
    border-bottom: 1px dotted #ddd;
	font-size: 14px; /* 文字サイズ */
	line-height: 1.4;
}
.content .style3 {
	font-size: 13px;
    text-align: center;
}

.content .tax_box {
    width: 100%;
	font-size: 14px; /* 文字サイズ */
	text-align: center;
    margin: 20px 0 30px;
}
.content .tax_box {
    width: 100%;
	font-size: 14px; /* 文字サイズ */
	text-align: center;
    margin: 20px 0 30px;
}

.content .style4 {
    display: block;
	line-height: 1.4;
}

/* フレックスボックスの基本設定 等間隔（両端揃え）折返しあり */
[class^="flex-col"] {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 18px 2% 24px;
}

/* コンテンツ下のマージン */
.content .flex-child { margin-bottom: 16px;
}

/* 画像マウスオーバー時に明るく */
.content .flex-child a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

/* 各カラム毎のコンテンツと疑似要素の横幅 */
.content .flex-col2 .flex-child {
	width: calc( (100% - 20px) / 2 );
}

/* レスポンシブ対応 */

/* 481px以下で全て1列 */
@media screen and (max-width: 481px) {
	.content .flex-col2 .flex-child {
	width: 100%;
	border-bottom: dashed 1px #ddd;
}
}

.content .img_center {
	text-align: center;
	margin: 1px 0 4px;
}

.content h2 {
	font-size: 15px; /* 文字サイズ */
	border-bottom: dashed 1px #ddd;
	padding: 1px 0.5% 0; /* 文字の上下・左右の余白 */
}
.content .title2 {
	font-size: 14px; /* 文字サイズ */
	padding: 3px 1% 0; /* 文字の上下・左右の余白 */
}

.content .sample1 {
	display: inline-block;
	float: left;
	background-color: #fefefe;
	width: calc((92% / 2) - .01px);
	font-size: 14px; /* 文字サイズ */
	margin: 10px 2%;
    text-align: center;
}
@media only screen and (max-width: 768px) {
.content .sample1 {
	width: calc((96% / 1) - .01px);
	border-bottom: 1px solid #999;
}
}
.content .sample2 {
	display: inline-block;
	float: left;
	background-color: #fefefe;
	width: calc((92% / 2) - .01px);
	font-size: 14px; /* 文字サイズ */
	margin: 10px 2% 30px;
    text-align: center;
}
@media only screen and (max-width: 768px) {
.content .sample2 {
	width: calc((96% / 1) - .01px);
	border-bottom: 1px solid #999;
}
}

.content #box_items{
	width: 100%;
}
.content #box_items ul {
  margin: 0 2%;
}
.content #box_items li{
	display: block;
	float: left;
	width: calc((100% / 2) - .01px);
	background-color: #999;
	font-size: 14px; /* 文字サイズ */
	padding: 12px 0 10px;
	text-decoration: none;
}
@media only screen and (max-width: 768px) {
.content #box_items li{
	width: calc((100% / 1) - .01px);
	border-bottom: 1px solid #666;
}
}

.content .items_text{
	padding: 0 4px;
}
.content .items_img{
    width: 100%;
    text-align: center;
    float: left;
	padding: 10px 0;
}
.content .center{
    text-align: center;
}

/* =========================================================
■footer
========================================================= */
#footer {
    width: 100%;
    float: left;
}
@media (max-width: 900px) {
     .wrapper, .content, .sidebar {
          float: none;
          margin: 0;
          width: auto;
}
}
#footer #footerbox {
	width: 960px;
	margin: 0 auto;
}
@media only screen and (max-width: 960px) {
#footer #footerbox {
	width:100%;
	margin: 0 auto;
}
}
#footer .foot-box01 {
	font-size: 13px;
	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;
}