@charset "UTF-8";

/*------------------------------------------------
　　header
------------------------------------------------*/
#header {
  box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
  z-index: 99;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
    padding: 10px 0;
    height: 60px;
}
.h_logo {position:absolute; z-index:100; top:10px; left:5px;}
.h_logo img{height:38px; width:auto; float:left;}
@media screen and (min-width:390px) {
.h_logo {top:8px;}
.h_logo img{height:45px; width:auto; float:left;}
}
@media print, screen and (min-width:540px) {
.h_logo {top:5px;}
.h_logo img{height:50px; width:auto; float:left;}
}

.h_logob {position:absolute; z-index:100; top:14px; left:5px;}
.h_logob img{height:32px; width:auto; float:left;}
@media screen and (min-width:390px) {
.h_logob {top:10px;}
.h_logob img{height:38px; width:auto; float:left;}
}
@media print, screen and (min-width:540px) {
.h_logob {top:5px;}
.h_logob img{height:50px; width:auto; float:left;}
}

@media screen and (max-width:1059.9px) {
#nav-drawer {position: relative;}

/*チェックボックス等は非表示に*/
.nav-unshown {display:none;}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 40px;
    vertical-align: middle;
    margin-right: 10px;
    margin-top: 10px;
    float: right;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  right: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
.hamburger-top {
  position: relative;
  background-color:var(--color-c);
  text-align: center;
  padding: 5px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 5px;
  color: #fff;
}
.humburger-top .cancel{
    display: inline-block;
    padding: 10px 3px;
}
.cancel {
  display: inline-block;
  position: absolute;
  cursor: pointer;
  top: 8px;
  right: 30px;
  width: 5px;
  height: 30px;
  background: #fff;
  transform: rotate(45deg);
  z-index: 99;
}
.cancel:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 31px;
  height: 5px;
  margin-top: -3px;
  background: #fff;
}
nav#g-menu {
	width:100%;
	background:#fff;
	box-shadow:0 1px 2px #d0d8dc;
	zoom:1;
}
nav#g-menu:after {
	content:'';
	display:block;
	clear:both;
}
	nav#g-menu ul.gmenu {
		margin:0;
		padding:0;
		}

	nav#g-menu .inner > ul.gmenu {
		z-index:2;
		overflow:auto;
		position:fixed;
		top:60px;
		right:0;
		width:100%;
		height:88%;
		height:-webkit-calc(100% - 53px);
		height:calc(100% - 53px);
	}
	nav#g-menu li {
		position:relative;
		width:100%;
		float:none;
		margin:0;
		text-align:left;
		list-style:none;
		border-bottom:1px solid #f3f3f2;
		background:var(--color-a);
	}
	nav#g-menu li:first-child {
		border-top:0;
	}
	nav#g-menu li:last-child {
		border-bottom:0;
	}
	nav#g-menu li a {
		display:block;
		padding:10px 20px;
		color:var(--color-a);
		text-decoration:none;
		background:#f3f3f2;
	}
	nav#g-menu li a:hover {
		color:var(--color-b);
		background:#efede9;
	}
nav#g-menu li a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0a4";
  font-weight: 900;
  color:var(--color-c);
  margin-right: 10px;
}


	nav#g-menu li li a {
		box-sizing:border-box;
		width:100%;
		padding:10px 10px 10px 30px;
		text-align:left;
	}

	nav#g-menu li li li a {
		padding:10px 30px 10px 70px;
	}

nav#g-menu li li a:before{
  font-family: "Font Awesome 6 Free";
  content: "\f0da";
  font-weight: 900;
  color:var(--color-a);
  margin-right: 10px;
  margin-left: 1em;
}
}
#nav-pc {display:none;}


/*================================================
 *  TB PC
 ================================================*/
@media print, screen and (min-width:1060px) {
#nav-pc{display:block;}
/*#nav-pc #g-menu ul{display:inline-flex;}*/
#nav-drawer {display:none;}
  nav#g-menu ul {
    position: relative;
    display: flex;
    float: right;
    margin-right: 1.5em;
    height: 40px;
  }
  nav#g-menu li {
    position: relative;
    margin-right: 1.5em;
  }
  nav#g-menu li:last-child {
    margin-right: 0;
  }
  nav#g-menu li i {
    font-size: 16px;
    margin-left: 5px;
  }
  nav#g-menu li a {
    position: relative;
    display: block;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    letter-spacing: 0.2em;
    font-weight: bold;
  }
  nav#g-menu li.menu-item-has-children > a:after {line-height:1; font-family: "Font Awesome 6 Free"; content: "\f107"; font-weight:600; list-style-type:none; padding-left: 5px; font-size: 14px;}
  nav#g-menu .sub-menu {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    display: block;
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -100px;
    width: 258px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  }
  nav#g-menu .sub-menu a {
    display: block;
    border-bottom: none;
    padding: 20px;
    line-height: 1.2em;
  }
  nav#g-menu .sub-menu a:hover:after {
    content: none;
  }
  nav#g-menu .sub-menu li {
    display: block;
    font-size: 16px;
    padding: 0;
    margin: 0;
    background: #f3f3f2;
  }
  nav#g-menu .sub-menu li:last-child {
    border-bottom: none;
  }
  nav#g-menu ul > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  nav#g-menu .current-menu-item a, nav#g-menu .current-menu-parent a {
    color: var(--color-c);
  }
  nav#g-menu ul > li:hover a {
    color: var(--color-b);
  }
  nav#g-menu li:hover ul.sub-menu {
    top: 40px;
    visibility: visible;
    opacity: 1;
    z-index: 9999;
  }
  nav#g-menu li ul li:after {
    content: none;
  }
 nav#g-menu li:hover ul.sub-menu a {
    color: var(--color-c);
  }
  nav#g-menu .sub-menu li a:hover {
    background: #efecec;
  }


/* wide100%
	nav#g-menu {
		background:var(--color-a);
		border-bottom:5px solid var(--color-a);
		box-shadow:0 1px 3px #999;
		z-index:3;
	}
	nav#g-menu ul {
		margin:0;
		padding:0;
	}
	nav#g-menu ul li {
		position:relative;
		margin:0;
		padding:0;
		list-style:none;
	}
	nav#g-menu ul li a {
		display:block;
		margin:0;
		padding:16px 0;
		background:var(--color-a);
		color:#fff;
		font-size:14px;
		font-weight:bold;
		line-height:1;
		text-decoration:none;
	}
	nav#g-menu ul li:hover > a {
		color:#fff;
		background:var(--color-b);
	}
	nav#g-menu ul.gmenu > li {
		position:relative;
		width:17%;
		float:left;
		margin:0;
		padding:0;
		text-align:center;
		list-style:none;
	}
	nav#g-menu ul.gmenu > li:first-child {
		width:15%;
	}
	nav#g-menu ul.gmenu > li.menu-item-has-children a {
		padding-right:20px;
	}
	nav#g-menu ul.gmenu > li.menu-item-has-children > a:after {
		position:absolute;
		content:"";
		top:20px;
		width:0;
		height:0;
		margin-left:10px;
		border:5px solid transparent;
		border-top-color:#fff;
	}
	nav#g-menu ul li ul {
		position:absolute;
		z-index:3;
		top:100%;
		left:0;
		width:100%;
		margin:0;
		padding:0;
	}
	nav#g-menu ul li ul li {
		overflow:hidden;
		width:150%;
		height:0;
		color:#fff;
		transition:.2s;
	}
	nav#g-menu ul li ul li a {
		padding:13px 15px;
		text-align:left;
		background:var(--color-c);
		font-weight:normal;
	}
	nav#g-menu ul li:hover > ul > li {
		overflow:visible;
		height:40px;
		border-bottom:1px solid #8c0e0e;
	}
	nav#g-menu ul li:hover ul li:last-child {
		border-bottom:none;
	}
	nav#g-menu ul.gmenu > li:last-child > ul {
		left:-50%;
	}
	nav#g-menu ul li ul li ul:before {
		position:absolute;
		content:"";
		top:13px;
		left:-20px;
		width:0;
		height:0;
		border:5px solid transparent;
		border-left-color:#fff;
	}
	nav#g-menu ul.gmenu > li:last-child ul li ul:before {
		position:absolute;
		content:"";
		top:13px;
		left:200%;
		margin-left:-20px;
		border:5px solid transparent;
		border-right-color:#fff;
	}
	nav#g-menu ul li ul li ul {
		top:0;
		left:100%;
	}
	nav#g-menu ul li ul li ul li {
		width:100%;
	}
	nav#g-menu ul li ul li:hover > ul > li {
		border-bottom:1px solid #6d0c0c;
	}
	nav#g-menu ul.gmenu > li:last-child > ul li ul {
		left:-100%;
	}
	nav#g-menu ul li ul li ul li a {
		background:var(--color-a);
	}
	nav#g-menu ul li ul li ul li a:hover {
		background:var(--color-b);
	}
*/
}


