body {
	position: relative;
}
a:link, a:visited {
	color: #666;
	text-decoration: none;
}
a:hover {
	color: #2e58a6;
	text-decoration: none;
}
a.anchor {
    display: block;
    padding-top: 80px;
    margin-top: -80px;
}
.auto {
	width:100%;
	height: auto;
}
.red {
	color: #f00;
}
.blue {
	color: #00f;
}
.narrow {
	letter-spacing: -.1rem;
}

.mobile{
	display: none;
}
.pc {
	display: block;
}
@media (max-width: 767px) {
	.mobile {
		display: block;
	}
	.pc {
		display: none;
	}
}

/* layout */
video {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 1;
}
.screen {
	position: relative; /*必ず必要*/
	z-index: 2; /*必ず必要*/
	background: rgba(255,255,255,.6);
}

header {
	width:100%;
	height: 172px;
	position: fixed;
	top:0;
	background: #fff;
	box-shadow: 3px 0px 3px 0 #333;
	z-index: 999;
}
header h1 {
	font-size: 16px;
	color: #2e58a6;
	font-weight: normal;
	padding-top:20px;
}

header .nav_main {
	margin: 20px 0 10px;
	padding: 0;
}
header .nav_main ul {
	text-align: right;
	margin-bottom: 10px;
}
header .nav_main li {
	display: inline;
}
header .nav_main address {
	font-size: 60%;
	text-align: right;
}
header .nav_main address .tel {
	font-size: 300%;
	font-weight: bold;
	color: #2e58a6;
}
header .nav_main address span {
	font-size: 150%;
}
header .menu {
	position: fixed;
	top:10px;
	right:30px;
}
header .open {
	position: fixed;
	top:110px;
	right:10px;
	width:150px;
	z-index: 9999;
}
header .info {
	position: fixed;
	top:100px;
	left:0px;
	width:100%;
        margin-top: 40px;
	padding: .3rem 1rem;
	height: 1.4rem;
	box-sizing: content-box;
	background: rgba(46,88,166,.5);
	/*z-index:-1;*/
	overflow: hidden;
}
header .info .line {
    width: 100%;
	color: #fff;
    padding-left: 100%;
    white-space: nowrap;
    animation-name: marquee;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes marquee {
    from    { transform: translate(0%); } 
    100%,to { transform: translate(-170%); }
}
@media (max-width: 1200px) {
}

@media (max-width: 767px) {
	header .info .line {
    	animation-duration: 10s;
	}
	@keyframes marquee {
    	from    { transform: translate(0%); } 
    	100%,to { transform: translate(-250%); }
	}
}


/* humberger menu*/
#nav-drawer {
	position: relative;
	text-align: right;
	padding-top:.5rem;
	margin-right:-1rem;
}

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

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 50px;
  height: 50px;
  vertical-align: middle;
}

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

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 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%);/*左に隠しておく*/
	text-align: left;
}

/*チェックが入ったらもろもろ表示*/
#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);
}

#nav-content ul {
	margin: 1rem;
	padding: 0;
}
#nav-content ul li {
	list-style: none;
	border-bottom:1px dotted #ccc;
	padding: 1rem;
	margin: 0;
}

main {
	margin-top:100px;
}

main a:link, main a:visited {
	color: #666;
}
main .container {
	padding: 2rem 4rem;
}
@media (max-width: 767px) {
	main .container {
		padding: 1rem;
	}
}
main .dot_box {
	border: 1px dotted #ccc;
	padding: 1rem;
	margin: 1rem;
}
main h2 {
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-size: 120%;
	margin: 5rem 0 5rem;
	height: 0;
	position: relative;
	text-align: center;
}
main h2 div.line {
	border-top:1px dotted #999;
	height: 0;
}
main h2 span {
	display: inline-block;
	position: absolute;
	box-sizing: border-box;
	top:-1rem;
	left:50%;
	margin-left:-7.5rem;
	width:15rem;
}
main h2 span small {
	font-size: 30%;
}

main h3 {
	border: none;
	background: #eee;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-size: 110%;
	text-align: center;
	font-weight: normal;
	padding:.7rem;
	margin: 1rem 0;
}
main p {
	margin: 1rem 0;
}
main table {
	width:100%;
	border:1px solid #ccc;
}
main table th {
	border:1px solid #ccc;
	padding: .5rem;
	vertical-align: top;
}
main table td {
	border:1px solid #ccc;
	padding: .5rem;
	vertical-align: top;
}

@media (min-width: 992px) {
	/* PCのとき */
}

footer {
	background: #fedc9c;
	padding: 3rem 0;
}
footer a:link, footer a:visited {
	color: #000;
}
footer .nav_footer {
	text-align: center;
}
footer .logo {
	line-height: 1.1em;
}
footer .address {
	font-size: 75%;
}
footer .address strong{
	font-size: 150%;
	display: inline-block;
	padding-top: .5rem;
}
@media (max-width: 767px) {
}

.page_top {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width:88px;
	background: #ccea97;
	border:2px solid #80c41c;
	border-radius: 10px;
	text-align: center;
	color: #80c41c;
	padding: 10px;
}
.pop {
	position: fixed;
	bottom: 10px;
	right: 50px;
	width:300px;
	z-index: 9999;
}

