/*=====================================
初期設定
=====================================*/
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	color: #414141;
	font-family: "Noto Sans", "Noto Sans JP", sans-serif;
    letter-spacing: .05em
}
html {
	font-size: 62.5%
}
body * {
	box-sizing: border-box;
	word-wrap: break-word
}
h1, h2, h3, h4, h5, h6, p, address, ul, li, dl, dt, dd, caption, img, form, blockquote, label, figure {
	padding: 0;
	margin: 0;
	border: none;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	line-height: 100%;
	list-style-type: none
}
img {
    max-width: 100%;
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
	-webkit-backface-visibility: hidden;
}

/*=====================================
コンテンツ
=====================================*/
/* fadeUp */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}
.fadeUpTrigger {
    opacity: 0;
}

/*ヘッダー*/
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5vw;
    height: 50px;
    background: #000;
    border-bottom: 5px solid #bfae72
}
header h1 img {
    height: 24px
}
header .logo {
    height: 20px
}
/*フッター*/
footer {
    padding: 10% 5%;
    background: #000
}
footer > * + * {
    margin-top: 7.5%
}
footer a {
    color: #ccc;
    font-size: 3.2vw;
    font-size: clamp(1.2rem, 3.2vw, 1.4rem);
    line-height: 1.4;
    text-decoration: none
}
ul.sns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}
ul.sns li {
    flex-basis: 20%;
    width: 20%;
    height: 9vw;
    max-height: 36px;
    text-align: center
}
ul.sns li img {
    height: 100%
}
ul.footerNav {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px
}
ul.footerNav li {
    font-size: 3.2vw;
    font-size: clamp(1.2rem, 3.2vw, 1.4rem);
    line-height: 1.8;
    text-align: center
}
footer p {
    color: #606060;
    font-size: 3.2vw;
    font-size: clamp(1.2rem, 3.2vw, 1.4rem);
    line-height: 1.8;
    text-align: center
}

/*共通*/
main {
    margin: 0 auto;
    padding: 5% 0
}
main p {
    font-size: 3.5vw;
    font-size: clamp(1.4rem, 3.5vw, 1.7rem);
    line-height: 1.7
}
main small {
    font-size: 2.9vw;
    font-size: clamp(1.1rem, 2.9vw, 1.2rem);
}
.cmn {
    margin: 0 auto;
    width: 90%;
    max-width: 990px
}
.lead {
    margin: 0 auto;
    width: 90%;
    max-width: 990px
}
.ttl {
    margin: auto;
    width: 90%;
    height: 60px;
    font-size: 0
}
.ttl-pickup {
    background: url("../imgs/ttl-pickup.svg") no-repeat center center / contain
}
.ttl-eventcal {
    background: url("../imgs/ttl-eventcal.svg") no-repeat center center / contain
}
.txtGry {
    color: #4b545b
}
.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5vw auto;
    padding: 5vw;
    max-width: 600px;
    border-radius: 6px;
    color: #fff;
    font-size: 3.8vw;
    font-size: clamp(1.4rem, 3.8vw, 1.8rem);
    text-decoration: none;
    box-shadow: 0px 0px 7px -3px #888;
    transition: .3s
}
.btn.min {
    margin: 1.5vw auto;
    padding: 3vw 2.5vw;
    border-radius: 3px;
    font-size: 3.5vw;
    font-size: clamp(1.2rem, 3.5vw, 1.7rem);
    box-shadow: 0px 0px 5px -2px #888
}
.btn::after {
    content: "";
    display: block;
    width: 3.8vw;
    max-width: 16px;
    height: 3.8vw;
    max-height: 16px;
    background: url("../imgs/arrow.svg") no-repeat center center / 100%;
}
.btn.min::after {
    width: 2.5vw;
    height: 2.5vw
}
.btnBlue {
    background: rgb(0,84,166);
    background: linear-gradient(90deg, rgba(0,84,166,1) 0%, rgba(0,165,221,1) 100%)
}
.btnGold {
    background: rgb(150,127,71);
    background: linear-gradient(90deg, rgba(150,127,71,1) 0%, rgba(204,182,127,1) 100%)
}

/*下部へリンク*/
.btnFix {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2.5vw;
    width: 100%;
}
.ancBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2vw;
    width: 35%;
    max-width: 200px;
    border-radius: 8px;
    color: #fff;
    font-size: 3.4vw;
    font-size: clamp(1.3rem, 3.4vw, 1.7rem);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    box-shadow: 0px 0px 7px -3px #888;
    opacity: .9
}
.ancBtn::after {
    content: "";
    margin-top: 5px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    animation: ancArrow 1.5s ease-in-out infinite;
}
  
@keyframes ancArrow {
  0% {
  transform: translate(0, -3px) rotate(45deg);
  opacity: 0
  }
  20% {
  transform: translate(0, -3px) rotate(45deg);
  opacity: 0
  }
  60% {
  transform: translate(0, 0) rotate(45deg);
  opacity: 1
  }
  100% {
  transform: translate(0, 0) rotate(45deg);
  opacity: 1
  }
}