/*------------------------------------------------
　　top
------------------------------------------------*/
.mainvisual{margin-top:60px !important;}
.ov{overflow: hidden;}
@media only screen and (max-width: 414px)
{
.topboxl,.topboxr{width:100%; margin:0; padding:0; display:block; overflow:hidden;}
.topboxr1{width:100%; margin:0; padding:0; display:block; overflow:hidden;}
.topboxr2{width:50%; float:left; margin:0; padding:0; display:block; overflow:hidden;}
.topimgtb{display:none;}
.topimgpc{display:none;}
}
@media only screen and (max-width: 767.9px) and (min-width: 414.1px)
{
.topboxl,.topboxr{width:100%; margin:0; padding:0; display:block; overflow:hidden;}
.topboxr1{width:100%; margin:0; padding:0; display:block; overflow:hidden;}
.topboxr2{width:50%; float:left; margin:0; padding:0; display:block; overflow:hidden;}
.topimgmb{display:none;}
.topimgpc{display:none;}
}
@media only screen and (min-width: 768px)
{
.topboxl{width:66.666%; float:left; margin:0 auto; padding:0; display:block; overflow:hidden;}
.topboxr{width:33.333%; float:right; margin:0 auto; padding:0; display:block; overflow:hidden;}
.topboxr1{width:100%; margin:0; padding:0; display:block; overflow:hidden;}
.topboxr2{width:100%; margin:0; padding:0; display:block; overflow:hidden;}
.topimgmb{display:none;}
.topimgtb{display:none;}
}


/*------------------------------------------------
　　breadcrumb
------------------------------------------------*/
.breadcrumb {margin:1em auto 1em 0.8em;}
.breadcrumb ol {
    font-size:0.9em;
    margin: 0;
    padding: 0;
}
.breadcrumb ol li {
    display: inline;
    list-style: none;
    color:var(--color-a);
    font-weight: bold;
    margin-left: 0;
}
/*
.breadcrumb ol li:first-child:before {
    content: none;
}
.breadcrumb ol li:before {
    content: '>';
    margin: 0 5px 0 0;
    color: #777;
}
*/
.breadcrumb ol li > a{
    color:var(--color-a);
    margin-right: 5px;
    text-decoration: none;  
}
.breadcrumb ol li a:hover {
    text-decoration: underline;
    color: var(--color-b);
}
@media print, screen and (max-width: 500px) {
    .breadcrumb ol li span.e-title{
        display: block;
    }   
}


/*================================================================================================
 *  一般・共通設定
 ================================================================================================*/
p {padding:0 0 1em 0;}
#catdes p{margin:0;}
a {
	color:var(--color-a);
	text-decoration:none;
}
a:hover {
	color:var(--color-b);
	text-decoration:underline rgba(160 133 73 / 0.4);
}

