@charset "UTF-8";

.sectionTitle{
    font-size: 2.6rem;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    topVisual
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.topVisual{
}
.visualBox{
    width: 100%;
}
.visualBox__next{
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.7);
}
.visualBox__next::after {
    content: "";
    display: block;
    margin-left: -.3em;
    border-top: solid 2px;
    border-right: solid 2px;
    width: .7em;
    height: .7em;
    transform: rotate(45deg);
}
.visualBox__next[role="button"]{
    display: flex;
}
.visualBox__prev{
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.7);
}
.visualBox__prev::after {
    content: "";
    display: block;
    margin-right: -.3em;
    border-top: solid 2px;
    border-right: solid 2px;
    width: .7em;
    height: .7em;
    transform: rotate(-135deg);
}
.visualBox__prev[role="button"]{
    display: flex;
}
.visualBox__next:hover,
.visualBox__next:focus,
.visualBox__prev:hover,
.visualBox__prev:focus{
    background: rgba(255,255,255,.9);
}
.visualItem__image{
    width: 100%;
    height: 100%;
}
.mainVisualBg{
    display: none;
}
.rankingBox{
    display: none;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    information
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.information__inner{
  padding: 30px 10px;
}
.infotitleBox{
  display:flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  line-height: 1.5;
}
.information__more{
  margin: 0;
  width: 100px;
  font-size: 1.3rem;
}
.information__catch{
  font-size: 14px;
  font-weight: bold;
}
.infoContentBox{
  border-bottom: dashed 1px #cccccc;
  margin-bottom: 17px;
}
.infoContentBox:last-child{
  border-bottom: none;
}
.infoTime__text{
  font-size: 14px;
  padding-left: 13px;

}
.info__content{
  flex: 1 1 auto;
}
.infoContent__title{
  font-size: 14px;
  font-weight: bold;
  padding-left: 13px;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow:hidden;
}
.infoContent__title:hover{
  color: #008ee5;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    event
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.event{
    padding: 30px 10px;
    background: url(/img/bg_mtzkn_red.jpg);
}
.event__title{
    margin: 0;
    text-align: center;
}
.event__catch{
    margin: 0 0 20px;
    text-align: center;
    font-weight: bold;
}
.eventBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.eventItem{
    position: relative;
    margin: 0 10px 15px 0;
    width: calc(50% - 5px);
    background: #fff;
}
.eventItem__top{
    display: block;
    padding: 10px 8px;
}
.eventItem__image{
    display: block;
    position: relative;
    margin: 0 0 8px;
    width: 100%;
    height: 100px;
}
.eventItem__image > img{
    width: 100%;
    height: 100%;
}
.eventItem__title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 3px;
    width: 100%;
    height: 3em;
    line-height: 1.5em;
    font-size: 1.5rem;
    font-weight: bold;
}
.eventItem__note{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;;
    width: 100%;
    height: 3em;
}
.eventItem__like{
    width: 100%;
    padding: .8em .2em;
    border-top: solid 1px #eee;
    font-size: 1.3rem;
}
.eventItem:nth-child(n+1):nth-child(odd){
    margin-right: 0;
}
.eventItem:nth-child(1){
    margin: 0 0 10px;
    width: 100%;
}
.eventItem:nth-child(1) .eventItem__image{
    height: 180px;
}
.eventItem:nth-child(1) .eventItem__title{
    font-size: 1.8rem;
}
.eventItem__top .eventItem__image::before{
    content: "";
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.38);
    color: #fff;
    transition: opacity .2s;
}
.eventItem__top .eventItem__image::after{
    content: "View more";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border: solid 1px;
    width: 10em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    color: #fff;
    transition: opacity .2s;
}
.eventItem__top:hover .eventItem__image::before,
.eventItem__top:focus .eventItem__image::before{
    opacity: 1;
}
.eventItem__top:hover .eventItem__image::after,
.eventItem__top:focus .eventItem__image::after{
    opacity: 1;
}
.eventItem__top .eventItem__title{
    transition: color .2s;
}
.eventItem__top:hover .eventItem__title,
.eventItem__top:focus .eventItem__title{
    color: #008ee5;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    news
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.news{
    padding: 30px 10px;
}
.news__title{
    margin: 0 0 15px;
    text-align: center;
}
.newsBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.newsItem{
    display: flex;
    flex-direction: column;
    margin: 0 10px 10px 0;
    border: solid 1px #eee;
    width: calc(50% - 5px);
}
.newsItem:nth-child(2n){
    margin-right: 0;
}
.newsItem__top{
    flex: 1 1 auto;
    display: block;
    padding: 8px;
}
.newsItem__image{
    display: block;
    position: relative;
    margin: 0 0 8px;
    width: 100%;
    height: 100px;
}
.newsItem__image > img{
    display: block;
    width: 100%;
    height: 100%;
}
.newsItem__title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 5px;
    max-height: 3em;
    line-height: 1.5em;
    font-size: 1.5rem;
    font-weight: bold;
}
.newsItem__cate{
    font-size: 1.2rem;
    margin: 5px 0;
}
.newsItem__note{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 5px 0;
    max-height: 3em;
    line-height: 1.5em;
    font-size: 1.2rem;
}
.newsItem__shop{
    display: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 5px 0 0;
    color: #777;
    font-size: 1.2rem;
    font-weight: bold;
}
.newsItem__middle{
    display: flex;
    margin: -5px 0 0;
    padding: 8px;
}
.newsItem__userpic{
    flex: 0 1 30px;
    display: block;
    margin: 0 5px 0 0;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
.newsItem__balloon{
    flex: 0 1 auto;
    padding: 8px;
    border-radius: 8px;
    line-height: 1.3;
    background: #f5f5f5;
    font-size: 1.2rem;
}
.newsItem__comment{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 2.6em;
    line-height: 1.3em;
}
.newsItem__group,
.newsItem__user{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    height: 1.3em;
    line-height: 1.3em;
}
.newsItem__bottom{
    display: flex;
    border-top: solid 1px #eee;
}
.newsItem__like{
    flex: 1 1 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .6em .2em;
    font-size: 1.2rem;
}
.newsItem__date{
    flex: 1 1 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-left: solid 1px #eee;
    padding: .6em .2em;
    font-size: 1.2rem;
}
.newsItem__top .newsItem__image::before{
    content: "";
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.38);
    color: #fff;
    transition: opacity .2s;
}
.newsItem__top .newsItem__image::after{
    content: "View more";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border: solid 1px;
    width: 10em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    color: #fff;
    transition: opacity .2s;
}
.newsItem__top:hover .newsItem__image::before,
.newsItem__top:focus .newsItem__image::before{
    opacity: 1;
}
.newsItem__top:hover .newsItem__image::after,
.newsItem__top:focus .newsItem__image::after{
    opacity: 1;
}
.newsItem__top .newsItem__title{
    transition: color .2s;
}
.newsItem__top:hover .newsItem__title,
.newsItem__top:focus .newsItem__title{
    color: #008ee5;
}

