@charset "UTF-8";
/* CSS Document */

.inner{
  width: 1200px;
  margin: 0 auto;
}

.calendar{
  text-align: center;
  position: relative;
  padding-bottom: 90px;
}

.area_list + .area_list {
  margin-top: 80px;
}

.area_list h2{
  font-size: 34px;
  line-height: 1;
  margin-bottom: 30px;
}

.area_list dl > div{
  display: flex;
  justify-content: flex-start;
  border-top: 2px solid #242230;
  border-bottom: 2px solid #242230;
}

.area_list dl > div + div{
  margin-top: -2px;
}

.area_list dl dt{
  width: 250px;
  position: relative;
}

.area_list > dl > div > dt{
  background: #d9e9ee;
  /* #e4e6ee #ebe1fa */
}

@media screen and (min-width: 768px) {
  .area_list dt > div{
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
  }
}

.area_list dl h3{
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}

.area_list dt > div a{
  height: 25px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 25px;
  padding: 0 10px;
  margin-top: 5px;
  background: #FFF;
  border-radius: 5px;
  display: inline-block;
}

.area_list .detail{
  width: 600px;
  font-size: 18px;
  line-height: 1.3;
  padding: 15px 30px;
}

@media screen and (min-width: 768px){
  .area_list .detail > div{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
}

.area_list .detail p.place{
  min-width: 250px;
  display: inline-block;
}

.area_list .detail a{
  line-height: 1;
  padding: 2px 0 0 22px;
  display: inline-block;
  position: relative;
}

.area_list .detail a::before{
  content: "";
  width: 20px;
  height: 20px;
  background: url("/common/icon_map.webp") no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.area_list .comment{
  width: 350px;
  padding: 10px 0;
}

.area_list .comment p{
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 1.6;
  background: #faefed;
  border-radius: 5px;
  padding: 15px 20px 15px 65px;
  position: relative;
}

.area_list .comment p::before{
  content: "";
  width: 35px;
  height: 35px;
  background: url("/common/icon_smile.webp") no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 10px;
  left: 15px;
}

.area_list p.note{
  font-size: 16px;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
  color: #bd001f;
  text-align: right;
  margin-top: 20px
}

@media screen and (max-width: 767px) {

  .inner{
    width: 100%;
    padding: 0;
  }
  
  .calendar{
    padding-bottom: 15vw;
  }

  .area_list + .area_list {
    margin-top: 15vw;
  }
  
  .area_list h2{
    font-size: 6.5vw;
    line-height: 1;
    text-align: center;
    margin-bottom: 5vw;
  }
  
  .area_list > p.sp{
    font-family: 'Noto Serif JP', serif;
    font-size: 4vw;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 5vw
  }
  
  .area_list > p.sp a{
    margin-bottom: 3vw;
  }
  
  .area_list > dl{
    border-top: 1px solid #c1bfc8;
    border-bottom: 1px solid #c1bfc8;
  }

  .area_list dl > div{
    display: block;
    border-top: none;
    border-bottom: none;
    padding-bottom: 3vw;
  }

  .area_list dl > div + div{
    margin-top: 0;
    border-top: 1px solid #c1bfc8;
  }

  .area_list dl dt{
    width: 100%;
    padding: 4vw 5vw;
    top: 50%;
  }
  
  .area_list dt > div{
    position: relative;
    left: auto;
    border-left: 6px solid #4c7590;
    padding-left: .5em;
  }

  .area_list dl h3{
    font-size: 4.5vw;
    line-height: 1;
    max-width: 55vw;
  }

  .area_list dt > div a{
    height: auto;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 3.2vw;
    line-height: 1;
    padding: 1.5vw 2vw;
    margin-top: 0;
    border-radius: 1vw;
    position: absolute;
    top: 50%;
    right: 0;
  }

  .area_list .detail{
    width: 100%;
    font-size: 3.5vw;
    line-height: 1.5;
    padding: 3vw 5vw 1vw 5vw;
  }

  .area_list .detail > div{
    display: block;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }
  
  .area_list .detail p.place{
    min-width: inherit;
    font-size: 3.5vw;
    line-height: 1;
  }
  
  .area_list .detail a{
    min-width: inherit;
    font-size: 3.5vw;
    line-height: 1.5;
    padding: 2.5vw 9vw;
    border: 1px solid #c1bfc8;
    border-radius: 10vw;
    position: relative;
  }
  
  .area_list .detail a + a{
    margin-top: 2vw;
  }
  
  .area_list .detail a:nth-of-type(n+2){
    margin-top: 2vw;
  }

  .area_list .detail a::before{
    width: 5vw;
    height: 5vw;
    left: 2vw;
  }
    
  .area_list .comment{
    width: 100%;
    padding: 2vw 5vw 0 5vw;
  }

  .area_list .comment p{
    width: 100%;
    height: auto;
    font-size: 3.2vw;
    line-height: 1.5;
    background: #faefed;
    border-radius: .5vw;
    padding: 4vw 4vw 4vw 13vw;
    position: relative;
  }

  .area_list .comment p::before{
    width: 7.5vw;
    height: 7.5vw;
    top: 3vw;
    left: 3vw;
  }

  .area_list p.note{
    font-size: 3.2vw;
    line-height: 1.5;
    color: #bd001f;
    text-align: left;
    margin-top: 8vw;
    margin: 8vw 5vw 0 2vw;
  }
}