@charset "utf-8";

header {
  /* background-color: cadetblue; */
  /* width: auto; */
  width: 100%;
  /* height: 100px; */
  height: auto;
  padding: auto;
  margin-top: 20px;
  margin-bottom: 50px;
}

header .logo {
  height: 20px;
}

header .menu ul {
  display: flex;
  list-style: none;
  letter-spacing: 5px;
  justify-content: center;
  margin-top: 20px;
  background-color: skyblue;
  /* min-width: 800px; */
}

header .menu ul li {
  border: 6px solid skyblue;
  border-width: 16px;
  background-color: skyblue;

}

header .menu ul li a {
  text-decoration: none;
  color: azure;
}

header .menu ul li a:hover {
  color: skyblue;
  background-color: azure;
}

body {
  /* background-color: beige; */
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

body main {
  margin: 80px 60px 0;
}

body main h1 {
  margin: 50px 60px 0 ;
}

body .main_img {
  max-width: 800px;
  margin: auto;
  padding-bottom: 40px;
}

body main p {
  margin-bottom: 50px;
  line-height: 40px;
  font-size: 20px;
}

body main ul {
  list-style: none;
  font-size: 0;
  text-align: center;
}
body main li {   
  margin: 5px;
  display: inline-block;
}
body main .gallery .item  img {
  width: 150px;
  height: 150px;
}
figcaption {
  padding-top: 5px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 50px;
}

.event .wrapper  h1 {
  margin: 80px 60px 0 ;
}

.event .wrapper p {
  margin-bottom: 50px;
  line-height: 40px;
  font-size: 20px;
}

main .access {
  display: flex;
}

#table2 {
  width: 100%;
  /* width: 50%; */
  margin: 0 auto;
}


#table1 {
  width: 50%;
  /* width: 50%; */
  margin: 0 auto;
}

main table th {
  background-color: skyblue;
  line-height: 40px;
}

main table td {
  background-color: lightblue;
}

main .map {
  margin: 0 auto;
  width: 50%;
}

.container {
  display: inline-block;
  width: auto;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.tool {
  display: flex;
  margin-bottom: 60px;
}

.tool a {
  font-size: 20px;
  line-height: 80px;
  color: skyblue;
}

.tool a:hover {
  color: #333;
}


footer {
  background-color: skyblue;
  text-align: start;
  padding-left: 30px;
}

footer .mogumogu {
  font-size: 20px;
}

/*==================================================
スライダーのためのcss
===================================*/

/*画像の横幅を100%にしてレスポンシブ化*/
.event img{
	width: 100%;
	height: auto;
  max-width: 800px;
  margin: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/
.event .gallery{
	margin:0 0 5px 0;
}

.event .gallery li{
list-style:none;
}
/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.event .slick-prev, 
.event .slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.event .slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.event .slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.event .choice-btn li{
	cursor: pointer;
	outline: none;
	background:#333;
list-style:none;
}

.event .choice-btn li img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.event .choice-btn li.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}