/*ピックアップ*/
.pickup {
    padding: 5% 0
}
.mv {
    display: flex;
    flex-direction: column;
    margin: 0 auto 5%;
    width: 100%;
    max-width: 1100px
}
.mvImg {
    position: relative;
    max-width: 100%;
    height: 70vh;
    max-height: 600px;
    animation: mvImgAnm 1s ease-in-out both
}
@keyframes mvImgAnm {
  0% {
  opacity: 0
  }
  100% {
  opacity: 1
  }
}
.mvImg img {
    position: absolute;
    left: 50%;
    display: block;
    object-fit: cover;
    margin: 5% auto;
    width: 90vw;
    max-width: 90%;
    height: 75vh;
    max-height: 600px;
    transform: translateX(-50%)
}
.mvDate {
    position: absolute;
    right: 2.5%;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    width: 26vw;
    max-width: 140px;
    height: 26vw;
    max-height: 140px;
    background: #000;
    border-radius: 50%;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.8vw;
    font-size: clamp(1.4rem, 3.8vw, 2.2rem);
    line-height: 1.05;
    font-weight: 700;
    text-align: center;
    animation: mvDateAnm .4s ease-in-out .3s both
}
@keyframes mvDateAnm {
  0% {
  transform: scale(.8,.8);
  opacity: 0
  }
  40% {
  transform: scale(1.2,1.2);
  opacity: 1
  }
  80% {
  transform: scale(1,1);
  opacity: 1
  }
  100% {
  transform: scale(1,1);
  opacity: 1
  }
}
.mvDate span,
.mvDate strong {
    display: block
}
.mvDate span {
    color: #bfae72
}
.mvDate strong {
    font-size: 9vw;
    font-size: clamp(2.8rem, 9vw, 5rem);
}
.mvTxt {
    margin-bottom: -125px;
    padding: 7.5vw 5vw;
    width: 86%;
    max-width: 640px;
    background: rgba(255,255,255,0.8);;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    transform: translateY(-125px);
    animation: mvTxtAnm .8s ease-in-out .6s both
}
@keyframes mvTxtAnm {
  0% {
  transform: translate(-5%, -125px);
  opacity: 0
  }
  100% {
  transform: translate(0%, -125px);
  opacity: 1
  }
}
.mvTxt > * + * {
    margin-top: 2%
}
.mvTxt h3 {
    font-size: 6.9vw;
    font-size: clamp(2.2rem, 6.9vw, 4rem);
    font-weight: bold
}
.mvTxt ul {
    display: flex;
    flex-wrap: wrap
}
.mvTxt ul li {
    flex-basis: 49%;
    width: 49%
}
.mvTxt ul li:nth-child(odd) {
    margin-right: 2%
}
.point {
    padding-bottom: 10%;
    background: #f2f4f7
}
.sub {
    text-align: center
}
.sub img {
    width: 37.6%;
    max-width: 280px;
    transform: translateY(-40%)
}
.pointBox {
    margin: 0 auto 5%;
    padding-bottom: 5%;
    width: 90%;
    background: #fff;
    border: 1px solid #d9d9db
}
.pointBox > * + * {
    margin-top: 2.5%
}
.pointBox .tag {
    display: inline-block;
    padding: 5px 10px;
    background: #000;
    color: #fff;
    font-size: 3.5vw;
    font-size: clamp(1.2rem, 3.5vw, 1.7rem)
}
.pointBox .tag + .tag {
    margin-left: 1px
}
.pointBox h4 {
    padding: 0 5%;
    color: #0054a6;
    font-size: 4.8vw;
    font-size: clamp(1.8rem, 4.8vw, 2.3rem);
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}
.pointBox figure {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}
.pointBox figure img {
    width: 100%
}
.pointBox p {
    padding: 0 5%;
    font-size: 3.5vw;
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
}
.pointBox p + p {
    margin-top: 1.5%
}

/*スライドショー*/
.sliderArea {
    margin: 0 auto;
    padding-bottom: 7.5%;
    width: 100%;
    max-width: 900px
}
.slider-for {
    margin: 0 auto 5%;
    width: 90%;
    border: 2px solid #fff;
    box-shadow: 0px 0px 9px -3px #888;
}
.slider-for img {
    width: 100%
}
.slider-nav img {
    object-fit: cover;
    height: 24.3vw;
    max-height: 156px
}
.slick-slide {
    padding: 2px;
}

