@charset "UTF-8";
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*  common
--------------------------------------------- */
/*-- #loading --*/
#loading {
  background-color: #fff;
  display: block;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}

#loading:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../../assets200806/img/loading.gif) no-repeat left top/100% auto;
  top: 50%;
  left: 50%;
  z-index: 15000;
}

@media screen and (min-width: 768px) {
  #loading:before {
    margin: -32px 0 0 -32px;
    height: 64px;
    width: 64px;
  }
}

@media screen and (max-width: 767px) {
  #loading:before {
    margin: -4.26667vw 0 0 -4.26667vw;
    height: 8.53333vw;
    width: 8.53333vw;
  }
}

/*-- #contents --*/
#contents {
  background: none;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  text-align: center;
  opacity: 0;
  overflow: hidden;
  position: relative;
}

#contents section, #contents div, #contents h1, #contents h2, #contents h3, #contents h4, #contents h5, #contents p, #contents ul, #contents li, #contents dl, #contents dt, #contents dd, #contents a {
  box-sizing: border-box;
}

#contents img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

#contents a {
  border: 0;
  outline: none;
  text-decoration: none;
  color: #fff;
}

@media screen and (min-width: 768px) {
  body#black {
    background: url(../../assets200727/img/common/bg_pc.jpg) no-repeat center top fixed #000;
  }
  #contents .pc {
    display: block;
  }
  #contents .sp {
    display: none;
  }
  #contents img.pc {
    display: inline-block;
  }
  .content_inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .content_inner a:hover {
    text-decoration: underline;
  }
  .content_inner a img {
    transition: transform 0.2s;
  }
  .content_inner a img:hover {
    transform: scale(1.03);
  }
  .content_inner h1 {
    width: 76.66667%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1921px) {
  body#black {
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  body::before {
    content: "";
    display: block;
    background: url(../../assets200727/img/common/bg_sp.jpg) no-repeat center top;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
  }
  #contents .pc {
    display: none;
  }
  #contents .sp {
    display: block;
  }
  #contents img.sp {
    display: inline-block;
  }
  #contents a {
    display: block;
  }
  #contents img {
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: none;
  }
  .content_inner {
    width: 93.86667vw;
    margin: 0 auto;
  }
}

/*-- .header_contents --*/
.header_contents {
  width: 100%;
  z-index: 100;
  position: absolute;
}

