@charset "UTF-8";
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style-type: none;
}

/*-----------------------------------------------
 root
-----------------------------------------------*/
html {
  overflow-y: scroll;
}

body {
  overflow: hidden;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

/*-----------------------------------------------
 font
-----------------------------------------------*/
html {
  overflow-x: hidden;
  font-size: medium;
}

body {
  font-size: 62.5%; /* 16px -> 10px */
}

div {
  line-height: 0;
  box-sizing: border-box;
}

dt, dd, li,
caption, th, td,
input, button, textarea, select,
h1, h2, h3, h4, h5, h6, address {
  line-height: 0;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

p {
  line-height: 1.5;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

h1 *, h2 *, h3 *, h4 *, h5 *, h6 *,
p input, p button, p select,
li h1, li h2, li h3, li h4, li h5, li h6, li p, li dt, li dd, li li, li th, li td, li input, li button, li textarea, li select,
dd h1, dd h2, dd h3, dd h4, dd h5, dd h6, dd p, dd dt, dd dd, dd li, dd th, dd td, dd input, dd button, dd textarea, dd select,
tr h1, tr h2, tr h3, tr h4, tr h5, tr h6, tr p, tr dt, tr dd, tr li, tr input, tr button, tr textarea, tr select {
  font-size: 100%;
}

input, button, select, option, textarea {
  font-size: 14px;
}

figure {
  margin: 0;
}

a,
a:link,
a:visited {
  color: #1d99c1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

section {
  position: relative;
  box-sizing: border-box;
}

br.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  br.sp {
    display: inline;
  }
}
@media only screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}

/*-----------------------------------------------
 cf 
-----------------------------------------------*/
.clearfix {
  min-height: 1px;
}
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

/*-----------------------------------------------
 hover
-----------------------------------------------*/
.hover :hover {
  opacity: 0.8;
  animation: btn 0.5s;
  -webkit-animation: btn 0.5s;
  -moz-animation: btn 0.5s;
}

@keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
/*=============================================================
 01_base
=============================================================*/
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 99;
  background-color: #fff;
}
#loading .chara {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  opacity: 0;
}
#loading .chara img {
  -webkit-animation: a-rotate 1s ease 0s infinite;
  animation: a-rotate 1s ease 0s infinite;
}

@-webkit-keyframes a-rotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes a-rotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
#header {
  position: relative;
  z-index: 50;
}
#header .inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 94px;
  margin: 0 auto;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  #header .inner {
    width: auto;
    height: 25.78125vw;
    left: 0;
    transform: unset;
  }
}
@media only screen and (max-width: 768px) {
  #header img {
    width: 100%;
  }
}
#header .txt {
  position: absolute;
  top: 50px;
  left: 300px;
}
@media only screen and (max-width: 768px) {
  #header .txt {
    width: 33.4375vw;
    top: 2.5vw;
    left: 1.5625vw;
  }
}
#header .top-emblem {
  display: none;
}
@media only screen and (max-width: 768px) {
  #header .top-emblem {
    display: block;
    position: absolute;
    top: 2.34375vw;
    left: 40.625vw;
    width: 18.59375vw;
  }
}
#header .top-emblem img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #header .sns {
    display: none;
  }
}
#header .sns ul {
  position: absolute;
  top: 42px;
  right: 110px;
  width: 138px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#header .sns ul li {
  width: 37px;
}
#header .sns ul li img {
  width: 100%;
}
#header .btn-nav {
  position: fixed;
  top: 14px;
  right: calc(50% - 600px);
  width: 70px;
  height: 70px;
  z-index: 50;
  background: url("../img/global/btn_open.png") no-repeat top center;
  background-size: contain;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #header .btn-nav {
    top: 2.5vw;
    right: 1.5625vw;
    width: 15.625vw;
    height: 15.625vw;
  }
}
#header .btn-nav.active {
  background: url("../img/global/btn_close.png") no-repeat top center;
  background-size: contain;
}
#header .gnav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/menu/bg.png") no-repeat top center;
  background-size: cover;
  z-index: 30;
  overflow-y: scroll;
}
@media only screen and (max-width: 768px) {
  #header .gnav {
    height: 100vh;
    background: url("../img/menu/bg-sp.png") no-repeat top center;
    background-size: 100%;
  }
}
#header .gnav nav {
  position: relative;
  width: 987px;
  margin: 0 auto;
  padding: 35px 0 48px;
}
@media only screen and (max-width: 768px) {
  #header .gnav nav {
    width: auto;
    padding: 7.8125vw 0 39.84375vw;
  }
}
#header .gnav nav::before {
  content: "";
  width: 150vw;
  height: 5px;
  background-color: #00a692;
  position: absolute;
  top: 0;
  left: -25vw;
}
@media only screen and (max-width: 768px) {
  #header .gnav nav::before {
    width: 100vw;
    height: 0.78125vw;
    left: 0;
  }
}
#header .gnav nav::after {
  content: "";
  width: 150vw;
  height: 5px;
  background-color: #00a692;
  position: absolute;
  bottom: 0;
  left: -25vw;
}
@media only screen and (max-width: 768px) {
  #header .gnav nav::after {
    width: 100vw;
    height: 0.78125vw;
    left: 0;
  }
}
#header .gnav nav .emblem {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #header .gnav nav .emblem {
    text-align: left;
    margin-left: 11.5625vw;
    margin-bottom: 1.875vw;
  }
}
#header .gnav nav .emblem img {
  width: 71px;
}
#header .gnav nav p {
  margin: -10px 0 5px;
}
@media only screen and (max-width: 768px) {
  #header .gnav nav p {
    width: 40.15625vw;
    margin: 0 0 1.5625vw 11.5625vw;
  }
}
#header .gnav nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #header .gnav nav ul {
    display: block;
    width: 76.40625vw;
    margin: 0 auto 9.6875vw;
  }
}
#header .gnav nav ul li {
  position: relative;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  #header .gnav nav ul li {
    margin-bottom: 1.5625vw;
  }
}
#header .gnav nav ul li a {
  display: block;
}
#header .gnav nav ul li .image {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 182px;
  height: 162px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #header .gnav nav ul li .image {
    top: 1.5625vw;
    left: 1.5625vw;
    width: 28.4375vw;
    height: 25.3125vw;
  }
}
#header .gnav nav ul li .image img {
  transition: all 0.3s ease;
}
#header .gnav nav ul li:hover .image img {
  transform: scale(1.1);
}
@media only screen and (max-width: 768px) {
  #header .gnav nav ul li:hover .image img {
    transform: scale(1);
  }
}
#header .gnav nav .logo {
  text-align: center;
  width: 160px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #header .gnav nav .logo {
    width: 25vw;
  }
}
#header .gnav nav .logo img {
  width: 100%;
}

