@charset "utf-8";
/*
  CSS のみのドロップダウンメニュー
  Copyright Rectus Inc, 2019
  https://www.rectus.co.jp/
 */
body{
	font-family: 'Kosugi Maru', sans-serif;
}
body {
   margin: 0;
   padding: 0;

}


#page_top{
  z-index: 1;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #CDAC00;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/* 基本CSS */
ul,
div,
img {
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-weight: normal;
}
a{
	color: #008DCE;
}
a:hover{
	color: #CDAC00;
}


#navi {
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  color: #008DCE;
}
/* チェックボックスを非表示 */
#navi input {
  display: none;
}
/* 左上ロゴ */
.menu-left {
  float: left;
}
.menu-left img {
  vertical-align: middle;
  margin-left: 10px;
  margin-top: 10px;
}
/* 上部メニュー */
.menu {
  float: right;
  margin-right: 10px;
}
.menu-parent {
  float: left;
  margin-right: 30px;
  line-height: 60px;
  font-size: 17px;
  font-weight: bold;
  white-space: nowrap;
}
/* パソコンでは V を非表示 */
.menu-parent .pd {
  display: none;
}
/* 上部メニューの最後の項目 */
.menu-parent:last-child {
  margin-right: 0px;
}

#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}

@media screen and (max-width: 750px) {
  /* スマホの際に V を表示 */
  .menu-parent .pd {
    display: inline-block;
    width: 100%;
  }
  .menu {
    display: none;
  }
  .menu-parent {
    height: auto;
    width: 100%;
    padding: 0px 20px;
    border-bottom: 1px solid #DDD;
  }
  .menu-parent:first-child {
    border-top: 1px solid #DDD;
  }
  .menu-parent i {
    padding: 0px 6px;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
}

/* ドロップダウンメニュー */
.menu-parent {
  position: relative;
}
.menu-parent .menu-child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  margin-left: -40px;
  width: auto;
　-webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px 20px;
  background-color: #FFF;
  border: 1px solid #000;
}
/* パソコン用 */
@media screen and (min-width: 750px) {
  .menu-parent:hover .menu-child {
    visibility: visible;
    opacity: 1;
  }
}
/* スマホ用 */
@media screen and (max-width: 750px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * .menu {
    display: block;
    opacity: 1;
  }
  #menu-navibtn:checked ~ * .menu-parent {
    max-height: inherit;
    overflow-y: visible;
  }
  #menu-navibtn:checked ~ * .menu-child {
    max-height: 0;
    overflow-y: hidden;
    visibility: hidden;
  }
  /* 子メニュー */
  .menu-parent .menu-child {
    border-top: 1px solid #DDD;
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    position: relative;
    padding: 0 20px;
    opacity: 1;
    top: 0;
    margin-left: auto;
    left: auto;
    width: auto;
  }
  .menu-parent > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  /* 子メニューがクリックされた時 */
  #navi input[type="checkbox"]:checked ~ .menu-child {
    max-height: inherit;
    overflow-y: visible;
    visibility: visible;
  }
  .angletoggle:before {
    content: "\f107";
  }
  #navi input[type="checkbox"]:checked ~ * .angletoggle:before {
    content: "\f106";
  }
}

/* 子メニュー */
.menu-child li {
  font-size: 14px;
  border-bottom: 1px solid #DDD;
}
/* 余分な最後の線を消去 */
.menu-child li:last-child {
  border: none;
}
.menu-child li i {
  margin-right: 3px;
}

/* ハンバーガー */
#navi #navibtn {
  display: none;
}
@media screen and (max-width: 750px) {
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  #navibtn span {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #5D5D5D;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before,
  #navibtn span span::after,
  #navibtn span::after {
    position: absolute;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #FFF;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top:10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top:19px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom:10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom:18px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  /* 中の棒 */
  #navibtn span span::after {
    top:18px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none;
  }
}

@media screen and (max-width: 750px) {
#contentssp{
	  position: relative;
  width: 100%;
}

#contentssp img {
  position: absolute;
  margin-top: 60px;
  width: 100%;
  height: auto;
  opacity: 0;
  animation :slideshow 1s  infinite;
  animation-direction: alternate-reverse;
}

