@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/*---------------
   追加 reset
---------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

li {
  list-style: none;
}

/*---------------
   共通
---------------*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  min-width: 1200px;
  color: #000;
  font-family: "游ゴシック体","Yu Gothic", YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-size: 1.6rem;
  letter-spacing: .1em;
  text-indent: .1em;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  -ms-font-feature-settings: "palt";
  -o-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
@media screen and (max-width: 640px) {
  body {
    min-width: 100%;
    font-size: calc((24/760)*100vw);
  }
}

a:hover {
  opacity: .6;
  transition: .5s;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  vertical-align: bottom;
}

.inner {
  width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 640px) {
  .inner {
    width: 100%;
    min-width: 100%;
    padding: 0 calc((30/760)*100vw);
  }
}

/*---------------
   テキスト関係
---------------*/
/*---------------
   header
---------------*/
.header {
  padding: 60px 0 50px;
}
@media screen and (max-width: 640px) {
  .header {
    padding: calc((100/760)*100vw) 0 0;
  }
}
.header .lttl {
  text-align: center;
}

/*---------------
   main
---------------*/
.seasonpass {
  width: 550px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .seasonpass {
    width: 100%;
    margin-top: calc((100/760)*100vw);
  }
}
.seasonpass_wrap {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  justify-content: space-between;
}
.seasonpass_ttl {
  margin: 20px 0 5px;
  color: #1E79BF;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .seasonpass_ttl {
    margin: calc((40/760)*100vw) 0 calc((10/760)*100vw);
    font-size: calc((40/760)*100vw);
  }
}
.seasonpass_period {
  margin: 5px 0 10px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .seasonpass_period {
    margin: calc((10/760)*100vw) 0 calc((20/760)*100vw);
    font-size: calc((24/760)*100vw);
  }
}
.seasonpass_p {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .seasonpass_p {
    font-size: calc((30/760)*100vw);
  }
}

/*---------------
   footer
---------------*/
.footer {
  padding: 90px 0 60px;
}
@media screen and (max-width: 640px) {
  .footer {
    padding: calc((100/760)*100vw) 0 calc((50/760)*100vw);
  }
}
.footer .footer_copy {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .footer .footer_copy {
    font-size: calc((20/760)*100vw);
  }
}