#container {
  position: relative;
  background: url("../img/bg.png") repeat-x top center;
  background-size: auto 100%;
}
@media only screen and (max-width: 768px) {
  #container {
    background: url("../img/bg-sp.png") repeat-x bottom center;
    background-size: 100%;
    padding: 25.78125vw 0 5.9375vw;
  }
}
@media only screen and (max-width: 768px) {
  #container img {
    width: 100%;
  }
}
#container::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #00a692;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  #container::before {
    height: 0.78125vw;
  }
}
#container::after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #00a692;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  #container::after {
    height: 0.78125vw;
  }
}
#container .wrap {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  #container .wrap {
    width: auto;
  }
}
#container .wrap::before {
  content: "";
  position: absolute;
  top: 310px;
  left: -460px;
  width: 1180px;
  height: 1005px;
  background: url("../img/deco.png") no-repeat top center;
}
@media only screen and (max-width: 768px) {
  #container .con-pc {
    display: none;
  }
}
#container .con-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  #container .con-sp {
    display: block;
  }
}
#container .con-sp .slider {
  margin-bottom: 30px;
}
#container .con-sp .slider ul {
  margin: 0 -107.8125vw;
}
#container .con-sp .slider ul li {
  position: relative;
}
#container .con-sp .slider ul li .detail {
  position: absolute;
  bottom: -60.9375vw;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s 1s ease;
  width: 97.03125vw;
}
#container .con-sp .slider ul li.slick-center .detail {
  bottom: 0;
}
#container .con-sp .slider .slick-slider .slick-arrow {
  display: none !important;
}
#container .con-sp .slider .slick-slider .slick-dots {
  display: flex !important;
  padding-top: 3.125vw;
  justify-content: center;
}
#container .con-sp .slider .slick-slider .slick-dots li {
  width: 50px;
  height: 10px;
  margin: 0 0.78125vw;
}
#container .con-sp .slider .slick-slider .slick-dots li button {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 0;
  background-color: #d9d4b7;
  outline: none;
}
#container .con-sp .slider .slick-slider .slick-dots li.slick-active button {
  background-color: #000;
}
#container .con-sp .update {
  padding: 0 3.125vw;
  margin-bottom: 7.5vw;
}
#container .con-sp .update .txt {
  font-size: 18px;
  font-size: 2.8125vw;
  font-weight: bold;
  color: #00a692;
  margin-bottom: 0.78125vw;
}
#container .con-sp .update ul {
  height: 18.4375vw;
  overflow-y: scroll;
}
#container .con-sp .update ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.875vw;
}
#container .con-sp .update ul li time {
  width: 19.53125vw;
  font-size: 18px;
  font-size: 2.8125vw;
  font-weight: bold;
  line-height: 1;
  color: #00a692;
  margin-bottom: 0.78125vw;
}
#container .con-sp .update ul li p {
  width: 73.125vw;
  font-size: 18px;
  font-size: 2.8125vw;
  line-height: 1.4;
}
#container .con-sp .sns {
  margin-bottom: 5.9375vw;
}
@media only screen and (max-width: 768px) {
  #container .con-sp .sns ul {
    width: 31.5625vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  #container .con-sp .sns ul li {
    width: 8.90625vw;
  }
}

