@charset "UTF-8";

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　初期設定　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
body {
background:#FFF;
}
#wrapper {
overflow:hidden;
}
footer {
color:#FFF;
text-align:center;
font-size:0.8em;
}

/* other
--------------------------- */
@media screen and (min-width: 767px) {
	.br-sp { display:none; }
}

@media screen and (max-width: 1024px) {
	.br-sp2 { display:none; }
}

a:focus, *:focus, a:hover {
	outline:none;

}
a {
text-decoration:underline;
color:#333;
}
a:hover {
color:#330000;
}
.bn_hover a:hover {
	opacity:0.6;
}

.formInput05 { width: 5em; max-width: 100%; box-sizing: border-box; display: inline-block; margin:0px 3px;}
.formInput10 { width: 10em; max-width: 100%; box-sizing: border-box; display: inline-block; margin:0px 3px;}
.formInput15 { width: 15em; max-width: 100%; box-sizing: border-box; display: inline-block; margin:0px 3px;}
.formInput20 { width: 20em; max-width: 100%; box-sizing: border-box; display: inline-block; margin:0px 3px;}
.formInput25 { width: 25em; max-width: 100%; box-sizing: border-box; display: inline-block; margin:0px 3px;}
.formInput30 { width: 30em; max-width: 100%; box-sizing: border-box; display: inline-block; margin:0px 3px;}
.formInput40 { width: 40em; max-width: 100%; box-sizing: border-box; display: inline-block; margin:0px 3px;}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　common　＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.maincontainer {
max-width:1200px !important;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.maincontainer2 {
max-width:1000px !important;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.rl15-container {
  max-width: 900px;
  position: relative;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.rl80-container {
  max-width: 800px;
  margin: 0 auto;
}
.maincontainer_wide {
max-width:1500px !important;
  margin: 0 auto;
  padding-left: 5px;
  padding-right: 5px;
}

.kanri-container {
  max-width: 1100px;
  position: relative;
  margin: 0 auto;
  padding: 5px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  margin-right: 0;
  margin-left: 0;
}

p.lead {
margin:0 0 0.5em 1em;
padding:3em 0 1.5em 0;
font-size:1em;
}
p.lead2 {
margin:1.2em 0.9em 1.6em 1.2em;
font-size:1em;
color:#FFF;
}
p.lead3 {
margin:0 0 0.5em 1em;
padding:2em 0 1.5em 0;
}
p.lead4 {
margin:.6em;
font-size:1em;
line-height:1.5em;
}
p.comment {
	margin:0;
	font-size:1em;
	line-height:1.7em;
}
p.comment2 {
	margin:.5em 1em;
	font-size:1em;
	line-height:1.7em;
}
p.comment3 {
	margin:0 .7em;
	font-size:1em;
	line-height:1.7em;
}
span.red {
	color: #c00;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　menu　＝＝＝＝＝＝＝＝＝＝＝＝＝＝ 
https://yukipan-world.com/web-tips/618/ */
.header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
z-index:9999;
background:#000;
}
.header_inner {
  position: relative;
  padding: 15px;
}
.logo{
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 15px;
}
@media screen and (max-width: 767px) {
/* header固定のため余白をつける。メニューのCSSには関係ない */
.main{  
  margin-top: 80px;
}
}



@media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 80px;
    background-color: #000;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 15px;/*右からの位置*/
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #FFF;
  }
  .nav_item a:hover {
    color: #00ff00;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 28px;
    height: 2px;
    background-color: #FFF;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 24px;
  }
  .hamburger_border_bottom {
    top: 34px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;/*★★★★★★★★★★★★★★★★★★★*/
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 24px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 24px;
  }
}/* sp */

/*@media only screen and (min-width: 769px) {
  .header_inner{
    max-width: 980px;
    width: 100%;
    padding: 15px 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .logo{
    padding: 12px 30px
  }
  .nav_list{
    text-align: right;
  }
  .nav_list li{
    display: inline-block;
    text-align: right;
    padding-left: 20px;
  }
  .nav_list li a{
    color: #fff;
    font-weight: 600;
  }
}*/

@media only screen and (min-width: 769px) {
.header {
display:none;
}
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ お知らせ ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.infoList {
	margin-bottom: 10px;
color:#FFF;
}
.infoList ul {
list-style-type: none
}
 .infoList ul li a p.txt {
	float: none;
	width: auto;
display:inline;
}
.infoList ul li {
	border-bottom: 1px solid #FFF;
}
.infoList ul li a {
	color: #FFF;
text-decoration:underline;
	display: block;
	padding: 5px 15px;
	overflow: hidden;
	transition: 0.2s;
}
.infoList ul li a:hover {
	color: #333;
}
.infoList ul li a p.data {
	float: left;
	width: 35%;
	padding-top:7px;
}
.infoList ul li a p.data .tag {
	background-color: #333;
	color: #FFF;
	display: inline-block;
	font-size: 14px;
	margin-right: 10px;
	margin-top: -2px;
	padding: 1px 15px;
	min-width: 90px;
	text-align: center;
}
.infoList ul li a p.txt {
	padding-top:7px;
	float: left;
	width: 65%;
}
@media only screen and (max-width: 768px) {
.infoList {
	margin-bottom: 0;
}
.infoList ul li a {
	padding: 10px;
	text-decoration: none;
}
.infoList ul li a p.data {
	font-size: 12px;
	float: none;
	width: auto;
}
.infoList ul li a p.data .tag {
	font-size: 10px;
	margin-left: 10px;
	margin-top: 0;
	line-height: 1;
	padding: 4px 12px;
	min-width: 70px;
}
.infoList ul li a p.txt {
	float: left;
	width: 100%;
}
}

/*===============================- 見出し ===============================================*/




/*===============================- ここから ===============================================
https://simplelifenavigation.com/entry/bottom-navigationmenu
*/
.mini-text{font-size:9px;}
ul.bottom-menu {
    position: fixed ;
    left:0;
    bottom:0;
    width: 100%;
    height:53px;/*アイコン枠の高さ*/
    margin:0;
    padding:0;
    background-color:white;/*背景色*/
    border-top:2px solid gray;/*バーの上線*/
    border-bottom:2px solid gray;/*バーの下線*/
    z-index:30;
    padding-bottom:env(safe-area-inset-bottom);
}

ul.bottom-menu li {
    float:left;
    width:25%;/*メニューアイコンを5つ並べる*/
    background-color:white;/*背景色*/
    list-style-type:none;
    text-align:center;
    font-size:22px;/*アイコンのサイズ*/}

.bottom-menu li a {
    display: block;
    color:dimgray;/*アイコンと文字の色*/
    padding-top:10px;
    padding-bottom:5px;
    line-height:10px;
    text-decoration:none;}

.bottom-menu li a:hover {
    color:lightgray;/*マウスオーバー時の色*/}

/* === 展開メニュー === */
ul.menu-second-level {
    visibility: hidden;
    opacity: 0;
    z-index:1;}

ul.menu-second-level li a{
    border-top:1px dotted gray;/*展開の枠点線*/
        font-size:12px;/*展開メニューの文字サイズ*/
        line-height:24px;/*文字の縦幅*/}

.menu-second-level li a:hover {
    height:100%;
    transition: 1.0s; /*動きを見せる*/
    background: lavender;/*マウスオーバーの色*/}

li.menu-width-max ul.menu-second-level {
    position: absolute ;
    bottom: 45px;/*メニュー高さ*/
    transition: 0.5s; /*動きを見せる*/
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding:0;}

li.menu-width-max:hover ul.menu-second-level {
    bottom: 45px;/*メニュー高さ*/
    visibility: visible;
    opacity: 1;}

li.menu-width-max ul.menu-second-level li {
    float: left;
    width: 50%;/*2階層目に2つメニューを並べる*/
    border: none;}

/* ボトムメニューを表示しない指示 */
@media(orientation:landscape)  , /*スマホで横画面の時*/
@media(min-width: 768px) { /*PC表示の時*/
    .bottom-menu{display:none; }
}

/*スマホの時だけ ボトムメニュー分フッタを底上げ*/
@media(max-width: 767px){ 
footer{margin-bottom:45px;}
}

section + section {
margin-top:2rem;
}
@media(max-width: 767px){ 
.footer_BBB_menu {
display:none;
}
}

/*ゴールド
https://qiita.com/7note/items/6295807a451b6dbf2404*/