/*イベントカレンダー*/
.eventcal {
    padding: 5% 0
}
.eventTab {
    margin: 0 auto;
    max-width: 900px
}
.eventTab input[type="radio"] {
    display: none
}
.eventYear {
    color: #4b545b;
    font-size: 3.5vw;
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    text-align: center
}
ul.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 2.5vw auto;
    width: 92%;
}
ul.filters li {
    flex-basis: 16.6%;
    width: 16.6%;
    padding: .5%;
    font-size: 3.5vw;
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
}
ul.filters li label {
    display: block;
    padding: 1.5vw;
    border: 1px solid #4b545b;
    border-radius: 3px;
    color: #4b545b;
    text-align: center
}
ul.filters li label:hover {
    background: #4b545b;
    color: #fff
}
[value="All"]:checked ~ .filters [for="All"], 
[value="Jan"]:checked ~ .filters [for="Jan"], 
[value="Feb"]:checked ~ .filters [for="Feb"], 
[value="Mar"]:checked ~ .filters [for="Mar"], 
[value="Apr"]:checked ~ .filters [for="Apr"], 
[value="May"]:checked ~ .filters [for="May"], 
[value="Jun"]:checked ~ .filters [for="Jun"], 
[value="Jul"]:checked ~ .filters [for="Jul"], 
[value="Aug"]:checked ~ .filters [for="Aug"], 
[value="Sep"]:checked ~ .filters [for="Sep"], 
[value="Oct"]:checked ~ .filters [for="Oct"], 
[value="Nov"]:checked ~ .filters [for="Nov"], 
[value="Dec"]:checked ~ .filters [for="Dec"] {
    background: #4b545b;
    color: #fff
}
.target {
    animation: checkedAnm 0.4s ease-in-out both;
}
@keyframes checkedAnm {
  0% {
  transform: translate(0, 10px);
  opacity: 0;
  }
  100% {
  transform: translate(0, 0);
  opacity: 1;
  }
}
.targets {
    margin: 7.5% auto;
    border-top: 1px solid #d4d5d6 
}
.target {
    padding: 7.5% 5%;
    border-bottom: 1px solid #d4d5d6 
}
.target a > * + *,.target > * + * {
    margin-top: 2.5%
}
.target h3 {
    color: #0054a6;
    font-size: 4.8vw;
    font-size: clamp(1.8rem, 4.8vw, 2.4rem);
    font-weight: bold
}
.target .txtGry {
    font-size: 3.5vw;
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
}
.target a{
	display: block;
	text-decoration: none;
}
.target a p{
	color: #414141;
	
}
.eventCont {
    display: flex;
    align-items: flex-start
}
.eventCont img {
    flex-shrink: 0;
    object-fit: contain;
    object-position: center center;
    width: 120px;
    height: 120px;
}
.eventCont div {
    padding-left: 5%
}
.eventCont ul {
    margin-top: 4vw
}
.eventCont ul li {
    margin-top: 2vw;
    padding-left: 20px;
    color: #4b545b;
    font-size: 3.2vw;
    font-size: clamp(1.2rem, 3.2vw, 1.4rem);
    line-height: 1.4
}
.eventSt {
    background: url("../imgs/icon-station.svg") no-repeat left top 1px / 15px;
}
.eventSp {
    background: url("../imgs/icon-spot.svg") no-repeat left top 1px / 15px;
}


@media screen and (min-width: 500px) {
    header {
        height: 70px
    }
    .btn {
        margin: 30px auto;
        padding: 30px
    }
    .btn.min {
        margin: 15px auto;
        padding: 15px
    }
    .mvTxt {
        padding: 50px 55px
    }
}
@media screen and (min-width: 700px) {
    .pointWrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 0 2.5%
    }
    .pointBox {
        margin: 2.5%;
        padding-bottom: 2.5%;
        width: 45%;
    }
}
@media screen and (min-width: 1000px) {
    footer {
        padding: 5% 5%;
    }
    footer > * + * {
        margin-top: 5%
    }
    ul.footerNav {
        display: flex;
        justify-content: center
    }
    ul.footerNav li {
        padding: 0 2.5%
    }
    .ancBtn {
        padding: 1.5%;
    }
    .pointWrap {
        margin: 0 auto;
        max-width: 1100px
    }
    .pointBox {
        margin: .5%;
        padding-bottom: 2.5%;
        width: 32%;
    }
    .pointBox.fadeUpTrigger:nth-of-type(3n - 1) {
        animation-delay: .3s
    }
    .pointBox.fadeUpTrigger:nth-of-type(3n) {
        animation-delay: .6s
    }
    ul.filters {
        margin: 15px auto
    }
    ul.filters li {
        flex-basis: 8.3%;
        width: 8.3%
    }
    ul.filters li label {
        display: block;
        padding: 10px;
        border: 1px solid #4b545b;
        border-radius: 3px;
        color: #4b545b;
        text-align: center
    }
    .target {
        padding: 5%;
    }
    .eventCont img {
        width: 180px;
        height: 180px;
    }
    .eventCont ul {
        margin-top: 20px
    }
    .eventCont ul li {
        margin-top: 15px
    }
}