@charset "UTF-8";
/*! txt */
* {
  letter-spacing: normal;
  box-sizing: border-box;
}

body {
  color: #4d4d4d;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

table {
  table-layout: fixed;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #333;
  text-decoration: none;
}
a img{
  -webkit-transition: .2s;
  transition: .2s;
}
a:hover img{
  opacity: .6;
}

.cf:before, .cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

/*! state */

/*! layout */
#wrapper {
  min-width: 320px;
  background: #eeeff1;
}

#footer{
  width: 100%;
  padding: 210px 0 40px;
  background: #eeeff1;
}
#footer .copyright{
  width: 100%;
  color: #b2b2b2;
  font-size: 12px;
  text-align: center;
}

.gotop{
  position: fixed;
  right: 60px;
  bottom: 100px;
  line-height: 0;
  z-index: 100;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.gotop a img{
  opacity: 0.7;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.gotop a img:hover{
  opacity: 1;
}

@media screen and (min-width: 768px){
  body,html{
    min-width: 1000px;
  }
  body{
    font-size: 14px;
    line-height: 2;
  }
  .is-sp{
    display: none !important;
  }
  #wrapper{
    min-width: 1000px;
  }
}

@media screen and (max-width: 767px){
  .is-pc{
    display: none !important;
  }
	
  #footer{
    width: 100%;
    padding: 8em 0 1em;
    background: #eeeff1;
  }
  #footer .copyright{
    font-size: .9em;
  }
	
	.gotop{
		position: fixed;
		width: 40px;
		right: 5%;
		bottom: 5%;
		line-height: 0;
		z-index: 100;
		-webkit-transition: all .3s;
		transition: all .3s;
	}
	
}

/* modal parts */
.modal-content {
  height: 86%;
  width: 88%;
  top: 50%;
	left: 50%;
  position:fixed;
  display:none;
  z-index:992;
  margin: 0;
  overflow: auto;
  background-color: #fff;
	box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
.modal-overlay {
  z-index:990;
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.8);
}
.modal-open {
}
.modal-open:hover {
  cursor:pointer;
}
.modal-close:hover{
	cursor:pointer;
  opacity: .7;
}
.closebtn:hover {
  cursor:pointer;
}
.modal-close {
  position: fixed;
  display: inline-block;
  vertical-align: middle;
  zoom: 1;
  top: 10%;
  right: 8%;
  width: 3em;
  height: auto;
  cursor: pointer;
	z-index: 1000;
  text-align: center;
  font-size: 12px;
  color: #999;
  -webkit-transition: .3s;
  transition: .3s;
}
.modal-close img{
  display: block;
  margin: 0 auto;
}
/*
.modal-close:before, .modal-close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 3em;
  height: 2px;
  background-color: #000;
}
.modal-close:before{
  transform: rotate(45deg);
}
.modal-close:after{
  transform: rotate(-45deg);
}
*/

/* modal contents */

.modal_inner{
	position: absolute;
  width: 100%;
  max-height: 100%;
  text-align: center;
	padding: 100px 0;
	overflow: auto;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 767px){
  
  .modal-close {
    position: static;
    width: 3em;
    height: auto;
    font-size: 1.1em;
    margin-top: 2em;
  }
  .modal-close img{
    width: 1.5em;
  }
  .modal_inner{
    padding: 3em 5%;
  }

}