#contentssp img:nth-child(2){
  animation-delay: 1s;
}

#contentssp img:last-child{
  animation-delay: 1s;
}
}


#contents {
  position: relative;
  width: 100%;
}

@keyframes slideshow{
  0%{
    opacity: 1;
  }
  38%{
    opacity: 1;
	 
	}
  
  48%{
    opacity: 1;
	 
	}
    55%{
    opacity: 1;
	 
	}
  
 

}

#contents img {
  position: absolute;
  margin-top: 60px;
  width: 100%;
  height: auto;
  opacity: 0;
  animation :slideshow 1s  infinite;
  animation-direction: alternate-reverse;
}

#contents img:nth-child(2){
  animation-delay: 1s;
}

#contents img:last-child{
  animation-delay: 1s;
}

@media screen and (max-width: 750px) {
	#contents{
		display: none;
	}
	#contentssp{
		display: block;
	}
	}
@media screen and (min-width: 750px) {
	#contents{
		display: block;
	}
	#contentssp{
		display: none;
	}
	}

@media(max-width:750px) {
div#title {
  position: absolute;/*絶対配置*/
  top:30%;
  left: 100px;
   color: #008DCE;
  line-height: 45px;
  font-size:20px;
  }
}



@media(min-width:750px) {
div#title {
	margin-top: 15%;
	margin-left: 38%;
    position: absolute;/*絶対配置*/
    font-size: 2vw;
    color: #008DCE;
    letter-spacing: 0.5em;
	line-height: 47px;
  }
}
@media screen and (max-width: 750px) {
	
div#yajirusi{
	margin-top: 600px;
	text-align: center;
	margin-bottom: -500px;
}
	#pcyajirusi{
		display: none;
	}
	#yajirusi{
		display: block;
	}
	}
@media screen and (min-width: 750px) {
	div#pcyajirusi{
	margin-top: 830px;
	text-align: center;
	margin-bottom: -600px;
}
	#pcyajirusi{
		display: block;
	}
	#yajirusi{
		display: none;
	}
	}




@media(min-width:750px) {
.couple{
	margin-left: 60%;
	margin-top: -32%;
	margin-bottom: 200px;
}
}

@media(max-width:750px) {
.couple img{
	margin:4rem; 
	max-width: 250px;
	margin-top: 5%;
	margin-bottom: 200px;
	margin-left: 100px;
}

h2{
  line-height: 40px;
  margin-top: 600px;
  color: #008DCE;
  font-size: 24px;
 text-align: left;
	margin-left: 25px;
	}
	
	p#one{
	color: #008DCE;
	word-wrap: break-word;
	margin-top: 40px;
	line-height: 35px;
	text-align: left;
	font-size: 16px;
		margin-left: 25px;
		margin-right: 25px;
	}}
 
@media(min-width:750px) {
h2 {
	margin-top: 850px;
    font-size:  25px;
	margin-left: 25%;
	line-height: 40px;
	color: #008DCE;
  }


p#one{
	color: #008DCE;
	width: 400px;
	word-wrap: break-word;
	margin-left: 25%;
	margin-top: 60px;
	line-height: 35px;
	text-align: left;
	margin-bottom: 200px;
}}


h3{
  margin-top: 100px;
  color: #008DCE;
  letter-spacing: 0.5em;
  font-size: 8vw;
}
 
@media(min-width:750px) {
h3 {
    font-size:  40px;
  }
}
	p#two{
	color: #008DCE;
	margin-top: 70px;
	line-height: 30px;
	text-align: center;
	font-size: 16px;
		margin-left: 2px;
		margin-right: 2px;
	margin-bottom: 40px;
}
h4{
  margin-top: 100px;
  color: #008DCE;
  letter-spacing: 0.5em;
  font-size: 8vw;
}
 
@media(min-width:750px) {
h4 {
    font-size:  40px;
  }
}
h5{
  margin-top: 200px;
  color: #008DCE;
  letter-spacing: 0.5em;
  font-size: 8vw;
}
 