#side {
  position: relative;
  width: 280px;
  background: url("../img/bg_side.png") repeat-y top center;
  text-align: center;
  padding: 40px 0 6px;
}
#side .emblem {
  margin-bottom: 36px;
}
#side .star {
  margin-bottom: 30px;
}
#side h1 {
  margin-bottom: 62px;
}
#side .text {
  margin-bottom: 72px;
}
#side .update {
  text-align: left;
  padding: 0 30px;
}
#side .update .txt {
  font-size: 14px;
  font-weight: bold;
  color: #00a692;
  margin-bottom: 18px;
}
#side .update ul {
  height: 175px;
  overflow-y: scroll;
}
#side .update ul li {
  margin-bottom: 15px;
}
#side .update ul li time {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #00a692;
  margin-bottom: 3px;
}
#side .update ul li p {
  font-size: 12px;
  line-height: 1.4;
}

#content {
  position: relative;
  width: 900px;
  padding: 94px 0 65px;
}
#content .block {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}
#content .block .box {
  padding: 10px;
  opacity: 0;
}
#content .block .link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
#content .block .image {
  overflow: hidden;
}
#content .block .image img {
  transition: all 0.3s ease;
}
#content .block .txt {
  position: absolute;
  top: 10px;
  left: 10px;
  transition: all 0.3s ease;
}
#content .block .award {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 138px;
  height: 138px;
}
#content .block .award::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/award1_triangle.png") no-repeat top center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}
#content .block .award span {
  position: absolute;
  bottom: 12px;
  right: 5px;
}
#content .block .detail {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 60, 0.9);
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: all 0.4s ease;
}
#content .block .detail .cover {
  margin-right: 25px;
}
#content .block .detail .detail-txt {
  margin-right: 48px;
}
#content .block:hover .image img {
  transform: scale(1.2);
}
#content .block:hover .txt {
  opacity: 0;
}
#content .block:hover .detail {
  left: 0;
}
#content .block .line span {
  background-color: #000;
}
#content .block .line span:nth-child(1) {
  width: 10px;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
#content .block .line span:nth-child(2) {
  width: 0;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
#content .block .line span:nth-child(3) {
  width: 10px;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
}
#content .block .line span:nth-child(4) {
  width: 0;
  height: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
}
#content .comingsoon {
  display: flex;
  margin-bottom: 10px;
}
#content #award1 .box {
  background-color: #ff003c;
}
#content #award1 .award::before {
  background: url("../img/award1_triangle.png") no-repeat top center;
  background-size: contain;
}
#content #award1 .detail {
  background-color: rgba(255, 0, 60, 0.9);
}
#content #award1 .line span {
  background-color: #ff003c;
}
#content #award2 .box {
  background-color: #3f21d5;
}
#content #award2 .award::before {
  background: url("../img/award2_triangle.png") no-repeat top center;
  background-size: contain;
}
#content #award2 .detail {
  background-color: rgba(63, 33, 213, 0.9);
}
#content #award2 .line span {
  background-color: #3f21d5;
}
#content #award3 .box {
  background-color: #1589ff;
}
#content #award3 .award::before {
  background: url("../img/award3_triangle.png") no-repeat top center;
  background-size: contain;
}
#content #award3 .detail {
  background-color: rgba(21, 137, 255, 0.9);
}
#content #award3 .line span {
  background-color: #1589ff;
}
#content #award4 .box {
  background-color: #ff4200;
}
#content #award4 .award::before {
  background: url("../img/award4_triangle.png") no-repeat top center;
  background-size: contain;
}
#content #award4 .detail {
  background-color: rgba(255, 66, 0, 0.9);
}
#content #award4 .line span {
  background-color: #ff4200;
}
#content #award5 .box {
  background-color: #00b615;
}
#content #award5 .txt {
  top: inherit;
  bottom: 10px;
}
#content #award5 .award::before {
  background: url("../img/award5_triangle.png") no-repeat top center;
  background-size: contain;
}
#content #award5 .detail {
  background-color: rgba(0, 182, 21, 0.9);
}
#content #award5 .line span {
  background-color: #00b615;
}
#content #award6 .box {
  background-color: #ff2084;
}
#content #award6 .award::before {
  background: url("../img/award6_triangle.png") no-repeat top center;
  background-size: contain;
}
#content #award6 .detail {
  background-color: rgba(255, 32, 132, 0.9);
}
#content #award6 .line span {
  background-color: #ff2084;
}

#footer {
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 280px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #footer {
    position: static;
    width: auto;
    margin: 0 auto;
  }
}
#footer .logo {
  width: 160px;
  margin: 0 auto 15px;
}
@media only screen and (max-width: 768px) {
  #footer .logo {
    width: 40.625vw;
    margin: 0 auto 5.625vw;
  }
}
#footer .logo img {
  width: 100%;
}
#footer .copyright {
  font-size: 10px;
  padding: 0 15px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  #footer .copyright {
    font-size: 16px;
    font-size: 2.5vw;
    padding: 0 2.34375vw;
    text-align: center;
  }
}
#footer .copyright:last-child {
  text-align: center;
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
  #footer .copyright:last-child {
    margin-top: 0.78125vw;
  }
}