body {
  font-family: 'Murecho', sans-serif;  margin: 0;
  padding: 0;
  background-color: #4193A6;
  color: #fff;
}
html, body {
  height:100%;
}
a {
  text-decoration: none;
}
.contents{
  padding-top: 60px;
}
.contents h2 {
  font-family: "Avenir Next";
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0;
}
#avenir{
  font-family: "Avenir Next";
}
h3{
  color: red;
}
li{
  font-size: 0.9rem;
}

@media screen and (min-width: 768px){
  .contents h2{
    font-size: 3rem;
  }
  .map_center{
    text-align: center;
  }
  .img_item{
    width: 60%;
    height: 400px;
    object-fit: cover;
    border: 1px solid #4193A6;
  }
}

@media screen and (max-width:767px){/*iPhone*/
  .contents h2{
    font-size: 3rem;
  }
  .map_size{
    width: 100%;
  }
  .img_item{
    width: 100%;
    border: 1px solid #4193A6;
  }
  .map_center{
    text-align: center;
  }
  .map_ul{
    padding-left: 0;
  }
  .map_ul p{
    font-size: 0.8rem;
  }
}

.contents_1{
  padding: 10px 15px 0px 15px;
  color: black;
}
.wrapper li {
  padding: 0.5rem 5px;
  font-size: 1rem;
  line-height: 1.8rem;
}
#book li{
    font-size: 0.8rem;
    padding: 0 10px;
    overflow-wrap: anywhere;
    list-style-position: inside;
  }

@media screen and (min-width: 768px){/* PC */
  .wrapper  li{
    font-size: 1.3rem;
    line-height: 2rem;
    padding: 0.8rem 10px;
  }
#book li{
    font-size: 1rem;
    line-height: 0.5rem;
    padding: 0.8rem 10px;
  }

}




ol{
  padding: 15px 10px 15px 5px;
  border: 2px #86a9b4 dashed;
  background-color: #fff;
  border-radius: 20px;
}
h1{
  text-align: center;
  font-size: 0.8rem;
  color: #fff;
}
#first {
  color: red;
  font-weight: bold;
}

@media screen and (min-width: 768px){
  ol{
    padding: 35px 80px 35px 80px;
  }
  h1{
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
  }
}

#hamburger .btn-gNav{
  position: fixed;
  top: 15px;
  right: 30px;
  width: 10%;
  height: 30px;
  z-index: 3;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  color: black;
}

#hamburger .btn-gNav span{
  position: absolute;
  width: 100%;
  height: 3px;
  background: black;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
#hamburger .btn-gNav span:nth-child(1) {
  top:0;
}
#hamburger .btn-gNav span:nth-child(2) {
  top:15px;
}
#hamburger .btn-gNav span:nth-child(3) {
  top:30px;
}
#hamburger .btn-gNav.open span:nth-child(1){
  background: #fff;
  top: 15px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
#hamburger .btn-gNav.open span:nth-child(2),#hamburger .btn-gNav.open span:nth-child(3){
  top: 15px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
#gNav{
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #4193a6;
  font-size: 2rem;
  box-sizing: border-box;
  z-index: 2;
  padding-top: 100px;
  transition: 0.1s;
}
#gNav.open{
  right: 0px;
}
#gNav .gNav-menu{
  font-size: 15px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#gNav .gNav-menu li{
  display: block;
  padding: 13px 30px;
  border-bottom: 1px solid #eff1f4;
}
#gNav .gNav-menu li a{
  display: block;
  padding: 0px 5px;
  text-decoration: none;
  color: white;
}

@media screen and (min-width:768px){
  .btn-gNav{
    display: none;
  }
  #gNav{
    position: fixed;
    top: 0;
    right: 0;
    height: 70px;
    width: 100%;
    font-size: 1rem;
    display: block;
    padding-top: 0;
  }
  #gNav .gNav-menu{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 10%;
    position: fixed;
    top: 0;
    right: 0;
    padding-left: 50px;
  }
  #gNav .gNav-menu li{
    display: block;
    padding: 7px 30px 0 30px;
    border-bottom: none;
  }
  #gNav .gNav-menu li a{
    display: block;
    padding: 0 6px;
    color: #fff;
    text-decoration: none;
  }
}



/*tabの形状*/
.tab{
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.tab li a{
  display: block;
  background: #fff;
  border-radius: 10px;
  margin:0 2px;
  padding:10px 20px;
  color: black;
  font-weight: bold;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
  background: #fff;
  border: solid #d93223 1px;
  border-radius: 10px;
  color: #d93223;
}


/*エリアの表示非表示と形状*/
.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
  background: #fff;
  padding:10px 20px;
  border-radius: 10px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.wrapper{
  width:100%;
  max-width: 1000px;
  border-radius: 10px;
  margin:30px auto;
  background:#fefefe;
}

.area h2{
  font-size:1.5rem;
  margin:0 0 20px 10px;
  color: #D93223;
}
.area li{
  color: black;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
.area p{
  color: black;
  padding: 10px;
}
#map .area h3{
  color: #D93223;
  padding: 10px 0 0 10px;
  font-size: 1rem;
  font-weight: bold;
}
#pc a {
  text-decoration: underline;
  color: black;
  padding:0 0 0 10px;
}
#menu a{
  text-decoration: underline;
  color: black;
  font-weight: bold;
  font-size: 0.9rem;
}
#menu li{
  list-style-type: square;
}
#O_font {
  font-family:serif;
  font-size: 1rem;
}

@media screen and (min-width: 768px){
  #menu a{
    text-decoration: underline;
    color: black;
    font-weight: bold;
    font-size: 1.2rem;
  }
  .area h2{
    font-size:2rem;
    margin:0 0 20px 10px;
    color: #D93223;
  }
}
.footerFixed {
  position: relative;
  padding-bottom: 20px;
  box-sizing: border-box;
}
.link a {
  color: white;
  opacity: 0.7;
  font-size: 0.8rem;
}
footer{
  position:absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
footer p {
  color: white;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}
@media screen and (min-width: 768px){ /*PC*/
  footer p {
    font-size: 1rem;
  }
  .footerFixed header{
    padding-left: 200px;
    padding-bottom: 10px;
    text-decoration: underline;
  }
  .footerFixed header a:hover{
    color: #D93223;
    opacity: 1;
  }
  .link a{
    color: white;
    opacity: 0.7;
    font-size: 1rem;
  }
  .link li{
    padding-left: 10px;
  }
  .link {
    color: white;
    opacity: 0.7;
    font-size: 0.8rem;
  }
}

#pc a:hover{
  color: red;
}
#pc h1{
  text-align: left;
  color: #152026;
  padding: 1px;
  font-size: 1.1rem;
  font-weight: bold;
}
#map p{
  text-align: center;
}

@media screen and (max-width:767px){/*iPhone*/
 #pc p{
   font-size: 0.8rem;
 }
 #pc h1,h3,a{
   font-size: 0.9rem;
 }
 #pc h2{
   font-size: 1.3rem;
 }
}
