@charset "UTF-8";

.l-headerLogo{
  opacity: 0;
  pointer-events: none;
}
.l-headerLogo.w{
  opacity: 1;
  pointer-events: inherit;
}
.l-headerLogo::after{
  color: #fff;
}

.mv{
  position: relative;
}
.mv .tit{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  font-size: clamp(1rem, 1.4vw, 1.7rem);
  color: #fff;
  z-index: 1;
}
.mv .tit strong{
  display: block;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 1;
  margin: 0 auto 15px;
}
.mv .img span.left{
  right: inherit;
  left: 5px;
}
@media(max-width: 768px) {
  .mv .tit strong{
    margin: 0 auto 5px;
  }
}

#main{
  background-color: #d4e6e9;
}

.tab_area{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tab_area li{
  width: 50%;
  padding: 20px;
  font-size: clamp(1.2rem, 1.8vw, 2.2rem);
  z-index: 1;
  transition: .3s;
  cursor: pointer;
  color: #fff;
  background-color: #00424d;
  opacity: .7;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab_area li.select{
  opacity: 1;
}
.tab_area li:after{
  content: '';
  display: block;
  width: 16px;
  height: 8px;
  background: url(../images/location/arw01.svg) no-repeat center center / contain;
  margin-left: 10px;
  transition: .3s;
  transform: rotate(-90deg);
}
.tab_area li.select:after{
  transform: rotate(0);
}
@media(max-width: 768px) {
  .tab_area li{
    padding: 15px 10px;
  }
  .tab_area li:after{
    width: 9px;
    height: 5px;
  }
}

.content_area{
  background-color: #aacdd4;
}

.content_area .head{
  padding: 130px 0;
  color: #357f8b;
}
.content_area .head .midashi{
  font-size: clamp(2rem, 2.8vw, 3.4rem);
  line-height: 1.4;
  margin: 0 0 50px;
  text-align: center;
}
.content_area .head .midashi strong{
  display: block;
  font-size: clamp(4rem, 8vw, 10rem);
}
.content_area .head .txt{
  font-size: clamp(1.4rem, 1.6vw, 1.7rem);
  line-height: 1.8;
  text-align: center;
}
@media(max-width: 768px) {
  .content_area .head{
    padding: 40px 0 30px;
  }
  .content_area .head .midashi{
    margin: 0 0 20px;
  }
  .content_area .head .txt{
    text-align: left;
    width: 90%;
    margin: 0 auto;
  }
}

.conts{
  padding: 120px 0;
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
  color: #374d4b;
}
.conts .box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.conts .box .midashi{
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  line-height: 1.4;
  margin: 0 0 20px;
}
.conts .box .txt{
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
  line-height: 2;
}
.conts .box .txt span{
  display: block;
  font-size: 1rem;
  margin-top: 5px;
}
.conts .box .txt sup{
  font-size: 1rem;
  vertical-align: top;
}
.favorite .conts .box{
  margin-bottom: 60px;
}
.favorite .conts .box.row{
  margin: 60px 0;
  flex-flow: row-reverse;
}
.favorite .conts .box .txt-box{
  width: 45%;
}
.favorite .conts .box .img{
  width: 52%;
}
.favorite .conts .map{
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}
.favorite .conts .map span{
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
}
.favorite .slider{
  margin: 60px 0 0;
}
.favorite .slider .slick-slide {
  margin: 0 7px;
}
.horizon .conts .box{
  margin-bottom: 60px;
  flex-flow: column-reverse;
}
.horizon .conts .box .img{
  margin: 0 0 30px;
}
.conts .img-list{
  max-width: 790px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.conts .img-list li{
  width: 49%;
}
.conts .img-list li span{
  display: block;
  font-size: 1rem;
  text-align: right;
  margin-top: 5px;
}
@media(max-width: 768px) {
  .conts{
    padding: 40px 0;
  }
  .conts .box{
    display: block;
  }
  .conts .box .midashi{
    margin: 0 0 10px;
  }
  .favorite .conts .box{
    margin-bottom: 40px;
  }
  .favorite .conts .box.row{
    margin: 40px 0;
    flex-flow: row-reverse;
  }
  .favorite .conts .box .txt-box,
  .horizon .conts .box .txt-box{
    width: 100%;
    margin: 0 0 15px;
  }
  .favorite .conts .box .img{
    width: 100%;
  }
  .favorite .conts .map{
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
  }
  .favorite .slider{
    margin: 30px 0 0;
  }
  .favorite .slider .slick-slide {
    margin: 0 3px;
  }
  .horizon .conts .box{
    margin-bottom: 30px;
  }
  .horizon .conts .box .img{
    margin: 0 0 20px;
  }
  .conts .img-list{
    display: block;
  }
  .conts .img-list li{
    width: 100%;
    margin: 0 0 20px;
  }
}

.information{
  padding: 100px 0;
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
}
.information .head {
  margin: 0 0 80px;
  color: #374d4b;
}
.information .head .midashi{
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  line-height: 1.4;
  margin: 0 0 40px;
  text-align: center;
}
.information .head .midashi span{
  display: block;
  font-size: clamp(1.6rem, 2vw, 2.5rem);
  margin: 0 0 30px;
}
.information .head .txt{
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
  line-height: 2.2;
  text-align: center;
}
.information .map{
  margin: 0 0 70px;
}
.information .cat{
  margin: 0 0 50px;
}
.information .cat .flex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.information .cat .box .name{
  border-bottom: solid 1px #357f8b;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: clamp(1.7rem, 2vw, 2rem);
  line-height: 1;
  padding-bottom: 5px;
  color: #374d4b;
}
.information .cat .box .name span{
  display: block;
  font-size: clamp(1.5rem, 1.7vw, 1.8rem);
}
.information .cat .flex.sp{
  display: none;
}
.information .cat .flex .box{
  width: 48.5%;
}
.information .cat .box .list{
  width: 100%;
}
.information .cat .box .flex .list{
  width: 48.5%;
}
.information .cat .box .list li{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px;
}
.information .cat .box .list li:nth-child(odd){
  background-color: #ecf3f4;
}
.information .cat .box .list li strong,
.information .cat .box .list li span{
  display: block;
  font-weight: normal;
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  line-height: 1.2;
}
.information .cat .box .list li span{
  text-align: right;
}
.information .cat .img-list{
  margin-top: 30px;
  justify-content: center;
}
.information .cat .img-list li span{
  display: block;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.2;
  margin-top: 10px;
}
.information .cat .img-list li{
  width: 31%;
  margin: 0 1.5%;
}
.information .cat .line3 li:first-child{
  margin-left: 0;
}
.information .cat .line3 li:last-child{
  margin-right: 0;
}
@media(max-width: 768px) {
  .information{
    padding: 50px 0;
  }
  .information .head .midashi{
    margin: 0 0 20px;
  }
  .information .head .midashi span{
    margin: 0 0 20px;
  }
  .information .head .txt{
    text-align: left;
    margin: 0 auto;
  }
  .information .map{
    margin: 0 0 30px;
  }
  .information .cat{
    margin: 0 0 30px;
  }
  .information .cat .flex{
    display: block;
  }
  .information .cat .flex.pc{
    display: none;
  }
  .information .cat .flex.sp{
    display: block;
  }
  .information .cat .flex .box{
    width: 100%;
  }
  .information .cat .flex .box.mt{
    margin-top: 30px;
  }
  .information .cat .box .flex .list{
    width: 100%;
  }
  .information .cat .box .list li{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px;
  }
  .information .cat .box .list li:nth-child(odd){
    background-color: #ecf3f4;
  }
  .information .cat .box .list:nth-of-type(even) li:nth-child(odd){
    background-color: inherit;
  }
  .information .cat .box .list:nth-of-type(even) li:nth-child(even){
    background-color: #ecf3f4;
  }
  .information .cat .box .list li strong,
  .information .cat .box .list li span{
    display: block;
    font-weight: normal;
    font-size: clamp(1.2rem, 1.4vw, 1.5rem);
    line-height: 1.2;
  }
  .information .cat .box .list li span{
    text-align: right;
    margin-left: auto;
  }
  .information .cat .box .name span{
    margin-top: 5px;
  }
  .information .cat .img-list{
    margin: 20px auto 0;
    width: 86%;
  }
  .information .cat .img-list li{
    width: 100%;
    margin: 0 0 10px;
  }
}