/* individual */
.box01 {
	margin-top:172px;
	/*background: rgba(255,255,255,.2*/
	width:100%;
}
.box01 ul {
}
.box01 ul, .box01 li {
	margin: 0;
	padding: 0;
}
.box01 .bx-wrapper {
	box-shadow: none;
	border:none;
}

@media (max-width: 767px) {
	/* SPのとき */
	/*.slider {
		overflow: hidden;
		text-align: center;
	}
	.slider .bx-wrapper .bx-prev {
		display: none;
	}
	.slider .bx-wrapper .bx-next {
		display: none;
	}*/
}

.box02 {
	padding: 0 0 2rem;
	margin-top:-60px;
	/*background: rgba(255,255,255,.2);*/
}
.box02 .info {
	background: rgba(255,193,0,1.00);
	color: #000;
	text-align: center;
	padding: .5rem;
}
.box02 dl {
	border-bottom: 1px solid #80c41c;
}
.box02 dt {
	border-top: 1px solid #80c41c;
	margin: 0;
	padding: 1rem 1rem 1rem 30px;
	background: no-repeat url("images/common_icon01.png");
	background-position: 5px 1rem;
	width:20%;
	float: left;
}
.box02 dd {
	border-top: 1px solid #80c41c;
	margin: 0;
	padding: 1rem;
	width:80%;
	float: left;
}

@media (max-width: 767px) {
	.box02 dt {
		border-top: 1px solid #80c41c;
		width:100%;
		float: none;
	}
	.box02 dd {
		border-top: none;
		width:100%;
		float: none;
	}
}



.box03 {
	padding: 2rem 0;
	background: rgba(128,196,28,.2);
}
.box03 table, .box03 table th, .box03 table td, .box03 table tr {
	background: none;
	border: none;
}
@media (max-width: 767px) {
	.box03 table, .box03 table th, .box03 table td, .box03 table tr {
		display: block;
	}
}

.box04 {
	padding: 2rem 0;
	background: rgba(46,88,166,.2);
}

.box04 ul li {
	padding: 1rem;
	line-height: 130%;
}
.box04 ul li span {
	display: block;
	padding: 1rem;
	border:2px solid rgba(46,88,166,1);
	background: #fff;
	height: 27em;
}
.box04 ul li strong {
	display: block;
	color: rgba(46,88,166,1);
	text-align: center;
	font-size: 180%;
	padding: 2rem 0;
	font-weight: normal;
}
.box04 ul li img {
	margin:1rem 0;
}

.box05 {
	padding: 3rem 0;
	background: rgba(207,70,160,.2);
}
.box05 .strong {
	text-align: center;
	font-size: 140%;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.box05 dl {
	clear: both;
	position: relative;
}
.box05 dt.box_left {
	position: absolute;
	top:150px;
	left: 0;
	width:40%;
	box-sizing: border-box;
	padding: 1rem;
	background:#fff;
	font-weight: normal;
	z-index: 10;
}
.box05 dt.box_right {
	position: absolute;
	top:150px;
	left: 60%;
	width:40%;
	box-sizing: border-box;
	padding: 1rem;
	background:#fff;
	font-weight: normal;
	z-index: 10;
}
.box05 dt strong {
	display: block;
	font-size: 150%;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	padding: 0 0 1rem;
}
.box05 dd.box_left {
	margin: 30px 20% 0 0;
	width:80%;
}
.box05 dd.box_right {
	margin: 30px 0 0 20%;
	width:80%;
}

@media (max-width: 767px) {
	.box05 dt.box_left {
		position: relative;
		top:0;
		left: 0;
		width:90%;
		font-size: 90%;
	}
	.box05 dt.box_right {
		position: relative;
		top:0;
		left: 0;
		width:90%;
		font-size: 90%;
	}
	.box05 dt strong {
		font-size: 100%;
	}
	.box05 dd.box_left {
		margin: 10px 10px 10px 0;
		width:100%;
	}
	.box05 dd.box_right {
		margin: 10px 10px 10px 0;
		width:100%;
	}
}

.box06 {
	padding: 2rem 0;
	background: rgba(128,196,28,.2);
}
.box06 p.strong {
	font-size: 150%;
}
.box06 table {
	font-size: 130%;
}
.box06 table th, .box06 table td {
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	padding: 1rem;
}
.box06 .tel {
	color:rgba(128,196,28,1);
	font-size: 200%;
	font-weight: bold;
}

.box07 p.strong {
	font-size: 150%;
}
.box07 table {
	font-size: 130%;
}
.box07 table th, .box07 table td {
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
}
.box07 .tel {
	color:rgba(128,196,28,1);
	font-size: 200%;
	font-weight: bold;
}
	

@media (max-width: 767px) {

}

img {
	max-width: 100%;  /* 横幅に合わせて自動縮小するが、拡大はしない */
}

iframe {
  border: 0px solid #2e58a6;
  width: 100%; /* takes precedence over the width set with the HTML width attribute */
}