@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Teko");

/*================================================
　footer
================================================ */

footer {
  width: 100%;
  background: #006298;
  padding: 40px 0;
  text-align: center;
  position: relative;
  margin: 0 auto;
  z-index: 2;
}@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Teko");

/*================================================
　footer
================================================ */

footer {
  width: 100%;
  background: #006298;
  padding: 40px 0;
  text-align: center;
  position: relative;
  margin: 0 auto;
  z-index: 2;
}
.foot_inner{
  max-width: 455px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: left;
}
/*---------------- シェア ----------------*/
.share {
  width: 40%;
  color: #fff;
  padding: 40px 0 20px;
  text-align: center;
  /* margin-top: 100px; */
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: normal;
  margin: auto;
}
.share h2 {
  margin-right: 20px;
  font-family: 'Teko', sans-serif;
  font-weight: 300;
  font-size: 60px;
  display: inline-block;
  vertical-align: middle;
  padding-top: 0.15em;
}
.share .hashtag {
  background: transparent url("../img/arrow_share.png") no-repeat 100% 50%;
  background-size: 25px auto;
  padding-right: 45px;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}
.share ul {
  padding-left: 5px;
  display: inline-block;
  vertical-align: middle;
}
.share ul li {
  margin-left: 10px;
  width: 60px;
  float: left;
}
.share ul li a img {
  width: 100%;
  height: auto;
}

