@charset "UTF-8";
/*====================reset css=========================*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, small, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
  font-weight: normal;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
nav, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}


ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
/* change colours to suit your needs */

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* change border colour to suit your needs */

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
img {
 max-width: 100%;
  vertical-align:top;
}
em {
  font-style: normal;
}
a:hover {opacity: 0.7;}

@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

/*====================reset css=========================*/

/* clearfix */

.clearfix:before, .clearfix:after {
	content: "";
	display: block;
}
.clearfix:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}
.clearfix {
	zoom: 1;
	display: block;
}
* html .clearfix {
	display: inline-block;
}
/* no ie mac \*/

* html .clearfix {
	height: 1%;
	clear: both;
}
/*==================== page css =========================*/

.txt_c {
	text-align: center;
}
.txt_l {
	text-align: left;
}
.txt_r {
	text-align: right;
}
.fl {
	float: left;
}
.fr {
	float: right;
}

/*==================== accodeion =========================*/
.accordion-control {
  display: block;
  position: relative; }
.accordion-panel {
  display: none; }


/*==================== mordal =========================*/
.modal{
   display: none;
    height: 100vh;
    position: fixed;
    top: 0;
  left:0;
    width: 100%;
   z-index: 100;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
  z-index: 101;
	}
.modal__content #cam_attention {
	width: 100%;
}
.modal__content .close_box {
	padding: 10px 0;
	text-align: center;
}
.modal__content .close_box .js-modal-close {
	display: block;
	width: 15%;
	margin: auto;
	padding: 1rem;
	background: #666;
	color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
}

@media only screen and (max-width: 750px) {
	.modal__content{
    width: 96%;
	top: 30%;
	transform: translate(-50%,-30%);
	box-sizing: border-box;
	}
.modal__content .close_box .js-modal-close {
	width: 8rem;
	}
}