@media screen and (min-width: 768px) {
  .header_contents.fixed .gnav {
    position: fixed;
    top: 0;
    z-index: 10;
  }
  .header_contents .pc {
    max-width: 1420px;
    margin: 0 auto;
  }
  .header_contents .gnav ul {
    display: flex;
    justify-content: center;
    transform: skew(-19deg);
    overflow: hidden;
    margin: 0 15px;
    background: -webkit-linear-gradient(top, #67cad5 0%, #2a7ca0 100%);
    background: linear-gradient(to bottom, #67cad5 0%, #2a7ca0 100%);
  }
  .header_contents .gnav ul li {
    position: relative;
    padding: 0 10px 0 9px;
  }
  .header_contents .gnav ul li a, .header_contents .gnav ul li span {
    display: block;
    transform: skew(19deg);
  }
  .header_contents .gnav ul li:not(:first-child):not(:last-child) {
    border-right: 3px solid rgba(255, 255, 255, 0.8);
  }
  .header_contents .gnav ul li:nth-child(1) {
    padding: 0 12px;
  }
  .header_contents .gnav ul li:nth-child(2) {
    padding-left: 4px;
  }
  .header_contents .gnav ul li:last-child {
    padding-right: 13px;
  }
  .header_contents .gnav ul li.active {
    background: -webkit-linear-gradient(top, #5ceccd 0%, #2fdaa5 100%);
    background: linear-gradient(to bottom, #5ceccd 0%, #2fdaa5 100%);
  }
  .header_contents .gnav ul li.active a img:first-child {
    display: none;
  }
  .header_contents .gnav ul li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(top, #5ceccd 0%, #2fdaa5 100%);
    background: linear-gradient(to bottom, #5ceccd 0%, #2fdaa5 100%);
    transition: opacity 0.3s;
    opacity: 0;
    z-index: -1;
    -webkit-backface-visibility: hidden;
  }
  .header_contents .gnav ul li:hover:not(.active):not(:nth-child(1))::after {
    opacity: 1;
  }
  .header_contents .storebtn ul {
    width: 226px;
    height: auto;
    margin-top: 156px;
    position: absolute;
    top: 0;
    right: 18px;
    z-index: 1;
  }
  .header_contents .storebtn ul li {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
  .header_contents .storebtn ul li img {
    transition: transform 0.2s;
  }
  .header_contents .storebtn ul li img:hover {
    transform: scale(1.03);
  }
}

@media screen and (max-width: 1419px) and (min-width: 768px) {
  .header_contents .storebtn ul {
    width: 15.91549%;
    margin-top: 10.98592%;
    right: 1.26761%;
  }
  .header_contents .storebtn ul li {
    margin-bottom: 6.63717%;
  }
}

@media screen and (max-width: 767px) {
  .header_contents.fixed {
    position: fixed;
    top: 0;
  }
  .header_contents.menuopen {
    height: 100%;
    overflow-y: scroll;
    position: fixed;
  }
  .header_contents.menuopen #spmenu {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
  }
  .header_contents.menuopen #spmenu dt {
    position: fixed;
  }
  .header_contents #spmenu {
    position: relative;
  }
  .header_contents #spmenu dt {
    width: 12.66667vw;
    position: absolute;
    top: 2.66667vw;
    right: 3.33333vw;
  }
  .header_contents #spmenu dd {
    display: none;
    padding: 18.66667vw 0 13.33333vw;
    background: rgba(0, 0, 0, 0.8);
  }
  .header_contents .menu li {
    width: 64vw;
    margin: 0 auto 8.66667vw;
  }
  .header_contents .storebtn li {
    width: 45.6vw;
    margin: 0 auto 3.73333vw;
  }
}

/*-- .main_contents --*/
.main_contents {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1200px) {
  .main_contents {
    padding: 172px 0 90px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  .main_contents {
    padding: 14.33333% 0 7.5%;
  }
}

@media screen and (max-width: 767px) {
  .main_contents {
    padding: 2.66667vw 0 12vw;
  }
  .main_contents .headlogo {
    width: 36.8vw;
    margin: 0 auto 3.2vw;
  }
}

/*-- .footer_contents --*/
.footer_contents {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .footer_contents {
    padding: 3.02083vw 0 2.39583vw;
    background: url(../../assets200727/img/common/foot_card.png) no-repeat center center, url(../../assets200727/img/common/foot_bg_pc.jpg) no-repeat center center;
  }
  .footer_contents .spec {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer_contents .spec .logo {
    width: 38.91667%;
    margin: 0 4.83333% 0 3.58333%;
  }
  .footer_contents .spec .pc {
    width: 48.5%;
  }
  .footer_contents ul {
    display: flex;
    justify-content: center;
  }
  .footer_contents ul.storebtn {
    margin: 3.16667% 0 6%;
  }
  .footer_contents ul.storebtn li {
    width: 18.33333%;
    margin: 0 0.41667%;
  }
  .footer_contents ul.banner li {
    width: 17.83333%;
    margin: 0 1.16667%;
  }
}

@media screen and (min-width: 1921px) {
  .footer_contents {
    background-size: 1920px auto, cover;
  }
}

@media screen and (max-width: 767px) {
  .footer_contents {
    padding: 8.26667vw 0 22.66667vw;
    background: url(../../assets200727/img/common/foot_bg_sp.jpg) no-repeat center top/cover;
  }
  .footer_contents .spec .logo {
    width: 56.66667vw;
    margin: 0 auto 4.13333vw;
  }
  .footer_contents ul {
    display: flex;
    justify-content: space-between;
  }
  .footer_contents ul.storebtn {
    flex-wrap: wrap;
    margin: 8.66667vw auto 4.4vw;
  }
  .footer_contents ul.storebtn li {
    width: 45.33333vw;
    margin-bottom: 2.26667vw;
  }
  .footer_contents ul.banner {
    margin: 0 auto;
  }
  .footer_contents ul.banner li {
    width: 28.8vw;
  }
}

/*-- #totop --*/
#totop {
  display: none;
  position: fixed;
  z-index: 10;
}

#totop.absolute {
  position: absolute;
}

@media screen and (min-width: 768px) {
  #totop {
    right: 5.20833vw;
    bottom: 40px;
  }
  #totop.absolute {
    bottom: 40px;
  }
  #totop a {
    display: inline-block;
    width: 60px;
  }
  #totop a img:hover {
    transform: scale(1.05);
  }
}

@media screen and (max-width: 767px) {
  #totop {
    right: 4vw;
    bottom: 4vw;
  }
  #totop.absolute {
    bottom: 4vw;
  }
  #totop a {
    display: inline-block;
    width: 12.13333vw;
  }
}