.foot_banner {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.foot_banner img {
  width: 100%;
  padding: 0 16px;
}

/*---------------- 公式SNS ----------------*/
.footer_logo {
  width: 82px;
  margin-right: 2em;
}
.sns {
  color: #222;

  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: normal;
}
.sns li {
  display: inline-block;
  margin: 0 0.4em;
  width: 54px;
}
.sns li a {
  display: block;
}
.sns li a img {
  width: 100%;
  height: auto;
}

/*---------------- フッター ----------------*/
.footer {
  color: #fff;
  background-color: #fff;
  padding: 12px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin: 32px auto 0;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: normal;
}
.footer img {
  width: 100%;
  height: auto;
  max-width: 260px;
}
.footer.-fv {
  background-color: inherit;
  margin-top: 0;
}
.footer.-fv img {
  max-width: 51px;
}
/*================================================
　個別
================================================ */
/*---------------- wrapper ----------------*/
.wrapper{
  background: repeat url("../img/bg.jpg");
  background-size: 38%;
  background-position: center;
} 

/* copyright */
.copy{
  max-width: 1166px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
  line-height: 1.5em;
}


@media screen and (max-width:979px) {
  .foot_inner{ 
    max-width: 305px;
  }
  .foot_banner {
    display: block;
  }
  .foot_banner img {
    padding: 10px;
  }
  .share {
    padding: 20px 20px 10px;
    width: 100%;
  }
  .share h2 {
    margin-right: 0;
    padding-bottom: 5px;
    font-size: 40px;
  }
  .share .hashtag {
    background-size: 20px auto;
    padding-right: 30px;
    font-size: 16px;
  }
  .share ul {
    padding-left: 0;
    padding-right: 5px;
  }
  .share ul li {
    margin-left: 5px;
    width: 35px;
    float: left;
  }
  
  /*---------------- 公式SNS ----------------*/
  .footer_logo {
    width: 50px;
    margin-right: 0;
  }
  .sns {
    padding: 10px;
  }
  .sns li {
    width: 32px;
  }
  
  /*---------------- フッター ----------------*/
  .footer {
    padding: 12px 20px;
  }
  .footer img {
    max-width: 180px;
  }
  
  
  /* SP用　開閉ボタン
  ------------------------------------------------------------------------ */
  .navigationBtn {
    display: block;
    width: 48px;
    height:48px;
    position: fixed;
    top: 6px;
    right: 5px;
    z-index: 9999;
  }
  .navigationBtn span {
    display: block;
    background: #3f4c73;
    width: 32px;
    height: 2px;
    position: absolute;
    left: 8px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
  }
  .navigationBtn span:first-child {
    top: 12px;
  }
  .navigationBtn span:nth-child(2) {
    margin-top: -1px;
    top: 50%;
  }
  .navigationBtn span:last-child {
    bottom: 12px;
  }
  .navigationBtn.-is-active span:first-child {
    -webkit-transform: translateY(11px) rotate(45deg);
    -moz-transform: translateY(11px) rotate(45deg);
    -ms-transform: translateY(11px) rotate(45deg);
    transform: translateY(11px) rotate(45deg);
  }
  .navigationBtn.-is-active span:nth-child(2) {
      opacity: 0;
  }
  .navigationBtn.-is-active span:last-child {
    -webkit-transform: translateY(-11px) rotate(-45deg);
    -moz-transform: translateY(-11px) rotate(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
  }
  /*================================================
  　個別
  ================================================ */
  /*---------------- wrapper ----------------*/
  .wrapper{
    background-size: 90%;
    padding-top: 60px;
    min-width: initial;
  }
  .copy{
    text-align: center;
  }
}


.foot_inner{
  max-width: 455px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: left;
}
/*---------------- シェア ----------------*/
.share {
  width: 40%;
  color: #fff;
  padding: 40px 0 20px;
  text-align: center;
  /* margin-top: 100px; */
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: normal;
  margin: auto;
}
.share h2 {
  margin-right: 20px;
  font-family: 'Teko', sans-serif;
  font-weight: 300;
  font-size: 60px;
  display: inline-block;
  vertical-align: middle;
  padding-top: 0.15em;
}
.share .hashtag {
  background: transparent url("../img/arrow_share.png") no-repeat 100% 50%;
  background-size: 25px auto;
  padding-right: 45px;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}
.share ul {
  padding-left: 5px;
  display: inline-block;
  vertical-align: middle;
}
.share ul li {
  margin-left: 10px;
  width: 60px;
  float: left;
}
.share ul li a img {
  width: 100%;
  height: auto;
}

.foot_banner {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.foot_banner img {
  width: 100%;
  padding: 0 16px;
}

/*---------------- 公式SNS ----------------*/
.footer_logo {
  width: 82px;
  margin-right: 2em;
}
.sns {
  color: #222;

  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: normal;
}
.sns li {
  display: inline-block;
  margin: 0 0.4em;
  width: 54px;
}
.sns li a {
  display: block;
}
.sns li a img {
  width: 100%;
  height: auto;
}

/*---------------- フッター ----------------*/
.footer {
  color: #fff;
  background-color: #fff;
  padding: 12px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin: 32px auto 0;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: normal;
}
.footer img {
  width: 100%;
  height: auto;
  max-width: 260px;
}
.footer.-fv {
  background-color: inherit;
  margin-top: 0;
}
.footer.-fv img {
  max-width: 51px;
}
/*================================================
　個別
================================================ */
/*---------------- wrapper ----------------*/
.wrapper{
  background: repeat url("../img/bg.jpg");
  background-size: 38%;
  background-position: center;
} 

/* copyright */
.copy{
  max-width: 1166px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
  line-height: 1.5em;
}


@media screen and (max-width:979px) {
  .foot_inner{ 
    max-width: 305px;
  }
  .foot_banner {
    display: block;
  }
  .foot_banner img {
    padding: 10px;
  }
  .share {
    padding: 20px 20px 10px;
    width: 100%;
  }
  .share h2 {
    margin-right: 0;
    padding-bottom: 5px;
    font-size: 40px;
  }
  .share .hashtag {
    background-size: 20px auto;
    padding-right: 30px;
    font-size: 16px;
  }
  .share ul {
    padding-left: 0;
    padding-right: 5px;
  }
  .share ul li {
    margin-left: 5px;
    width: 35px;
    float: left;
  }
  
  /*---------------- 公式SNS ----------------*/
  .footer_logo {
    width: 50px;
    margin-right: 0;
  }
  .sns {
    padding: 10px;
  }
  .sns li {
    width: 32px;
  }
  
  /*---------------- フッター ----------------*/
  .footer {
    padding: 12px 20px;
  }
  .footer img {
    max-width: 180px;
  }
  
  
  /* SP用　開閉ボタン
  ------------------------------------------------------------------------ */
  .navigationBtn {
    display: block;
    width: 48px;
    height:48px;
    position: fixed;
    top: 6px;
    right: 5px;
    z-index: 9999;
  }
  .navigationBtn span {
    display: block;
    background: #3f4c73;
    width: 32px;
    height: 2px;
    position: absolute;
    left: 8px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
  }
  .navigationBtn span:first-child {
    top: 12px;
  }
  .navigationBtn span:nth-child(2) {
    margin-top: -1px;
    top: 50%;
  }
  .navigationBtn span:last-child {
    bottom: 12px;
  }
  .navigationBtn.-is-active span:first-child {
    -webkit-transform: translateY(11px) rotate(45deg);
    -moz-transform: translateY(11px) rotate(45deg);
    -ms-transform: translateY(11px) rotate(45deg);
    transform: translateY(11px) rotate(45deg);
  }
  .navigationBtn.-is-active span:nth-child(2) {
      opacity: 0;
  }
  .navigationBtn.-is-active span:last-child {
    -webkit-transform: translateY(-11px) rotate(-45deg);
    -moz-transform: translateY(-11px) rotate(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
  }
  /*================================================
  　個別
  ================================================ */
  /*---------------- wrapper ----------------*/
  .wrapper{
    background-size: 90%;
    padding-top: 60px;
    min-width: initial;
  }
  .copy{
    text-align: center;
  }
}