@media(min-width:750px) {
h5 {
    font-size:  40px;
  }
}
.contents2 {
     width: 100%;
     max-width: 1600px;
     margin: auto;
 }
 .contents2 img {
     width: 100%;
 }

 .flexbox {
     display: flex;

 }
 .box1 {
     width: 70%;
     margin: 10px;
 }
 .box2 {
     width: 70%;
     margin: 10px;
 }
 .box3 {
     width: 70%;
     margin: 10px;
 }
 .box4 {
     width: 70%;
     margin: 10px;
 }
 .box5 {
     width: 70%;
     margin: 10px;
 }
 @media screen and (max-width: 750px) {
     .flexbox {
         display: block;
     }
     .flexbox .box1 {
         width: 90%;
		 margin-right: 0px;
		 margin-left: 18px;
         margin-bottom: 10px ;
     }
     .flexbox .box2 {
         width: 90%;
		 		 margin-right: 0px;
		 margin-left: 18px;
         margin-bottom: 10px;
     }
	      .flexbox .box3 {
         width: 90%;
		margin-right: 0px;
		 margin-left: 18px;
         margin-bottom: 10px;
     }
     .flexbox .box4 {
         width: 90%;
		 		 margin-right: 0px;
		 margin-left: 18px;
         margin-bottom: 10px;
     }
      .flexbox .box5 {
         width: 90%;
		  		 margin-right: 0px;
		 margin-left: 18px;
         margin-bottom: 10px;
     }
 }