img {
 vertical-align:top;
 max-width: 100%;
}
a:hover img{opacity:0.8;transform: scale(1.02 , 1.02); transition-duration: 0.3s;}
a img{transition:0.6s;}
img.img100, .img100 img:first-child {width:100%; height:auto; margin:0;}
img.img90, .img90 img:first-child {width:90%; height:auto; margin:0 auto 2em;}
.wp-caption-text{text-align:center; color:#333333; margin-bottom:1em;}
.recentcomments{color:var(--color-e);}
img.wp-smiley, img.emoji {float:none;}

.alignnone{display: block !important; margin: 0 !important;}
img[class*="alignnone"]{max-width:100%; height:auto;}

.aligncenter{display: block !important; margin: 0 auto 1.5em !important; height: auto;}
img[class*="aligncenter"]{width:90%; height:auto;}

.alignright { float: unset; margin:0 auto 1.5em !important; display: block;}
.alignleft { float: unset; margin:0 auto 1.5em !important; display: block;}
img[class*="alignright"], img[class*="alignleft"]{width:90%; max-width:320px; height:auto;}
.wp-caption.alignright, .wp-caption.alignleft{width:90%; height:auto;}

@media print, screen and (min-width: 768px)
{
.alignright { float:right !important; margin:0 0 1em 1em !important;}
.alignleft { float:left !important; margin:0 1em 1em 0 !important;}
img[class*="alignright"], img[class*="alignleft"], .wp-caption.alignright, .wp-caption.alignleft{width:48%; max-width:unset; height:auto;}
img[class*="aligncenter"]{width:50%;}
}

img[class*="alignright"], img[class*="alignleft"], .wp-caption.alignright, .wp-caption.alignleft, img[class*="aligncenter"]{
  border-radius:0.5em;
}
.imgsh{box-shadow:0 0.2em 0.6em -0.2em rgba(0, 0, 0, 0.8);}

.cf {zoom: 1;}
.cf:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
b, strong, .bold, em {font-weight:bold;}
small{font-size:0.8em;}
pre {margin:1em 0; padding:1em;}
blockquote {
	margin-bottom:1em;
	padding:1em 1em 0.2em;
	border:1px dotted #ddd;
	border-left:5px solid #ddd;
        background: rgb(221 221 221 / 0.2);
}
abbr[title] {border-bottom:none; text-decoration:none;}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 2.5em 0 2.5em;
    padding: 0;
    overflow: hidden;
    clear: both;
}
hr.hr0 {
    display: block;
    height: 1px;
    border: 0;
    border-top: 0px solid #cccccc;
    margin: 0;
    padding: 0;
}
dl {margin:0 0 1em 0;}
dt {margin-bottom:0.5em; border-bottom:1px dotted #ddd;}
dt:before {content:"\0025a0";}
dd {margin-bottom:1em;}


/*================================================
 *  h1 - h6  widget-title 
 ================================================*/
/*------body 320px - 16px ---- 360px - 18px  ---- h 414 20.7 --*/
@media only screen and (max-width: 414px)
{
h1:not(.noh), .m1, h2:not(.noh), .m2, h5:not(.noh), .m5, h5:not(.noh) a, .m5 a, h6:not(.noh), .m6, h6:not(.noh) a, .m6 a{font-size:1em;}
h3:not(.noh), .m3, h4:not(.noh), .m4{font-size:1em;}
}

@media only screen and (min-width: 414.1px) and (max-width: 767.9px)
{
h1:not(.noh), .m1, h2:not(.noh), .m2, h5:not(.noh), .m5, h5:not(.noh) a, .m5 a, h6:not(.noh), .m6, h6:not(.noh) a, .m6 a{font-size:1.3em;}
h3:not(.noh), .m3, h4:not(.noh), .m4{font-size:1.1em;}
}

@media print, screen and (min-width: 768px)
{
h1:not(.noh), .m1, h2:not(.noh), .m2, h5:not(.noh), .m5, h5:not(.noh) a, .m5 a, h6:not(.noh), .m6, h6:not(.noh) a, .m6 a{font-size:1.5em;}
h3:not(.noh), .m3, h4:not(.noh), .m4{font-size:1.2em;}
}

h1:not(.noh), .m1{
    color: #ffff;
    background: var(--color-d);
    background: radial-gradient(circle, var(--color-d) 0%, var(--color-e) 100%);
    padding: 0.5em 0.5em;
    text-align: center;
    display: block;
    clear: both;
    margin: 5em 0em 1em;
}
h2:not(.noh), .m2{
    color: #ffff;
    background: var(--color-d);
    padding: 0.5em 0.5em;
    text-align: center;
    display: block;
    clear: both;
    margin: 5em 0em 1em;
}
h1:not(.noh) a, .m1 a, h2:not(.noh) a, .m2 a{color:#fff;}
h3:not(.noh), .m3, h4:not(.noh), .m4{
    display: block;
    line-height: 1.4;
    font-weight:bolder;
}
h3:not(.noh), .m3, h4:not(.noh), .m4{
    padding: 0.2em 0.25em 0.2em 0em;
    margin-top:3em;
}
h3:not(.noh) a, .m3 a, h4:not(.noh) a, .m4 a{
    padding:0;
    margin:0;
}
.bin h3, .bin h3 a{padding: 0.5em 0.25em 0.5em 0.25em; margin-top:0em;}

h3:not(.noh), .m3, h3:not(.noh) a, .m3 a{color:var(--color-d); text-decoration:none;}
h3:not(.noh) a:hover, .m3 a:hover{color:var(--color-e); text-decoration:none;}
h4:not(.noh), .m4, h4:not(.noh) a, .m4 a{color:var(--color-e); text-decoration:none;}
h4:not(.noh) a:hover, .m4 a:hover{color:var(--color-d); text-decoration:none;}
.widget-title{
    font-size:16px;
    background:var(--color-f);
    margin:0 0;
    padding:0.6em 0.5em;
    color:#fff;
    text-align:center;
    display: block;
    clear: both;
    font-family: monospace;
    font-weight: bolder;
    text-decoration:none;
}

h5:not(.noh), .m5 {
  position: relative;
  border-top: solid 2px var(--color-f);
  border-bottom: solid 2px var(--color-f);
  background: #f4f4f4;
  line-height: 2;
  padding: 0.4em 0.5em;
  margin: 5em 0 0.5em;
  color: var(--color-f);
  font-weight: bold;
}
h5:not(.noh) a, .m5 a{color: var(--color-f);}
h5:not(.noh):after, .m5:after {
  position: absolute;
  font-family: "Font Awesome 6 Free",'Quicksand','Avenir','Arial',sans-serif;
  content: '\f164  POINT';
  background: var(--color-f);
  color: #fff;
  left: 0px;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
  padding: 0.3em 0.5em 0.2em;
  font-size: 1em;
  line-height: 1.4;
  letter-spacing: 0.4em;
}

h6:not(.noh), .m6 {
  position: relative;
  border-top: solid 2px var(--color-c);
  border-bottom: solid 2px var(--color-c);
  background: #f4f4f4;
  line-height: 2;
  padding: 0.4em 0.5em;
  margin: 5em 0 0.5em;
  color: var(--color-c);
  font-weight: bold;
}
h6:not(.noh) a, .m6 a{color: var(--color-c);}
h6:not(.noh):after, .m6:after {
  position: absolute;
  font-family: "Font Awesome 6 Free",'Quicksand','Avenir','Arial',sans-serif;
  content: '\f00c  Check';
  background: var(--color-c);
  color: #fff;
  left: 0px;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
  padding: 0.3em 0.5em 0.2em;
  font-size: 1em;
  line-height: 1.4;
  letter-spacing: 0.4em;
  font-weight: 600;
}

h1 + h2, h1 + h3, h1 + h4, h1 + h5, h1 + h6, h2 + h3, h2 + h4, h2 + h5, h2 + h6,
h3 + h2, h3 + h4, h3 + h5, h3 + h6, h4 + h2, h4 + h3, h4 + h5, h4 + h6,
h5 + h6, h5 + h2, h5 + h3, h5 + h4, h6 + h2, h6 + h3, h6 + h4, h6 + h5,
.m1 + h2, .m1 + h2, .m1 + h4, .m1 + h5, .m1 + h6,
img + h2, img + h3, img + h4, img + h5, img + h6{margin-top: 0 !important;}
section > h1:first-child, section > h2:first-child, section > h3:first-child, section > h4:first-child, box1 > h5:first-child, section > h6:first-child{margin-top: 0.2em !important;}
.box1 > h1:first-child, .box1 > h2:first-child, .box1 > h3:first-child, .box1 > h4:first-child, box1 > h5:first-child, .box1 > h6:first-child{margin-top: 0 !important;}
.box2 > h1:first-child, .box2 > h2:first-child, .box2 > h3:first-child, .box2 > h4:first-child, box2 > h5:first-child, .box2 > h6:first-child{margin-top: 0 !important;}
.box3 > h1:first-child, .box3 > h2:first-child, .box3 > h3:first-child, .box3 > h4:first-child, box3 > h5:first-child, .box3 > h6:first-child{margin-top: 0 !important;}
.box4 > h1:first-child, .box4 > h2:first-child, .box4 > h3:first-child, .box4 > h4:first-child, box4 > h5:first-child, .box4 > h6:first-child{margin-top: 0 !important;}
.box1 > .m1, .box1 > .m2, .box1 > .m3, .box1 > .m4, .box1 > .m5, .box1 > .m6,
.box2 > .m1, .box2 > .m2, .box2 > .m3, .box2 > .m4, .box2 > .m5, .box2 > .m6,
.box3 > .m1, .box3 > .m2, .box3 > .m3, .box3 > .m4, .box3 > .m5, .box3 > .m6,
.box4 > .m1, .box4 > .m2, .box4 > .m3, .box4 > .m4, .box4 > .m5, .box4 > .m6
{margin-top: 0 !important;}
.b1 > h1:first-child, .b1 > h2:first-child, .b1 > h3:first-child, .b1 > h4:first-child, b1 > h5:first-child, .b1 > h6:first-child{margin-top: 0 !important;}
.b2 > h1:first-child, .b2 > h2:first-child, .b2 > h3:first-child, .b2 > h4:first-child, b1 > h5:first-child, .b2 > h6:first-child{margin-top: 0 !important;}

/*------------------------------------------------
　btn
------------------------------------------------*/
.btna, .btnb, .btnc, .btnd, .btnf, div.dbtna a, div.dbtnb a, div.dbtnc a, div.dbtnd a, div.dbtnf a{font-size: 1em;}
header .btn, header .btnb, header .btnc, header .btnd{font-size: 14px;}
.btna, div.dbtna a, input[type="submit"] {
  display: inline-block;
  max-width: 300px;
  text-align: center;
  border: 2px solid var(--color-d);
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  padding: 4px 15px;
  margin: 10px 5px 1em;
  border-radius: 4px;
  transition: .4s;
  background:var(--color-d);
}
input[type="submit"]{padding: 4px 8px; margin: 1em 5px 1em;}
.btna:hover, div.dbtna a:hover, input:hover[type="submit"] {
  background-color: #fff;
  border-color: var(--color-d);
  color: var(--color-d) !important;
}
.btnb, div.dbtnb a {
  display: inline-block;
  max-width: 300px;
  text-align: center;
  border: 2px solid var(--color-d);
  color: var(--color-d) !important;
  text-decoration: none;
  font-weight: bold;
  padding: 4px 15px;
  margin: 10px 5px 1em;
  border-radius: 4px;
  transition: .4s;
  background:#fff;
}
.btnb:hover, div.dbtnb a:hover {
  background-color: var(--color-d);
  border-color: var(--color-d);
  color: #ffffff !important;
}
.btnc, div.dbtnc a{
  display: inline-block;
  max-width: 300px;
  text-align: center;
  border: 2px solid var(--color-a);
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  padding: 4px 15px;
  margin: 10px 5px 1em;
  border-radius: 4px;
  transition: .4s;
  background:var(--color-a);
}
.btnc:hover, div.dbtnc a:hover{
  background-color: #fff;
  border-color:var(--color-a);
  color:var(--color-a) !important;
}
.btnd, div.dbtnd a {
  display: inline-block;
  max-width: 300px;
  text-align: center;
  border: 2px solid var(--color-a);
  color:var(--color-a) !important;
  text-decoration: none;
  font-weight: bold;
  padding: 4px 15px;
  margin: 10px 5px 1em;
  border-radius: 4px;
  transition: .4s;
  background:#fff;
}
.btnd:hover, div.dbtnd a:hover {
  background-color:var(--color-a);
  border-color:var(--color-a);
  color: #ffffff !important;
}
.btnf, div.dbtnf a{
  display: inline-block;
  max-width: 300px;
  text-align: center;
  border: 2px solid var(--color-f);
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  padding: 4px 15px;
  margin: 10px 5px 1em;
  border-radius: 4px;
  transition: .4s;
  background:var(--color-f);
}
.btnf:hover, div.dbtnf a:hover{
  background-color: #fff;
  border-color:var(--color-f);
  color:var(--color-f) !important;
}
.btns a, a.btns{
 background:var(--color-d);
 color:#fff;
 padding:4px 8px 3px;
 margin:3px;
 border-radius:5px;
 text-decoration:none;
 font-size:12px;
 line-height: 1em;
 font-weight:400;
 white-space: nowrap;
}
.btns a:hover, a.btns:hover{
 background:var(--color-e);
 color:#fff;
 font-weight:bold;
}

ul.usns{padding:0 0 0em;}
.usns{
display:flex;
flex-flow:row wrap;
justify-content:center;
}
div.righta > ul.usns{justify-content: right;}
.usns li{
text-align:center!important;
letter-spacing: .2px;
line-height: 1;
margin-bottom: 0em;
position: relative;
}

a.btny, a.btnl, a.btnm, a.btne, a.btnw, a.btnfa, a.btnt, a.btni, a.btnn, a.btnh {
  display: inline-block;
  text-align: center;
  padding: 0.1em 0.1em;
  margin: 0;
  font-size: 2em;
}
a.btny:hover, a.btnl:hover, a.btnm:hover, a.btne:hover, a.btnw:hover, a.btnfa:hover, a.btnt:hover, a.btni:hover, a.btnn:hover, a.btnh:hover{
  opacity: 0.5;
}
a.btny {color:#fc0d1c;}
a.btnl {color:#00b900;}
a.btnm {color:#ef3f56;}
a.btne {color:#ef3f56;}
a.btnw {color:#ffc107;}
a.btnfa {color:#3b75d4;}
a.btni {color:#f13f79;}
a.btnn {color:#0077b5;}
a.btnh {color:#f13f79;}
a.btnt {color:#111111;}
.btntw a.btnt {color:#ffffff;}
.fa-fw {text-align: center !important; width: 1.4em !important;}


/*================================================
 *  flex box
 ================================================*/
.af2, .bf2, .lf2, .af3, .bf3, .lf3, .af4, .bf4, .lf4, .af5, .bf5, .lf5, .af6, .bf6, .lf6{
     display: flex;
     flex-flow: row wrap;
}
.af2, .af3, .af4, .af5, .af6{justify-content:space-around;}
.bf2, .bf3, .bf4, .bf5, .bf6{justify-content:space-between;}
.lf2, .lf3, .lf4, .lf5, .lf6{justify-content:flex-start;}
.lf2 .bin, .lf3 .bin, .lf4 .bin, .lf5 .bin, .lf6 .bin{
    flex-grow: 0;
    margin-bottom: 4.5em;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
   /* border: 1px #ccc solid;
    box-shadow: 0px 10px 15px -10px;*/
}
.af2 .bin, .af3 .bin, .af4 .bin, .af5 .bin, .af6 .bin, .bf2 .bin, .bf3 .bin, .bf4 .bin, .bf5 .bin, .bf6 .bin{
    flex-grow: 0;
    margin-bottom: 3.5em;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}
@media only screen and ( max-width : 414px ){ 
.af2 .bin, .af3 .bin, .af4 .bin, .af5 .bin, .af6 .bin, .bf2 .bin, .bf3 .bin, .bf4 .bin, .bf5 .bin, .bf6 .bin, .lf2 .bin, .lf3 .bin, .lf4 .bin, .lf5 .bin, .lf6 .bin{flex-basis:100%; margin-left:0;}
}
@media only screen and ( min-width : 414.1px ) and ( max-width : 767.9px ) { 
.lf2 .bin, .af2 .bin, .bf2 .bin{flex-basis:100%; margin-left:0;}
.lf3 .bin, .af3 .bin, .bf3 .bin{flex-basis:46%;}
.lf3 .bin:nth-child(3n+1), .lf3 .bin:nth-child(3n){margin-left:0;}
.lf3 .bin:nth-child(3n+2){margin-left:8%;}
.lf4 .bin, .af4 .bin, .bf4 .bin{flex-basis:46%;}
.lf4 .bin:nth-child(4n+1), .lf4 .bin:nth-child(4n+3){margin-left:0;}
.lf4 .bin:nth-child(4n+2), .lf4 .bin:nth-child(4n){margin-left:8%;}
.lf5 .bin, .af5 .bin, .bf5 .bin{flex-basis:46%;}
.lf5 .bin:nth-child(5n+1), .lf5 .bin:nth-child(5n+3), .lf5 .bin:nth-child(5n){margin-left:0;}
.lf5 .bin:nth-child(5n+2), .lf5 .bin:nth-child(5n+4){margin-left:8%;}
.lf6 .bin, .af6 .bin, .bf6 .bin{flex-basis:46%;}
.lf6 .bin:nth-child(6n+1), .lf6 .bin:nth-child(6n+3), .lf6 .bin:nth-child(6n+5){margin-left:0;}
.lf6 .bin:nth-child(6n+2), .lf6 .bin:nth-child(6n+4), .lf6 .bin:nth-child(6n){margin-left:8%;}
}
@media only screen and ( min-width : 768px ) and ( max-width : 1023.9px ) { 
.lf2 .bin, .af2 .bin, .bf2 .bin{flex-basis:46%;}
.lf2 .bin:nth-child(2n+1){margin-left:0;}
.lf2 .bin:nth-child(2n){margin-left:8%;}
.lf3 .bin, .af3 .bin, .bf3 .bin{flex-basis:30%;}
.lf3 .bin:nth-child(3n+1){margin-left:0;}
.lf3 .bin:nth-child(3n+2), .lf3 .bin:nth-child(3n){margin-left:5%;}
.lf4 .bin, .af4 .bin, .bf4 .bin{flex-basis:46%;}
.lf4 .bin:nth-child(4n+1), .lf4 .bin:nth-child(4n+3){margin-left:0;}
.lf4 .bin:nth-child(4n+2), .lf4 .bin:nth-child(4n){margin-left:8%;}
.lf5 .bin, .af5 .bin, .bf5 .bin{flex-basis:30%;}
.lf5 .bin:nth-child(5n+1){margin-left:0;}
.lf5 .bin:nth-child(5n+2), .lf5 .bin:nth-child(5n+3){margin-left:5%;}
.lf5 .bin:nth-child(5n+4), .lf5 .bin:nth-child(5n){margin-left:13.8%;}
.lf6 .bin, .af6 .bin, .bf6 .bin{flex-basis:30%;}
.lf6 .bin:nth-child(6n+1), .lf6 .bin:nth-child(6n+4){margin-left:0%;}
.lf6 .bin:nth-child(6n+2), .lf6 .bin:nth-child(6n+3), .lf6 .bin:nth-child(6n+5), .lf6 .bin:nth-child(6n){margin-left:5%;}
}
@media print, screen and (min-width: 1024px){
.lf2 .bin, .af2 .bin, .bf2 .bin{flex-basis:46%;}
.lf2 .bin:nth-child(2n+1){margin-left:0;}
.lf2 .bin:nth-child(2n){margin-left:8%;}
.lf3 .bin, .af3 .bin, .bf3 .bin{flex-basis:30%;}
.lf3 .bin:nth-child(3n+1){margin-left:0;}
.lf3 .bin:nth-child(3n+2), .lf3 .bin:nth-child(3n){margin-left:5%;}
.lf4 .bin, .af4 .bin, .bf4 .bin{flex-basis:23%;}
.lf4 .bin:nth-child(4n+1){margin-left:1%;}
.lf4 .bin:nth-child(4n+2), .lf4 .bin:nth-child(4n+3), .lf4 .bin:nth-child(4n){margin-left:2%;}
.lf5 .bin, .af5 .bin, .bf5 .bin{flex-basis:18%;}
.lf5 .bin:nth-child(5n+1){margin-left:1%;}
.lf5 .bin:nth-child(5n+2), .lf5 .bin:nth-child(5n+3), .lf5 .bin:nth-child(5n+4), .lf5 .bin:nth-child(5n){margin-left:2%;}
.lf6 .bin, .af6 .bin, .bf6 .bin{flex-basis:16%;}
.lf6 .bin:nth-child(6n+1){margin-left:0%;}
.lf6 .bin:nth-child(6n+2), .lf6 .bin:nth-child(6n+3), .lf6 .bin:nth-child(6n+4), .lf6 .bin:nth-child(6n+5), .lf6 .bin:nth-child(6n){margin-left:0.8%;}
}
.fg1 { flex-grow: 1;}
.fg2 { flex-grow: 2;}
.fg3 { flex-grow: 3;}
.f2 p, .f3 p{margin:0.5em 0.5em 1em;}

/*================================================
 *  box1
 ================================================*/
.box0, .box1, .box2, .box3, .box4{
    display:block;
    clear:both;
    overflow:hidden;
    margin: 0 0 2em;
    padding: 1em 1em 0;
    text-align: left;
}
.box0b, .box1b, .box2b, .box3b, .box4b{
    display:inline-block;
    clear:both;
    overflow:hidden;
    margin: 0 0 2em;
    padding: 1em 1em 0;
    text-align: left;
}
.box0{
    border: #ddd solid 1px;
    background: #fff;
}
.box1{
    border: var(--color-c) solid 1px;
    background: #fff;
}
.box2{
    border:var(--color-a) solid 1px;
    background: #fff;
}
.box3{
    border: var(--color-d) solid 2px;
    background: #fff;
}
.box4{
    border: var(--color-f) solid 2px;
    background: #fff;
}
.box0b{
    border: #ddd dashed 2px;
    background: #fffff0;
}
.box1b{
    border: var(--color-c) dashed 2px;
    background: #fffff0;
}
.box2b{
    border:var(--color-a) dashed 2px;
    background: #fffff0;
}
.box3b{
    border: var(--color-d) dashed 2px;
    background: #fffff0;
}
.box4b{
    border: var(--color-f) dashed 2px;
    background: #fffff0;
}

/*------------------------------------------------
　scbox
------------------------------------------------*/
.scbox{
    display:block;
    clear:both;
    overflow:hidden;
    float:left;
    width:100%;
    margin: 0 0 100px;
    padding: 1em 1em 0;
    border: 3px solid #cccccc;
    border-radius: 5px;
    box-shadow: 0px 5px 20px -5px rgba(206, 203, 173, 0.8);
    background-color: #ffffff;
    height: 10em;
    overflow-y: auto;
    overflow-x: hidden;
}
.scbox::-webkit-scrollbar{
  width: 12px;
}
.scbox::-webkit-scrollbar-track{
  background: #ffffff;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #777777; 
}
.scbox::-webkit-scrollbar-thumb{
  background:var(--color-c);
  border-radius: 10px;
  box-shadow: none;
}

/*-bg------------------------------------------------------------------------------------------------*/
.bgbox{
    background-image: url(../images/01a.png),url(../images/01b.png),url(../images/01.png);
    background-position: top,bottom,center;
    background-repeat: no-repeat,no-repeat,repeat-y;
    background-size: 100%;
    margin: 0 0 3em;
    padding: 20px 1em 5px;
    color:#333333;
    overflow: hidden;
}

.b55l{display:block;padding:0;margin:0;width:50%;float:left;}
.b55r{display:block;padding:0;margin:0;width:50%;float:right;}
.b64l{display:block;padding:0;margin:0;width:60%;float:left;}
.b64r{display:block;padding:0;margin:0;width:40%;float:right;}
.b46l{display:block;padding:0;margin:0;width:40%;float:left;}
.b46r{display:block;padding:0;margin:0;width:60%;float:right;}
.b73l{display:block;padding:0;margin:0;width:70%;float:left;}
.b73r{display:block;padding:0;margin:0;width:30%;float:right;}
.b37l{display:block;padding:0;margin:0;width:30%;float:left;}
.b37r{display:block;padding:0;margin:0;width:70%;float:right;}
.b82l{display:block;padding:0;margin:0;width:80%;float:left;}
.b82r{display:block;padding:0;margin:0;width:20%;float:right;}
.b28l{display:block;padding:0;margin:0;width:20%;float:left;}
.b28r{display:block;padding:0;margin:0;width:80%;float:right;}
.b91l{display:block;padding:0;margin:0;width:90%;float:left;}
.b91r{display:block;padding:0;margin:0;width:10%;float:right;}
.b19l{display:block;padding:0;margin:0;width:10%;float:left;}
.b19r{display:block;padding:0;margin:0;width:90%;float:right;}
.b33l{display:block;padding:0;margin:0;width:33%;float:left;}
.b33c{display:block;padding:0;margin:0 0.5%;width:33%;float:left;}
.b33r{display:block;padding:0;margin:0;width:33%;float:right;}
.b44{display:block;padding:0;margin:0;width:25%;float:left;}
.bb55l,.bb55r,.bb64l,.bb64r,.bb46l,.bb46r,.bb73l,.bb73r,.bb37l,.bb37r,.bb82l,.bb82r,.bb28l,.bb28r,.bb91l,.bb91r,.bb19l,.bb19r
{width:100%; margin:0; padding:0; display:inline-block;}
.b0{width:50%; margin:0 auto; padding:0; display:block; overflow:hidden;}
.b1, .b2, .b3, .b4, .b6{width:100%; margin:0; padding:0; display:inline-block;}
@media only screen and (min-width: 360px)
{
.b6{width:50%; font-size:90%; margin:0; padding:0; display:inline-block; float:left;}
}
@media only screen and (min-width: 414.1px)
{
.b4{width:50%; float:left;}
.bb55l{display:block;padding:0;margin:0;width:50%;float:left;}
.bb55r{display:block;padding:0;margin:0;width:50%;float:right;}
.bb33l{display:block;padding:0;margin:0;width:33%;float:left;}
.bb33c{display:block;padding:0;margin:0 0.5%;width:33%;float:left;}
.bb33r{display:block;padding:0;margin:0;width:33%;float:right;}
.bb44{display:block;padding:0;margin:0;width:25%;float:left;}
.maxw{overflow: hidden; width:300px; margin-left:-webkit-calc(50% - 150px); margin-left:calc(50% - 150px); margin-right:-webkit-calc(50% - 150px); margin-right:calc(50% - 150px);}
}
@media only screen and (min-width: 560px)
{
.b3 {width:50%; float:left;}
}
@media print, screen and (min-width: 768px)
{
.b2{width:50%; padding-left:0; padding-right:0; float:left;}
.b4{width:25%; padding-left:0; padding-right:0; float:left;}
.b3{width:33.3%; padding-left:0; padding-right:0; float:left;}
.b6{width:33.3%; padding-left:0; padding-right:0; float:left;font-size:100%;}
.bb64l{display:block;padding:0;margin:0;width:60%;float:left;}
.bb64r{display:block;padding:0;margin:0;width:40%;float:right;}
.bb46l{display:block;padding:0;margin:0;width:40%;float:left;}
.bb46r{display:block;padding:0;margin:0;width:60%;float:right;}
.bb73l{display:block;padding:0;margin:0;width:70%;float:left;}
.bb73r{display:block;padding:0;margin:0;width:30%;float:right;}
.bb37l{display:block;padding:0;margin:0;width:30%;float:left;}
.bb37r{display:block;padding:0;margin:0;width:70%;float:right;}
.bb82l{display:block;padding:0;margin:0;width:80%;float:left;}
.bb82r{display:block;padding:0;margin:0;width:20%;float:right;}
.bb28l{display:block;padding:0;margin:0;width:20%;float:left;}
.bb28r{display:block;padding:0;margin:0;width:80%;float:right;}
.bb91l{display:block;padding:0;margin:0;width:90%;float:left;}
.bb91r{display:block;padding:0;margin:0;width:10%;float:right;}
.bb19l{display:block;padding:0;margin:0;width:10%;float:left;}
.bb19r{display:block;padding:0;margin:0;width:90%;float:right;}
}
@media print, screen and (min-width: 1024px)
{
.b6{width:16.6%; padding-left:0; padding-right:0; float:left;}
}

/*------------------------------------------------
　　v1
------------------------------------------------*/
.v1 {
  position:relative;
  width:100%;
  padding-top:56.25%;
  margin-bottom: 1.5em;
  border: 2px solidvar(--color-c);
}
.v1 iframe, 
.v1 object, 
.v1 embed {
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;    
}

/*================================================
 *  table
 ================================================*/
table:not([class]) {
	width:100%;
	margin: 0 auto 1em;
	border-collapse:collapse;
	border:2px solid #999;
	background:#fff;
        table-layout: fixed;
	word-break: break-all;
}
table:not([class]) th, table:not([class]) td {
　 　border: none;
    display: block;
    width: 100%;
    padding:10px;
}
table:not([class]) th {
	text-align:center;
	vertical-align:middle;
	background:#eee;
}
table:not([class]) td {
	text-align:left;
}
.last td:last-child {
    border-bottom: solid 2px #999;
    width: 100%;
}

@media print, screen and (min-width: 768px) {
table:not([class])  {width:100%;}
table:not([class]) th, table:not([class]) td{display: table-cell; border:2px solid #999;}
table:not([class]) th  {width: 25%;}
table:not([class]) td{width: 75%;}
}

/*-----------------------------------------------------------------------------------------------t1--*/
table.t1 {width:100%; margin:0.5em auto 0.5em; word-break:break-all; table-layout:fixed; display:table;}
table.t1 th, table.t1 td{padding:0.4em 0.2em; border:2px solid #999;}
table.t1 th{background-color:var(--color-c); color:#ffffff; text-align:center; vertical-align: middle;}
table.t1 td{background-color:#fff; color:#000000; text-align:left;}

/*-----------------------------------------------------------------------------------------------tscr--*/
table.tscr {
  display: block;
}
@media only screen and (max-width: 768px)
{
table.tscr {
  display: block;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
}

table.tscr tbody {
  width: 100%;
  display:table;
 word-break:break-all;
}
table.tscr th, table.tscr td{ width:11em; padding:1em 0.2em; border:0.05em solid var(--color-b); text-align:center; vertical-align:middle;}
table.tscr th{background-color:var(--color-a); color:#ffffff;}
table.tscr td{background-color:#ffffff; color:#000000; min-width:160px;}

tbody.tdl td{text-align:left;}
tbody.tdr td{text-align:right;}
tbody.tdc td{text-align:center;}

/*------------------------------------------------------------------------------------------------ol ul-*/
ul.sitemap_disp_level_0, section#contentsec ul:not([class]), section#contentsec ol:not([class]),
ol.o0, ol.o1, ol.o2, ol.o3, ol.o1b, ol.o2b, ol.o3b,
ul.u1, ul.u2, ul.u3, ul.u4, ul.u5, ul.u6, ul.u7, ul.u8, ul.u9, ul.u10, ul.u11,
ul.u1b, ul.u2b, ul.u3b, ul.u4b, ul.u5b, ul.u6b, ul.u7b, ul.u8b, ul.u9b, ul.u10b, ul.u11b{
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px;
    -moz-margin-before: 0em;
    -moz-margin-after: 0em;
    -moz-margin-start: 0px;
    -moz-margin-end: 0px;
    -moz-padding-start: 0px;
    list-style-position: inside;
    margin:0 0 0 0.5em;
    padding:0.5em 0.2em 0 1.5em;
    text-indent: 1.5em;
    display: table-cell;
}
section#contentsec ul:not([class]), section#contentsec ol:not([class]){padding-bottom:1em;}

/*------------------------------------------------
　　ol 
------------------------------------------------*/
section#contentsec ol:not([class]), .o0, .o0b {
 counter-reset: li;
 list-style: none;
}
section#contentsec ol:not([class]) > li, .o0 > li, .o0b > li {
 position: relative;
 text-indent:0em;
 margin-left: -2em;
 padding-left: 2em;
 padding-bottom: 1em;
 line-height: 1.5;
}
section#contentsec ol:not([class]) > li:before, .o0 > li:before {
 counter-increment: li;
 content: counter(li);
 position: absolute;
 left: 0.2em;
 width: 1.2em;
 height: 1.2em;
 line-height: 1.2;
 color: #fff;
 text-align: center;
 vertical-align: baseline;
 background: var(--color-c);
 margin-top: 0.2em;
}
.o0b > li:before {
 counter-increment: li;
 content: counter(li);
 position: absolute;
 left: 0.2em;
 width: 1.2em;
 height: 1.2em;
 line-height: 1.2;
 color: #fff;
 text-align: center;
 vertical-align: baseline;
 background: var(--color-d);
}
.o1, .o1b {
 counter-reset: li;
 list-style: none;
}
.o1 > li, .o1b > li {
 position: relative;
 text-indent:0em;
 margin-left: -2em;
 padding-left: 1.8em;
 padding-bottom: 0.5em;
 line-height: 1.3;
}
.o1 > li:before {
 counter-increment: li;
 content: counter(li);
 position: absolute;
 left: 0.2em;
 width: 1.2em;
 height: 1.2em;
 line-height: 1.3;
 border-radius: 50%;
 color: #fff;
 text-align: center;
 vertical-align: baseline;
 background: var(--color-c);
}
.o1b > li:before {
 counter-increment: li;
 content: counter(li);
 position: absolute;
 left: 0.2em;
 width: 1.2em;
 height: 1.2em;
 line-height: 1.3;
 border-radius: 50%;
 color: #fff;
 text-align: center;
 vertical-align: baseline;
 background: var(--color-d);
}
.o2, .o2b {
 counter-reset: li;
 list-style: none;
}
.o2 > li, .o2b > li {
 position: relative;
 text-indent:0em;
 margin-left: -2em;
 padding-left: 2.6em;
 padding-bottom: 0.5em;
}
.o2 > li:before {
 counter-increment: li;
 content: counter(li);
 position: absolute;
 left: 0;
 width: 1em;
 text-align: right;
 font-weight: bold;
 color: var(--color-c);
}
.o2b > li:before {
 counter-increment: li;
 content: counter(li);
 position: absolute;
 left: 0;
 width: 1em;
 text-align: right;
 font-weight: bold;
 color: var(--color-d);
}
.o2 > li:after {
 content: "位";
 position: absolute;
 left: 1.2em;
 top:0;
 font-weight: bold;
 color: var(--color-c);
}
.o2b > li:after {
 content: "位";
 position: absolute;
 left: 1.2em;
 top:0;
 font-weight: bold;
 color: var(--color-d);
}
.o3, .o3b {
 counter-reset: li;
 list-style: none;
}
.o3 > li, .o3b > li {
 position: relative;
 text-indent:0em;
 margin-left: -2em;
 padding-left: 4em;
 padding-bottom: 0.5em;
 line-height: 1.2;
}
.o3 > li:before {
 content: "Point";
 position: absolute;
 left: 0;
 padding: 0 0 0 0.2em;
 text-align: right;
 font-weight: bold;
 background-color: #000000;
 color: var(--color-c);
}
.o3b > li:before {
 content: "Point";
 position: absolute;
 left: 0;
 padding: 0 0 0 0.2em;
 text-align: right;
 font-weight: bold;
 background-color: #000000;
 color: var(--color-d);
}
.o3 > li:after {
 counter-increment: li;
 content: counter(li);
 position: absolute;
 left: 2.6em;
 top:0;
 padding: 0 0.2em;
 font-weight: bold;
 background-color: #000000;
 color: var(--color-c);
}
.o3b > li:after {
 counter-increment: li;
 content: counter(li);
 position: absolute;
 left: 2.6em;
 top:0;
 padding: 0 0.2em;
 font-weight: bold;
 background-color: #000000;
 color: var(--color-d);
}

/*------------------------------------------------
   ul li
------------------------------------------------*/
ul.sitemap_disp_level_0 li, section#contentsec ul:not([class]) li, ul.u1 li, ul.u2 li, ul.u3 li, ul.u4 li, ul.u5 li, ul.u6 li, ul.u7 li, ul.u8 li, ul.u9 li, ul.u10 li, ul.u11 li,
ul.u1b li, ul.u2b li, ul.u3b li, ul.u4b li, ul.u5b li, ul.u6b li, ul.u7b li, ul.u8b li, ul.u9b li, ul.u10b li, ul.u11b li{
 list-style-type:none; line-height: 1.2; padding-bottom:0.5em; text-indent: -1.5em;
}
ul.sitemap_disp_level_0 li:before, section#contentsec ul:not([class]) li:before, ul.u1 li:before, ul.u2 li:before, ul.u3 li:before, ul.u4 li:before, ul.u5 li:before, ul.u6 li:before, ul.u7 li:before, ul.u8 li:before, ul.u9 li:before, ul.u10 li:before, ul.u11 li:before{
 line-height:1.2; font-family: "Font Awesome 6 Free"; font-weight:bold; color:var(--color-c);
}
ul.u1b li:before, ul.u2b li:before, ul.u3b li:before, ul.u4b li:before, ul.u5b li:before, ul.u6b li:before, ul.u7b li:before, ul.u8b li:before, ul.u9b li:before, ul.u10b li:before, ul.u11b li:before{
 line-height: 1.2; font-family: "Font Awesome 6 Free"; color:var(--color-d);
}
ul.sitemap_disp_level_0 li:before{content: "\f058" !important; font-weight:600;}
section#contentsec ul li.googlelink:before{content: "\f3c5"; font-weight:600;}
section#contentsec ul li.facebooklink:before {content: "\f082"; font-weight:400;}
section#contentsec ul li.instagramlink:before {content: "\f16d"; font-weight:400;}
section#contentsec ul li.twitterlink:before {content: "\f081"; font-weight:400;}
section#contentsec ul:not([class]) li:before {content: "\f14a" !important; font-weight:600;}
ul.u1 li:before, ul.u1b li:before {content: "\f00c" !important; font-weight:600;}
ul.u2 li:before, ul.u2b li:before {content: "\f14a" !important; font-weight:400;}
ul.u3 li:before, ul.u3b li:before {content: "\f14a" !important; font-weight:600;}
ul.u4 li:before, ul.u4b li:before {content: "\f058" !important; font-weight:400;}
ul.u5 li:before, ul.u5b li:before {content: "\f058" !important; font-weight:600;}
ul.u6 li:before, ul.u6b li:before {content: "\f00d" !important; font-weight:600;}
ul.u7 li:before, ul.u7b li:before {content: "\f0a4" !important; font-weight:600;}
ul.u8 li:before, ul.u8b li:before {content: "\f091" !important; font-weight:600;}
ul.u9 li:before, ul.u9b li:before {content: "\f201" !important; font-weight:600;}
ul.u10 li:before, ul.u10b li:before {content: "\f080" !important; font-weight:600;}
ul.u11 li:before, ul.u11b li:before {content: "\f200" !important; font-weight:600;}

ul.sitemap_disp_level_0 li:before, section#contentsec ul:not([class]) li:before, ul.u1 li:before, ul.u2 li:before, ul.u3 li:before, ul.u4 li:before, ul.u5 li:before, ul.u6 li:before, ul.u7 li:before, ul.u8 li:before, ul.u9 li:before, ul.u10 li:before, ul.u11 li:before,
ul.u1b li:before, ul.u2b li:before, ul.u3b li:before, ul.u4b li:before, ul.u5b li:before, ul.u6b li:before, ul.u7b li:before, ul.u8b li:before, ul.u9b li:before, ul.u10b li:before, ul.u11b li:before{
 padding-right:0.6em;
}

li.lin:before{display:none; margin-top:0.25em; margin-left:-0.4em;}

.lista, .list1, .listy, .listm, .listl, .listf, .listi, .listt, .listw {line-height:1.2; margin:0.5em 0.5em 1em; padding:0 0 0 1em; vertical-align:text-top; text-indent: -1em;}
.lista:before, .list1:before, .listm:before, .listw:before {padding-right:0.25em; vertical-align:baseline; font-family: "Font Awesome 6 Free";}
.listy:before, .listl:before, .listf:before, .listi:before, .listt:before {padding-right:0.25em; vertical-align:baseline; font-family:'Font Awesome 6 Brands';}

.lista:before {content: "\f51e"; font-weight:600; color:#e6b422;}
.list1:before {content: "\f14a"; font-weight:600; color:var(--color-c);}
.listy:before {content: "\f167"; font-weight:400; color:#fc0d1c;}
.listl:before {content: "\f3c0"; font-weight:400; color:#00b900;}
.listf:before {content: "\f082"; font-weight:400; color:#3b75d4;}
.listi:before {content: "\f16d"; font-weight:400; color:#f13f79;}
.listt:before {content: "\f081"; font-weight:400; color:#55acee;}
.listm:before {content: "\f3c5"; font-weight:900; color:#ef3f56;}
.listw:before {content: "\f109"; font-weight:900; color:#6cc655;}

/*================================================
 *　q & a
 ================================================*/
.qanda dt {
    font-weight: 600;
    margin: 0.5em 0 1em;
    padding: 0em 1.5em 0em 2.5em;
    color: #333333;
    text-indent: -1.5em;
    border-bottom: unset;
}

.qanda dt::before,
.qanda dd::before {
    margin-right: .4em;
}

.qanda dt::before {
    content: "Q.";
	color: #75bbff;
}

.qanda dd {
    margin: 0 0 2.5em;
    padding: 1em 1.5em 1em 2.5em;
    background-color: #ecfeed;
    color: #333333;
    text-indent: -1.5em;
}

.qanda dd::before {
    content: "A.";
	color: #ff8d8d;
}


/*------------------------------------------------
　important
------------------------------------------------*/
.righta {text-align:right !important;}
.lefta {text-align:left !important;}
.centera {text-align:center !important;}
.rightb {display:block !important; float:right !important;}
.leftb {display:block !important; float:left !important;}
.centerb {display:block !important; float:none; margin:0 auto !important;}
.rightf {display:block !important; float:none !important; vertical-align:top;}
.leftf {display:block !important; float:none !important; vertical-align:top;}

.pr1 {background:linear-gradient(transparent 80%, #ff6 80%);}
.pr2 {background:linear-gradient(transparent 80%, #f57e7e 90%);}

@media only screen and (max-width: 768px)
{
.centertb {display:block !important; float:none; margin:0 auto !important; max-width:fit-content;}
}

@media print, screen and (min-width: 1024px)
{
.rightf {float:right !important;}
.leftf {float:left !important;}
}
#feed{
    height: 11em;
    overflow-y: scroll;
    overflow-x: hidden;
}
.naname {
    transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    padding-left: 0.45em;
    margin-bottom:0.5em;
    margin-top:0.2em;
}
.nanameb {
    transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    padding-left: 0.45em;
    margin-bottom:0.5em;
    margin-top:0.2em;
}
.fsg{font-family:HGP行書体;}
.tshadow{
text-shadow:
    white 0.1em 0px 0.1em, white -0.1em 0px 0.1em,
    white 0px -0.1em 0.1em, white -0.1em 0px 0.1em,
    white 0.1em 0.1em 0.1em, white -0.1em 0.1em 0.1em,
    white 0.1em -0.1em 0.1em, white -0.1em -0.1em 0.1em,
    white 0.05em 0.1em 0.1em, white -0.05em 0.1em 0.1em,
    white 0.05em -0.1em 0.1em, white -0.05em -0.1em 0.1em,
    white 0.1em 0.05em 0.1em, white -0.1em 0.05em 0.1em,
    white 0.1em -0.05em 0.1em, white -0.1em -0.05em 0.1em,
    white 0.05em 0.05em 0.1em, white -0.05em 0.05em 0.1em,
    white 0.05em -0.05em 0.1em, white -0.05em -0.05em 0.1em;
}
.tshadowb{
text-shadow:
    black 0.1em 0px 0.1em, black -0.1em 0px 0.1em,
    black 0px -0.1em 0.1em, black -0.1em 0px 0.1em,
    black 0.1em 0.1em 0.1em, black -0.1em 0.1em 0.1em,
    black 0.1em -0.1em 0.1em, black -0.1em -0.1em 0.1em,
    black 0.05em 0.1em 0.1em, black -0.05em 0.1em 0.1em,
    black 0.05em -0.1em 0.1em, black -0.05em -0.1em 0.1em,
    black 0.1em 0.05em 0.1em, black -0.1em 0.05em 0.1em,
    black 0.1em -0.05em 0.1em, black -0.1em -0.05em 0.1em,
    black 0.05em 0.05em 0.1em, black -0.05em 0.05em 0.1em,
    black 0.05em -0.05em 0.1em, black -0.05em -0.05em 0.1em;
}
.bgf{background: #ffffff !important;}
.bg0{background: #000000 !important;}
.bg1{background:var(--color-a) !important;}
.bg2{background: var(--color-b) !important;}
.bg3{background: var(--color-c) !important;}
.bg4{background:var(--color-d) !important;}
.bg5{background: var(--color-e) !important;}
.bg6{background: var(--color-f) !important;}
.bgb{background: beige !important;}
.bgbb{background: #fffff0 !important;}
.bgr{background: #ff0000 !important;}
.clf{color: #ffffff !important;}
.cl0{color: #000000 !important;}
.cl1{color:var(--color-a) !important;}
.cl2{color: var(--color-b) !important;}
.cl3{color: var(--color-c) !important;}
.cl4{color:var(--color-d) !important;}
.cl5{color: var(--color-e) !important;}
.cl6{color: var(--color-f) !important;}
.clr{color: #ff0000 !important;}

.cly {color:#fc0d1c !important;}
.cll {color:#00b900 !important;}
.clm {color:#ef3f56 !important;}
.cle {color:#ef3f56 !important;}
.clw {color:#ffc107 !important;}
.clt {color:#55acee !important;}
.cli {color:#f13f79 !important;}
.clh {color:#f13f79 !important;}
.fa-fw {
    text-align: left;
    width: 1.4em !important;
}
.fs500{font-size:500% !important;}
.fs400{font-size:400% !important;}
.fs300{font-size:300% !important;}
.fs290{font-size:290% !important;}
.fs280{font-size:280% !important;}
.fs270{font-size:270% !important;}
.fs260{font-size:260% !important;}
.fs250{font-size:250% !important;}
.fs240{font-size:240% !important;}
.fs230{font-size:230% !important;}
.fs220{font-size:220% !important;}
.fs210{font-size:210% !important;}
.fs200{font-size:200% !important;}
.fs190{font-size:190% !important;}
.fs180{font-size:180% !important;}
.fs170{font-size:170% !important;}
.fs160{font-size:160% !important;}
.fs150{font-size:150% !important;}
.fs140{font-size:140% !important;}
.fs130{font-size:130% !important;}
.fs120{font-size:120% !important;}
.fs110{font-size:110% !important;}
.fs100{font-size:100% !important;}
.fs90{font-size:90% !important;}
.fs80{font-size:80% !important;}
.fs70{font-size:70% !important;}
.fs60{font-size:60% !important;}
.fs50{font-size:50% !important;}
.fs40{font-size:40% !important;}
.fs30{font-size:30% !important;}
.fs20{font-size:20% !important;}
.fs10{font-size:10% !important;}
.lh2{line-height:2 !important;}
.lh15{line-height:1.5 !important;}
.lh1{line-height:1 !important;}
.lh05{line-height:0.5 !important;}
.lh0{line-height:0 !important;}
.pdxxx{padding:3em !important;}
.pdxx{padding:2.5em !important;}
.pdx{padding:1.5em !important;}
.pdm{padding:1em !important;}
.pds{padding:0.5em !important;}
.pdss{padding:0.25em !important;}
.pdn{padding:0 !important;}
.pdlrxxx{padding-left:3em !important; padding-right:3em !important;}
.pdlrxx{padding-left:2.5em !important; padding-right:2.5em !important;}
.pdlrx{padding-left:1.5em !important; padding-right:1.5em !important;}
.pdlrm{padding-left:1em !important; padding-right:1em !important;}
.pdlrs{padding-left:0.5em !important; padding-right:0.5em !important;}
.pdlrss{padding-left:0.25em !important; padding-right:0.25em !important;}
.pdlrn{padding-left:0em !important; padding-right:0em !important;}
.pdlxxx{padding-left:3em !important;}
.pdlxx{padding-left:2.5em !important;}
.pdlx{padding-left:1.5em !important;}
.pdlm{padding-left:1em !important;}
.pdls{padding-left:0.5em !important;}
.pdlss{padding-left:0.25em !important;}
.pdln{padding-left:0em !important;}
.pdrxxx{padding-right:3em !important;}
.pdrxx{padding-right:2.5em !important;}
.pdrx{padding-right:1.5em !important;}
.pdrm{padding-right:1em !important;}
.pdrs{padding-right:0.5em !important;}
.pdrss{padding-right:0.25em !important;}
.pdrn{padding-right:0em !important;}
.pdtbxxx{padding-top:3em !important; padding-bottom:3em !important;}
.pdtbxx{padding-top:2.5em !important; padding-bottom:2.5em !important;}
.pdtbx{padding-top:1.5em !important; padding-bottom:1.5em !important;}
.pdtbm{padding-top:1em !important; padding-bottom:1em !important;}
.pdtbs{padding-top:0.5em !important; padding-bottom:0.5em !important;}
.pdtbss{padding-top:0.25em !important; padding-bottom:0.25em !important;}
.pdtbn{padding-top:0em !important; padding-bottom:0em !important;}
.pdtxxx{padding-top:3em !important;}
.pdtxx{padding-top:2.5em !important;}
.pdtx{padding-top:1.5em !important;}
.pdtm{padding-top:1em !important;}
.pdts{padding-top:0.5em !important;}
.pdtss{padding-top:0.25em !important;}
.pdtn{padding-top:0 !important;}
.pdbxxx{padding-bottom:3em !important;}
.pdbxx{padding-bottom:2.5em !important;}
.pdbx{padding-bottom:1.5em !important;}
.pdbm{padding-bottom:1em !important;}
.pdbs{padding-bottom:0.5em !important;}
.pdbss{padding-bottom:0.25em !important;}
.pdbn{padding-bottom:0 !important;}
.mra{margin:0 auto !important;}
.mrxxx{margin:3em !important;}
.mrxx{margin:2.5em !important;}
.mrx{margin:1.5em !important;}
.mrm{margin:1em !important;}
.mrs{margin:0.5em !important;}
.mrss{margin:0.25em !important;}
.mrn{margin:0 !important;}
.mrlrxxx{margin-left:3em !important; margin-right:3em !important;}
.mrlrxx{margin-left:2.5em !important; margin-right:2.5em !important;}
.mrlrx{margin-left:1.5em !important; margin-right:1.5em !important;}
.mrlrm{margin-left:1em !important; margin-right:1em !important;}
.mrlrs{margin-left:0.5em !important; margin-right:0.5em !important;}
.mrlrss{margin-left:0.25em !important; margin-right:0.25em !important;}
.mrlrn{margin-left:0em !important; margin-right:0em !important;}
.mrlxxx{margin-left:3em !important;}
.mrlxx{margin-left:2.5em !important;}
.mrlx{margin-left:1.5em !important;}
.mrlm{margin-left:1em !important;}
.mrls{margin-left:0.5em !important;}
.mrlss{margin-left:0.25em !important;}
.mrln{margin-left:0em !important;}
.mrrxxx{margin-right:3em !important;}
.mrrxx{margin-right:2.5em !important;}
.mrrx{margin-right:1.5em !important;}
.mrrm{margin-right:1em !important;}
.mrrs{margin-right:0.5em !important;}
.mrrss{margin-right:0.25em !important;}
.mrrn{margin-right:0em !important;}
.mrtbxxx{margin-top:3em !important; margin-bottom:3em !important;}
.mrtbxx{margin-top:2.5em !important; margin-bottom:2.5em !important;}
.mrtbx{margin-top:1.5em !important; margin-bottom:1.5em !important;}
.mrtbm{margin-top:1em !important; margin-bottom:1em !important;}
.mrtbs{margin-top:0.5em !important; margin-bottom:0.5em !important;}
.mrtbss{margin-top:0.25em !important; margin-bottom:0.25em !important;}
.mrtbn{margin-top:0em !important; margin-bottom:0em !important;}
.mrtxxx{margin-top:3em !important;}
.mrtxx{margin-top:2.5em !important;}
.mrtx{margin-top:1.5em !important;}
.mrtm{margin-top:1em !important;}
.mrts{margin-top:0.5em !important;}
.mrtss{margin-top:0.25em !important;}
.mrtn{margin-top:0em !important;}
.mrbxxx{margin-bottom:3em !important;}
.mrbxx{margin-bottom:2.5em !important;}
.mrbx{margin-bottom:1.5em !important;}
.mrbm{margin-bottom:1em !important;}
.mrbs{margin-bottom:0.5em !important;}
.mrbss{margin-bottom:0.25em !important;}
.mrbn{margin-bottom:0em !important;}
.pdz{padding-left:1em !important; padding-right:1em !important; padding-bottom:1em !important; padding-top:0em !important;}
.pindex{text-indent: 1em;}
.potl{position: absolute; top:0; left:0;}
.potr{position: absolute; top:0; right:0;}
.pobl{position: absolute; bottom:0; left:0;}
.pobr{position: absolute; bottom:0; right:0;}
.vat{vertical-align: top;}
.vam{vertical-align: middle;}
.vab{vertical-align: bottom;}
@media only screen and (max-width: 375px)
{
.minmbb{display:none !important;}
}
@media only screen and (max-width: 414px)
{
.minmb{display:none !important;}
}
@media only screen and (max-width: 540px)
{
.minmbb{display:none !important;}
}
@media only screen and (max-width: 767.9px)
{
.mintb{display:none !important;}
}
@media only screen and (max-width: 799.9px)
{
.mintbb{display:none !important;}
}
@media only screen and (max-width: 1023.9px)
{
.minpc{display:none !important;}
}

@media print, screen and (min-width: 375.1px)
{
.maxmbb{display:none !important;}
}
@media print, screen and (min-width: 414.1px)
{
.maxmb{display:none !important;}
}
@media print, screen and (min-width: 540.1px)
{
.maxmbb{display:none !important;}
}
@media print, screen and (min-width: 768px)
{
.maxtb{display:none !important;}
}
@media print, screen and (min-width: 800px)
{
.maxtbb{display:none !important;}
}
@media print, screen and (min-width: 1024px)
{
.maxpc{display:none !important;}
}

.fixf2 {
    position: fixed;
    bottom: 0;
    margin: 0;
    width: 100%;
	max-width:900px;
    z-index: 1000;
	left:0;
}
@media print, screen and (min-width: 900px){
.fixf2 {left: calc(50% - 450px); left: -webkit-calc(50% - 450px); bottom: 10px;}	
}
.minimenu {
  list-style: none;
  overflow: hidden;
	background-color:#fff;
}
.minimenu li {
  width: calc(50% - 2px);
  width: -webkit-calc(50% - 2px);
  text-align: center;
  background-color:var(--color-f);
  float: left;
  line-height: 1.3;
  margin-right: 2px;
  margin-bottom: 2px;
  padding: 0.5em 0;
}
/*.minimenu li:last-child {width: calc(100% - 2px); width: -webkit-calc(100% - 2px);}*/
.minimenu li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
	display: block;
}
.minimenu li a br{display:none;}

@media print, screen and (min-width: 541px)
{
.minimenu li {width: calc(16.666% - 2px); width: -webkit-calc(16.666% - 2px);}
/*.minimenu li:last-child {width: calc(20% - 2px); width: -webkit-calc(20% - 2px);}*/
}
@media print, screen and (min-width: 541px) and (max-width: 911px)
{
.minimenu li a br{display:block;}
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
#page-top{
  display: block;
  position: fixed;
  z-index: 9999;
  bottom: 120px;
  right: 10px;
    width: 2.2em;
    height: 2.2em;
    line-height: 2.2em;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
  text-decoration: none;
  transition: .5s;
}
@media print, screen and (min-width: 541px) and (max-width: 911px)
{
#page-top{bottom: 65px;}
}
@media print, screen and (min-width: 911.1px)
{
#page-top{bottom: 45px;}
}

#page-top{background:var(--color-c);}
#page-top:hover{background: var(--color-b);}
#page-top a
{
  font-size:1em;
  color:#fff;
  text-decoration:none;
}
#page-top a:hover
{
  font-size:1.1em;
  color:#fff;
}