.shopBox{
    margin: 0 0 15px;
}
.shopBox__title{
    padding: 8px;
    text-align: center;
    background: #002b56;
    color: #fff;
    font-size: 1.8rem;
}
.shopBox__wrap{
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border: solid 1px #002b56;
}
.shopItem{
    display: flex;
    align-items: center;
    float: left;
    padding: 8px;
    border: solid 1px #002b56;
    width: 50%;
    text-align: left;
    font-weight: bold;
    transition: background .2s, color .2s;
}
.shopItem__icon{
    display: inline-block;
    margin: 0 .3em 0 0;
    color: #008ee5;
    font-size: 2em;
    transition: color .2s;
}
.shopItem:hover,
.shopItem:focus{
    background: #002b56;
    color: #fff;
}
.shopItem:hover .shopItem__icon,
.shopItem:focus .shopItem__icon{
    color: #fff;
}
.shopBox__map{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    width: 100%;
    border: solid 2px #002b56;
    border-top: none;
    text-align: center;
    font-weight: bold;
    transition: opacity .2s;
}
.shopBox__map__icon{
    display: inline-block;
    margin: 0 .4em 0 0;
    font-size: 1.8em;
}
.shopBox__map:hover,
.shopBox__map:focus{
    opacity: 0.7;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    topNav
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.topNav{
    padding: 20px 10px 10px;
}
.topNavBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.topNavItem{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px;
    padding: 10px 5px;
    border: solid 2px #002b56;
    width: calc(33.333% - 4px);
    color: #002b56;
    transition: background .2s, color .2s;
}
.topNavItem__icon{
    margin: 0 0 5px;
    font-size: 4rem;
}
.topNavItem:hover,
.topNavItem:focus{
    background: #002b56;
    color: #fff;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    point
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.point{
    padding: 30px 10px;
    background: url(/img/bg_mtzkn_blue.jpg);
}
.point__title{
    margin: 0 0 15px;
    text-align: center;
}
.pointBox{
    margin: 0 auto 30px;
}
.pointBox__title{
    margin: 0 0 10px;
    font-size: 2rem;
}
.pointItem{
    width: 300px;
}
.pointItem__image{
    width: 100%;
    height: 200px;
}
.pointItem__title{
    margin: 8px;
}
.pointItem__shop{
    margin: 8px;
}
.pointItem__note{
    padding: 8px 8px 10px;
    border-top: solid 1px #eee;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    feature
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.feature{
    padding: 30px 10px;
    background: url(/img/bg_sand.jpg)
}
.featureBox__header{
    padding: 10px 0;
}
.featureBox__title{
    text-align: center;
}
.featureBox__catch{
    margin: 0 0 20px;
    text-align: center;
    font-weight: bold;
}
.featureNewsBox{
    margin: 0 -10px;
}
.featureNewsItem{
    display: block;
    position: relative;
    margin: 0 10px 10px;
    box-shadow: 5px 5px 0 rgba(0,0,0,.2), -0.5px 3px 5px rgba(0,0,0,.1);
    width: calc(100% - 20px);
    background: #fff;
}
.featureNewsItem__image{
    width: 100%;
    transition: opacity .2s;
}
.featureNewsItem:hover .featureNewsItem__image,
.featureNewsItem:focus .featureNewsItem__image{
    opacity: .7;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    banner
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.banner{
    padding: 20px 10px;
}
.bannerBox{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.bannerItem{
    display: block;
    margin: 0 5px 10px;
    width: calc(50% - 10px);
    height: auto;
    max-width: 235px;
    max-height: 80px;
}
.bannerItem__image{
    width: 100%;
}
.bannerItem{
    transition: opacity .2s;
}
.bannerItem:hover,
.bannerItem:focus{
    opacity: .7;
}
@media screen and (min-width:600px){
    /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        topNav
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
    .topNavItem{
    }
    /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        event
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
    .eventItem__image{
        height: 160px;
    }
    .eventItem:nth-child(1) .eventItem__image{
        height: 270px;
    }
    /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        news
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
    .newsItem__top{
    }
    .newsItem__image{
        margin: 0 0 8px;
        width: 100%;
        height: 170px;
    }
    .newsItem__middle{
        display: flex;
        padding: 8px 10px;
    }
}
@media screen and (min-width:980px){
    .sectionTitle{
        font-size: 3.8rem;
    }
    /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        topVisual
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
    .topVisual{
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
        height: 440px;
    }
    .topVisual__content{
        display: flex;
        justify-content: space-between;
    }
    .visualBox{
        margin: 0 15px 0 0;
        width: 635px;
        height: 300px;
        box-shadow: 4px 4px 0 rgba(0,0,0,.2);
    }
    .mainVisualBg{
        display: block;
        z-index: -1;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .mainVisualBg__image{
        width: 100%;
        height: 100%;
    }
    .rankingBox{
        display: block;
        padding: 10px;
        width: 310px;
        height: 300px;
        background: rgba(255,255,255,0.8);
        box-shadow: 4px 4px 0 rgba(0,0,0,.2);
    }
    .rankingBox__title{
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 0 20px;
        border: solid 2px #333;
        height: 3.8rem;
        font-size: 2rem;
    }
    .rankingItem{
        display: flex;
        margin: 0 0 10px;
    }
    .rankingItem:last-child{
        margin: 0;
    }
    .rankingItem__num{
        width: 35px;
        line-height: 1.2;
        color: #a8a8a8;
        font-size: 2.6rem;
    }
    .rankingItem__image{
        flex: 0 1 auto;
        margin: 0 8px 0 5px;
        width: 60px;
        height: 60px;
    }
    .rankingItem__image > img{
        width: 100%;
        height: 100%;
    }
    .rankingItem__text{
        flex: 1 1 auto;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        width: calc(100% - 60px - 35px);
        height: 4.5em;
        line-height: 1.5em;
        font-weight: bold;
        transition: color 0.2s;
        font-size: 14px;
    }
    .rankingItem:hover .rankingItem__text,
    .rankingItem:focus .rankingItem__text{
        color: #008ee5;
    }
    /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        topNav
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
    .topNav{
        display: none;
    }
    /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        information
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
    .information__inner{
      display:flex;
      padding: 22px 40px 20px 33px;
    }
    .infotitleBox{
      display: block;
      margin-right: 5rem;
      border: solid 3px #cccccc;
      padding: 50px 28px 20px;
      margin-bottom: 0px;
    }
    .information__title{
      font-size: 2rem;
      margin-bottom: 10px;
      text-align: center;
    }
    .information__catch{
      margin-bottom: 37px;
    }
    .information__more{
      width: 150px;
    }
    /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        event
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
    .event{
        padding: 70px 0;
    }
    .event__title{
    }
    .event__catch{
      margin: 0 0 40px;
      font-size: 1.8rem;
    }
    .eventItem{
        margin: 0 10px 0 0!important;
        width: calc(33.333% - 7px)!important;
        box-shadow: 4px 4px 0 rgba(0,0,0,.2);
    }
    .eventItem:last-child{
        margin-right: 0!important;
    }
    .eventItem__image{
        height: 180px!important;
    }
    .eventItem__title{
        font-size: 1.8rem!important;
    }
    .eventItem__like{
        font-size: 1.6rem;
    }

    /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        news
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
    .news{
        padding: 70px 0;
    }
    .news__title{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 0 40px;
    }
    .news__title:before{
        flex: 1 1 auto;
        content: "";
        display: block;
        margin: 0 30px 0 0;
        width: auto;
        height: 10px;
        background: url(/img/linebg1.png) left/60px;
    }
    .news__title:after{
        flex: 1 1 auto;
        content: "";
        display: block;
        margin: 0 0 0 30px;
        width: auto;
        height: 10px;
        background: url(/img/linebg1.png) right/60px;
    }
    .newsItem{
        margin: 0 10px 15px 0;
        width: calc(25% - 7.5px);
        height: 300px;
    }
    .newsItem__top{
        padding: 0 8px;
    }
    .newsItem__image{
        margin: 0 -8px 8px;
        width: calc(100% + 16px);
        height: 130px;
    }
    .newsItem__shop{
        display: block;
    }
    .newsItem__date{
        font-size: 1.3rem;
    }
    .newsItem:nth-child(2n){
        margin-right: 10px;
    }
    .newsItem:nth-child(3),
    .newsItem:nth-child(6){
        margin-right: 10%;
    }
    .newsItem:nth-child(4n + 10){
        margin-right: 0;
    }
    .news__content{
        position: relative;
    }
    .news__more{
    }
    .shopBox{
        position: absolute;
        top: 0;
        right: 0;
        width: calc(25% - 7.5px);
    }
    .shopBox__title{
        margin: 0 0 10px;
        height: 45px;
    }
    .shopBox__wrap{
        margin: 0 0 10px;
        height: 450px;
    }
    .shopItem{
        padding: 10px;
        width: 100%;
    }
    .shopBox__map{
        flex-flow: wrap column-reverse;
        border: solid 2px #002b56;
        height: 100px;
        background: url(/img/bg_sand.jpg);
    }
    .shopBox__map__icon {
        margin: 0;
        font-size: 3.4em;
    }

    /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        point
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
    .point{
        padding: 70px 0;
    }

    .point__title{
        margin: 0 0 40px;
    }
    .pointBox{
        padding: 50px 0;
        background: rgba(255,255,255,0.7);
    }
    .pointBox__title{
        margin: 0 0 30px;
        font-size: 2.8rem;
    }
    /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        feature
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
    .feature{
        padding: 90px 0;
    }
    .featureBox{
        position: relative;
        margin: 10px;
        padding: 30px 10px;
    }
    .featureBox::before{
        content: "";
        display: block;
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(/img/bg_sand.jpg);
    }
    .featureBox::after{
        content: "";
        display: block;
        z-index: 1;
        position: absolute;
        top: -10px;
        left: -10px;
        background: url(/img/linebg1.png) left/60px;
        width: calc(100% + 20px);
        height: calc(100% + 20px);
    }
    .featureNewsBox__wrap{
        justify-content: center;
    }
    .featureBox__header{
        z-index: 3;
        position: relative;
        padding: 20px 0;
        background-position: bottom 0 left 20%;
    }
    .featureNewsBox{
        z-index: 3;
        position: relative;
    }
    .featureBox__catch{
        font-size: 1.8rem;
    }
    .featureNewsItem{
        margin: 0 10px 10px 0;
        width: 310px;
    }
    .featureNewsItem:last-child{
        margin-right: 0;
    }
    /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
        banner
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
    .banner{
        padding: 60px 0;
    }
    .bannerItem{
      margin: 0 4px;
      width: calc(25% - 8px);
      max-width: none;
    }
    .bannerBox__image{
        width: auto;
    }
}