.box1 {
	width:			70%;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.box1 .caption {
	font-size:		16px;
	line-height: 30px;
	color:			#fff;
	text-align: 		center;
	padding-top:		80px;
}
.box1 .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateX(-180deg);
	transform:		rotateX(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.box1:hover .mask {
	-webkit-transform:	rotateX(0deg);
	transform:		rotateX(0deg);
	opacity:		1;	/* ホバーで表示する */
}

 @media screen and (max-width: 750px) {
	 .box1 {
	width:			100%;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.box1 .caption {
	font-size:		14px;
	line-height: 30px;
	color:			#fff;
	text-align: 		center;
	padding-top:		130px;
}
.box1 .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateX(-180deg);
	transform:		rotateX(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.box1:hover .mask {
	-webkit-transform:	rotateX(0deg);
	transform:		rotateX(0deg);
	opacity:		1;	/* ホバーで表示する */
}
}
.box2 {
	width:			70%;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.box2 .caption {
	font-size:		16px;
	line-height: 30px;
	color:			#fff;
	text-align: 		center;
	padding-top:		80px;
}
.box2 .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateX(-180deg);
	transform:		rotateX(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.box2:hover .mask {
	-webkit-transform:	rotateX(0deg);
	transform:		rotateX(0deg);
	opacity:		1;	/* ホバーで表示する */
}

 @media screen and (max-width: 750px) {
	 .box2 {
	width:			100%;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.box2 .caption {
	font-size:		14px;
	line-height: 30px;
	color:			#fff;
	text-align: 		center;
	padding-top:		130px;
}
.box2 .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateX(-180deg);
	transform:		rotateX(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.box2:hover .mask {
	-webkit-transform:	rotateX(0deg);
	transform:		rotateX(0deg);
	opacity:		1;	/* ホバーで表示する */
}
}
.box3 {
	width:			70%;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.box3 .caption {
	font-size:		16px;
	line-height: 30px;
	color:			#fff;
	text-align: 		center;
	padding-top:		80px;
}
.box3 .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateX(-180deg);
	transform:		rotateX(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.box3:hover .mask {
	-webkit-transform:	rotateX(0deg);
	transform:		rotateX(0deg);
	opacity:		1;	/* ホバーで表示する */
}

 @media screen and (max-width: 750px) {
	 .box3 {
	width:			100%;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.box3 .caption {
	font-size:		14px;
	line-height: 30px;
	color:			#fff;
	text-align: 		center;
	padding-top:		130px;
}
.box3 .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateX(-180deg);
	transform:		rotateX(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.box3:hover .mask {
	-webkit-transform:	rotateX(0deg);
	transform:		rotateX(0deg);
	opacity:		1;	/* ホバーで表示する */
}
}
.box4 {
	width:			70%;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.box4 .caption {
	font-size:		16px;
	line-height: 30px;
	color:			#fff;
	text-align: 		center;
	padding-top:		80px;
}
.box4 .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateX(-180deg);
	transform:		rotateX(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.box4:hover .mask {
	-webkit-transform:	rotateX(0deg);
	transform:		rotateX(0deg);
	opacity:		1;	/* ホバーで表示する */
}

 @media screen and (max-width: 750px) {
	 .box1 {
	width:			100%;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.box4 .caption {
	font-size:		14px;
	line-height: 30px;
	color:			#fff;
	text-align: 		center;
	padding-top:		130px;
}
.box4 .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateX(-180deg);
	transform:		rotateX(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.box4:hover .mask {
	-webkit-transform:	rotateX(0deg);
	transform:		rotateX(0deg);
	opacity:		1;	/* ホバーで表示する */
}
}

.box5 {
	width:			70%;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.box5 .caption {
	font-size:		16px;
	line-height: 30px;
	color:			#fff;
	text-align: 		center;
	padding-top:		80px;
}
.box5 .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateX(-180deg);
	transform:		rotateX(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.box5:hover .mask {
	-webkit-transform:	rotateX(0deg);
	transform:		rotateX(0deg);
	opacity:		1;	/* ホバーで表示する */
}

 @media screen and (max-width: 750px) {
	 .box5 {
	width:			100%;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.box5 .caption {
	font-size:		14px;
	line-height: 30px;
	color:			#fff;
	text-align: 		center;
	padding-top:		130px;
}
.box5 .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateX(-180deg);
	transform:		rotateX(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.box5:hover .mask {
	-webkit-transform:	rotateX(0deg);
	transform:		rotateX(0deg);
	opacity:		1;	/* ホバーで表示する */
}
}
.gmap{
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}

.gmap iframe, .gmap object, .gmap embed{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}






	.container {
	 margin-top:  60px;
      display: flex;
	  justify-content:space-between;
	  flex-wrap: wrap;
		}
		.box {
	margin: 10px;
      width: 300px;
      height: 300px;
      border: 1px solid #fff;
      background-color: #acc;
      text-align: center;
      line-height: 150px;
	
		}
@media screen and (min-width: 750px) {
.box {
	width:			300px;
	height: 300px;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.box .caption {
	font-size:		16px;
	line-height: 30px;
	color:			#fff;
	text-align: 		center;
	padding-top:		100px;
}
.box .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateX(-180deg);
	transform:		rotateX(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.box:hover .mask {
	-webkit-transform:	rotateX(0deg);
	transform:		rotateX(0deg);
	opacity:		1;	/* ホバーで表示する */
}
}

@media screen and (max-width: 750px) {
		.container {
      display: flex;
	  flex-wrap: wrap;
		}
		.box {
      width: 150px;
      height: 150px;
      border: 1px solid #fff;
      background-color: #acc;
      text-align: center;
      line-height: 150px;
	}
.box img {
width:150px;
height:auto;
}
	.box {
	width:			150px;
	height: 150px;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;
}
.box .caption {
	font-size:		12px;
	line-height: 30px;
	color:			#fff;
	text-align: 		center;
	padding-top:		40px;
}
.box .mask {
	width:			100%;
	height:			100%;
	position:		absolute;
	top:			0;
	left:			0;
	opacity:		0;	/* 表示させない */
	background-color:	rgba(0,0,0,0.4);
	-webkit-transform:	rotateX(-180deg);
	transform:		rotateX(-180deg);
	-webkit-transition:	all 0.6s ease;
	transition:		all 0.6s ease;
}
.box:hover .mask {
	-webkit-transform:	rotateX(0deg);
	transform:		rotateX(0deg);
	opacity:		1;	/* ホバーで表示する */
}
}

.ga{
	margin-top: 100px;
}


div#mark{
	width: 250px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 80px;
}
@media screen and (min-width: 750px) {
div#see{
	margin-left: 150px;
	margin-top: 60px;
	}
	div#surprise{
		text-align: right;
		margin-right: 150px;
		margin-top: -400px;
	}
}
@media screen and (max-width: 750px) {
div#see2{
	margin-left: 30px;
	margin-top: 30px;
	}
	div#surprise2{
		text-align: right;
		margin-right: 20px;
		margin-top: -40px;
	}
}
@media screen and (max-width: 750px) {
	#pcgallery{
		display: none;
	}
	#spgallery{
		display: block;
	}
	}
@media screen and (min-width: 750px) {
	#pcgallery{
		display: block;
	}
	#spgallery{
		display: none;
	}
	}

@media screen and (max-width: 750px) {
	#pcwalk{
		display: none;
	}
	#spwalk{
		display: block;
	}
	}
@media screen and (min-width: 750px) {
	#pcwalk{
		display: block;
	}
	#spwalk{
		display: none;
	}
	}
@media screen and (min-width: 750px) {
div#pcwalk{
	text-align: right;
	margin-right: 180px;
	margin-top: 60px;
	}
}
@media screen and (max-width: 750px) {
div#spwalk{
	text-align: right;
	margin-right: 10px;
	margin-top: 30px;
	}
}

.resizeimage img{
	width: 50%;
}

@media screen and (max-width: 750px) {
.resizeimage img{
	width: 100%;
	}
}


.events {
	margin: 16px auto;
	text-align: center;
	display: block;
}
.events ul {
	padding-left: 0;
	list-style: none;
	display: inline-block;
}
.events ul li {
	text-align: left;
	margin-top: 25px;
	color: #008DCE;
	
}



.events ul li span{
	margin-right: 30px;
}
.events ul li span1{
	margin-right: 35px;
}
.events ul li span2{
	margin-right: 21px;
}


.access {
	padding: 16px auto;
	text-align: center;
	display: block;
	background-color:#1EB0FF;
	

}
.access ul {
	padding-left: 0;
	list-style: none;
	display: inline-block;
	margin: 15px;
}
.access ul li {
	text-align: center;
	margin-top: 10px;
	color:#F0F0F0 ;
	font-size: 14px;
	letter-spacing: 2px;
	padding-bottom:  30px;
	
}
.access img{
	margin: 5px;
}

@media screen and (max-width: 750px) {
.access {
	padding: 16px auto;
	text-align: center;
	display: block;
	background-color:#1EB0FF;
	

}
.access ul {
	padding-left: 0;
	list-style: none;
	display: inline-block;
	margin: 15px;
}
.access ul li {
	text-align: center;
	margin-top: 10px;
	color:#F0F0F0 ;
	font-size: 13px;
	padding-bottom:  30px;
	
}
}

@media screen and (max-width: 750px) {
	#sample{
		display: none;
	}
	#samplesp{
		display: block;
	}
	}
@media screen and (min-width: 750px) {
	#sample{
		display: block;
	}
	#samplesp{
		display: none;
	}
	}
@media screen and (max-width: 750px) {
	#comentspc{
		display: none;
	}
	#comentssp{
		display: block;
	}
	}
@media screen and (min-width: 750px) {
	#comentspc{
		display: block;
	}
	#comentssp{
		display: none;
	}
	} 

#samplesp{
	margin-top: 60px;
}


p#coment{
	margin-top: 160px;
	margin-left: 300px;
	color: #008DCE;
	line-height: 35px;
}
div#coments{
	margin-top: -230px;
	margin-right: 200px;
}
.person{
	margin-top: -250px;
	margin-left: 300px;
}

p#coment2{
		color: #008DCE;
	line-height: 30px;
	font-size: 16px;
	margin-left: 70px;
	margin-top: 50px;
	margin-bottom: 50px;
}

.person2{margin-top: 20px;
	margin-left: 15px;

}
footer {
  margin-top: auto;
		text-align: center;
	font-size: 12px;
	color:#F0F0F0 ;
	background-color:#1EB0FF;
	
}

h6{
  margin-top: 2px;
  color: #008DCE;
  font-size: 20px;
	
}