@charset "UTF-8";
/**************************************************
 基本設定
**************************************************/
body {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

main {
  display: block;
}

img {
  line-height: 0;
  vertical-align: bottom;
}

.common__link a img {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.common__link a img:hover {
  opacity: 0.7;
}

.container {
  opacity: 0;
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 1200px;
  overflow: hidden;
}

/**************************************************
 menu
**************************************************/
nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  min-width: 1200px;
  background-color: #1b1b1b;
}

nav * {
  margin: 0;
  padding: 0;
}

.common__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.common__menu--item {
  border-left: 1px solid #ea608e;
}

.common__menu--item:last-child {
  border-right: 1px solid #ea608e;
}

.common__submenu {
  position: absolute;
  bottom: 40px;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-right: 260px;
  background-color: #ea608e;
  border-bottom: 1px solid #f08bad;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**************************************************
 share
**************************************************/
.share {
  position: absolute;
  bottom: 40px;
  right: 0;
  left: 1100px;
  width: 90px;
  margin: auto auto;
  /*text-align: center;*/
}

.share li {
  margin-bottom: 10px;
}

.share li:nth-child(1),
.share li:nth-child(2) {
  padding-right: 0px;
}

.is_hidden {
  opacity: 0;
}

/**************************************************
 YouTube
**************************************************/
.yt-overlay {
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  z-index: 150;
}

.yt-overlay.transparent {
  background-color: rgba(0, 0, 0, 0.8);
}

.yt-overlay:after {
  position: relative;
}

.yt-close {
  display: none;
  position: absolute;
  top: -50px;
  right: 0;
  cursor: pointer;
  z-index: 300;
}

.yt-video {
  position: relative;
  width: 864px;
  height: 486px;
  z-index: 150;
  margin: 100px auto;
  padding-bottom: 100px;
}

.yt-player {
  width: 864px;
  height: 486px;
  z-index: 200;
}

.yt-loader {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  width: 128px;
  height: 128px;
  z-index: 0;
}

.yt-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 10px;
}

.yt-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  height: 35px;
  background-color: #1b1b1b;
  cursor: pointer;
}

.yt-tab.active {
  color: #fff;
  background-color: #ea608e;
  cursor: auto;
}

.row3 {
  width: 32.40741%;
}

.row5 {
  width: 18.51852%;
}

.yt-tabs .yt_title {
  color: #fff;
  font-size: 20px;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}

/**************************************************
 CSSアニメーション
**************************************************/
.is_loaded.container {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.loading {
  -webkit-animation-name: flash;
          animation-name: flash;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes flash {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes flash {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.run {
  -webkit-animation-play-state: running !important;
          animation-play-state: running !important;
}
