@charset "UTF-8";
/*==================================
 setting
===================================*/
/* @include config.fontFamily01(normal, .1rem); */
.wrapper p {
  margin-top: 0;
}

.c-loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  place-items: center;
  pointer-events: none;
  background: linear-gradient(45deg, #FFF, #e4007f, #fdb2da);
  background-size: 180% 180%;
  animation: bggradient 10s ease infinite;
}
.c-loader-bg .c-loader-container {
  width: 100%;
  text-align: center;
  font-weight: bold;
  transform: rotate(0.05deg);
}
.c-loader-bg .c-loader-container span {
  display: block;
  background: #fdb2da;
  width: 100px;
  height: 5px;
  margin-top: 5px;
  animation: load 3s infinite;
  border-radius: 5px;
}
@media screen and (max-width: 800px) {
  .c-loader-bg .c-loader-container p {
    max-width: 90%;
    margin: 0 5%;
  }
}

.c-loader-container span:nth-child(2) {
  animation-delay: 100ms;
}

.c-loader-container span:nth-child(3) {
  animation-delay: 200ms;
}

@keyframes load {
  50% {
    width: 5px;
    margin-right: 95px;
    opacity: 0.1;
  }
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*==================================
 wrap_all
===================================*/
.wrap_all {
  position: relative;
  animation: fadein 2s forwards;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wrap_all .pc_bgBox {
  position: fixed;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
.wrap_all .pc_bgBox .charaBox {
  position: relative;
  height: 100vh;
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 1500px) {
  .wrap_all .pc_bgBox .charaBox {
    position: relative;
    display: none;
  }
}
.wrap_all .pc_bgBox .charaBox p {
  width: 35%;
  max-width: 700px;
  position: absolute;
  bottom: -10px;
  left: 4%;
  opacity: 0;
  animation: charaAnime 54s infinite;
}
.wrap_all .pc_bgBox .charaBox .chara01 {
  animation-delay: 0;
}
.wrap_all .pc_bgBox .charaBox .chara02 {
  animation-delay: 9s;
}
.wrap_all .pc_bgBox .charaBox .chara03 {
  animation-delay: 18s;
}
.wrap_all .pc_bgBox .charaBox .chara04 {
  animation-delay: 27s;
}
.wrap_all .pc_bgBox .charaBox .chara05 {
  animation-delay: 36s;
}
.wrap_all .pc_bgBox .charaBox .chara06 {
  animation-delay: 45s;
}
@media screen and (max-width: 800px) {
  .wrap_all .pc_bgBox {
    position: relative;
    display: none;
  }
}
.wrap_all .pc_bgBox .pc_bg {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  animation: bgAnime 54s infinite;
}
.wrap_all .pc_bgBox .bg01 {
  background-image: url(../img/bg_01street.jpg);
  background-size: cover;
}
.wrap_all .pc_bgBox .bg02 {
  background-image: url(../img/bg_02idol.jpg);
  background-size: cover;
  animation-delay: 9s;
}
.wrap_all .pc_bgBox .bg03 {
  background-image: url(../img/bg_03fashion.jpg);
  background-size: cover;
  animation-delay: 18s;
}
.wrap_all .pc_bgBox .bg04 {
  background-image: url(../img/bg_04disco.jpg);
  background-size: cover;
  animation-delay: 27s;
}
.wrap_all .pc_bgBox .bg05 {
  background-image: url(../img/bg_05sea.jpg);
  background-size: cover;
  animation-delay: 36s;
}
.wrap_all .pc_bgBox .bg06 {
  background-image: url(../img/bg_06ball.jpg);
  background-size: cover;
  animation-delay: 45s;
}
.wrap_all h1.pc {
  position: fixed;
  bottom: 0;
  left: 10px;
  text-indent: -9999px;
  background-image: url(../img/logo_oshare20th.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 28%;
  height: 0;
  padding-top: 10%;
  margin: 10px 0 0 10px;
  z-index: 10;
}
.wrap_all h1.pc a {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes bgAnime {
  0% {
    opacity: 0;
    transform: scale(1, 1);
  }
  1% {
    opacity: 1;
    transform: scale(1, 1);
  }
  5% {
    opacity: 1;
    transform: scale(1, 1);
  }
  21% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }
  25% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }
  26% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes charaAnime {
  0% {
    opacity: 0;
    transform: translateX(30%);
  }
  2% {
    opacity: 1;
    transform: translateX(0);
  }
  10% {
    opacity: 1;
  }
  18% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*==================================
 wrap
===================================*/
.wrap {
  width: 860px;
  max-width: 860px;
  position: absolute;
  right: 70px;
  text-align: center;
  margin: 0 auto;
  background-image: url(../img/bg_lace_left.png), url(../img/bg_lace_rigth.png);
  background-repeat: repeat-y, repeat-y;
  background-position: left, right;
}
@media screen and (max-width: 1500px) {
  .wrap {
    right: 0;
    left: 0;
  }
}
@media screen and (max-width: 800px) {
  .wrap {
    width: 100%;
    position: relative;
    background: none;
  }
}
.wrap article {
  position: relative;
  width: 800px;
  max-width: 800px;
  text-align: left;
  background-color: #e4007f;
  background-image: url(../img/bg_main.jpg);
  background-size: 100% auto;
  background-repeat: repeat-y;
  margin: 0 30px;
}
@media screen and (max-width: 800px) {
  .wrap article {
    width: 100%;
    margin: 0;
  }
}
.wrap article .pagetop {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 12;
}
.wrap article .pagetop a {
  display: block;
  background-color: #FFF;
  color: #e4007f;
  font-size: 3rem;
  border-radius: 10px;
  box-shadow: 2px 2px 3px #e4007f;
  text-align: center;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.wrap article .pagetop a:hover {
  color: #fdb2da;
  text-decoration: none;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}

.area .circles {
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 800px;
  height: 100%;
  overflow: hidden;
}
.area .circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  opacity: 0.01;
  animation: animate 25s linear infinite;
  top: -150px;
}
.area .circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  background: url(../img/bg_heart01.png) no-repeat;
  background-size: contain;
  animation-delay: 0s;
}
.area .circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  background: url(../img/bg_star01.png) no-repeat;
  background-size: contain;
  animation-delay: 2s;
  animation-duration: 12s;
}
.area .circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  background: url(../img/bg_heart01.png) no-repeat;
  background-size: contain;
  animation-delay: 4s;
}
.area .circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  background: url(../img/bg_star01.png) no-repeat;
  background-size: contain;
  animation-delay: 0s;
  animation-duration: 18s;
}
.area .circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  background: url(../img/bg_heart01.png) no-repeat;
  background-size: contain;
  animation-delay: 0s;
}
.area .circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  background: url(../img/bg_star01.png) no-repeat;
  background-size: contain;
  animation-delay: 3s;
}
.area .circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  background: url(../img/bg_heart01.png) no-repeat;
  background-size: contain;
  animation-delay: 7s;
}
.area .circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  background: url(../img/bg_star01.png) no-repeat;
  background-size: contain;
  animation-delay: 15s;
  animation-duration: 45s;
}
.area .circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  background: url(../img/bg_heart01.png) no-repeat;
  background-size: contain;
  animation-delay: 2s;
  animation-duration: 35s;
}
.area .circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  background: url(../img/bg_star01.png) no-repeat;
  background-size: contain;
  animation-delay: 0s;
  animation-duration: 11s;
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

/*==================================
 header
===================================*/
.top header {
  position: relative;
  background-image: url(../img/oshare20th_kv_bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 880px;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 800px) {
  .top header {
    background-size: cover;
    height: 110vw;
  }
}
.top header .kv {
  position: absolute;
  top: 4%;
  left: 10%;
  width: 77.9874213836vw;
  max-width: 620px;
}
.top header .copy {
  position: absolute;
  bottom: 2%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.top header .copy h1 {
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
  transform: rotate(0.05deg);
  color: #FFF;
  display: inline-block;
  padding-bottom: 10px;
  text-shadow: 3px 3px 3px #e4007f, -3px -3px 3px #e4007f, -3px 3px 3px #e4007f, 3px -3px 3px #e4007f, 0px 3px 3px #e4007f, 0 -3px 3px #e4007f, -3px 0 3px #e4007f, 3px 0 3px #e4007f;
}
.top header .copy h1 span {
  color: #fcdd0f;
}
@media screen and (max-width: 800px) {
  .top header .copy h1 {
    font-size: 5vw;
    line-height: 1.2;
  }
}
.top header .copy h1::after {
  content: "";
  background: url(../img/line_heart.jpg) no-repeat center;
  display: block;
  height: 12px;
}

header .logo {
  position: relative;
  width: 45%;
  max-width: 350px;
  margin-bottom: 1rem;
  padding: 1rem 0 0 1rem;
  z-index: 5;
}
header .bread {
  position: relative;
  width: auto;
  margin: 0 5% 3rem;
  padding-bottom: 0.5rem;
  z-index: 5;
  border-bottom: solid 1px #fdb2da;
  font-family: "ヒラギノ丸ゴ ProN W4", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 800px) {
  header .bread {
    font-size: 1.2rem;
  }
}
header .bread li {
  display: inline;
  margin-right: 1rem;
}
header .bread li li::after {
  content: " ＞";
}
header .bread li a {
  color: #FFF;
  transition: 0.3s;
}
header .bread li a::after {
  content: " ＞";
}
header .bread li a:hover {
  color: #0daff2;
}

.top header .logo {
  display: none;
}

header nav {
  position: relative;
}
header nav #overlay-button {
  position: fixed;
  right: 110px;
  top: 10px;
  z-index: 21;
  cursor: pointer;
  width: 12.5%;
  max-width: 100px;
  _height: 11.4%;
  height: 100px;
  max-height: 100px;
  background-image: url(../img/menu_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
  padding-top: 35px;
}
@media screen and (max-width: 800px) {
  header nav #overlay-button {
    right: 10px;
    width: 18%;
    padding-top: 5.5%;
    background-size: contain;
  }
}
@media screen and (max-width: 640px) {
  header nav #overlay-button {
    padding-top: 6%;
  }
}
header nav #overlay-button span {
  height: 4px;
  width: 50%;
  border-radius: 2px;
  background-color: #FFF;
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;
  margin: 0 auto;
}
header nav #overlay-button span::before {
  top: -15px;
  visibility: visible;
}
@media screen and (max-width: 640px) {
  header nav #overlay-button span::before {
    top: -12px;
  }
}
header nav #overlay-button span::after {
  top: 15px;
}
@media screen and (max-width: 640px) {
  header nav #overlay-button span::after {
    top: 12px;
  }
}
header nav #overlay-button span::before, header nav #overlay-button span::after {
  height: 4px;
  width: 100%;
  border-radius: 2px;
  background-color: #FFF;
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out;
}
header nav #overlay-button :hover span, header nav #overlay-button :hover span::before, header nav #overlay-button :hover span::after {
  background: #fff;
}
header nav input[type=checkbox] {
  display: none;
}
header nav input[type=checkbox]:checked ~ #overlay {
  visibility: visible;
}
header nav input[type=checkbox]:checked ~ #overlay-button:hover span, header nav input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
}
header nav input[type=checkbox]:checked ~ #overlay-button span::before {
  transform: rotate(45deg) translate(10px, 10px);
}
@media screen and (max-width: 800px) {
  header nav input[type=checkbox]:checked ~ #overlay-button span::before {
    transform: rotate(45deg) translate(8.5px, 8.5px);
  }
}
header nav input[type=checkbox]:checked ~ #overlay-button span::after {
  transform: rotate(-45deg) translate(10px, -10px);
}
@media screen and (max-width: 800px) {
  header nav input[type=checkbox]:checked ~ #overlay-button span::after {
    transform: rotate(-45deg) translate(8.5px, -8.5px);
  }
}
header nav #overlay {
  height: 100vh;
  width: 100%;
  max-width: 800px;
  background: linear-gradient(45deg, #fdb2da, #FFF, #fdb2da);
  background-size: 160% 160%;
  animation: bggradient 10s ease infinite;
  opacity: 0.98;
  z-index: 20;
  visibility: hidden;
  position: fixed;
}
header nav #overlay ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100vh;
  padding-left: 0;
  list-style-type: none;
}
header nav #overlay ul li {
  padding: 1.4rem 0 0.4rem;
  margin-bottom: 1.4rem;
  position: relative;
}
header nav #overlay ul li a {
  color: #e4007f;
  text-decoration: none;
  font-size: 2.8rem;
  font-weight: bold;
  transition: 0s;
}
@media screen and (max-width: 800px) {
  header nav #overlay ul li a {
    font-size: 2rem;
  }
}
header nav #overlay ul li::before {
  background: #0daff2;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
header nav #overlay ul li:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*==================================
 TOP menu
===================================*/
.top nav.main {
  margin: 0 7% 5rem;
}
.top nav.main ul {
  display: flex;
  flex-flow: row wrap;
  align-content: space-around;
  justify-content: center;
  width: 100%;
  padding-top: 5px;
}
.top nav.main ul li {
  margin: 0 1%;
  width: 47%;
}
.top nav.main ul li a {
  display: block;
  transition: 0.5s;
}
.top nav.main ul li a:hover {
  transform: translateY(-5px);
}

/*==================================
 main
===================================*/
.main {
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.main h2.main {
  font-size: 2.8rem;
  padding: 1rem 3rem 1rem 1rem;
  margin-bottom: 3rem;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 3px 3px 3px #e4007f, -3px -3px 3px #e4007f, -3px 3px 3px #e4007f, 3px -3px 3px #e4007f, 0px 3px 3px #e4007f, 0 -3px 3px #e4007f, -3px 0 3px #e4007f, 3px 0 3px #e4007f;
  position: relative;
  display: inline-block;
  border-top: solid 4px #fdb2da;
  border-right: solid 4px #fdb2da;
  border-bottom: solid 4px #fdb2da;
  border-radius: 0 50px 50px 0;
  background: url(../img/h2_bg.png) repeat-x bottom;
}
@media screen and (max-width: 800px) {
  .main h2.main {
    font-size: 2.2rem;
  }
}
.main h2.main i {
  color: #fcdd0f;
}
.main h3.main {
  position: relative;
  padding: 1rem 2.5rem;
  font-size: 2.4rem;
  background: #FFF;
  box-shadow: 2px 2px 3px #fdb2da;
  color: #e4007f;
  display: table;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 800px) {
  .main h3.main {
    font-size: 2rem;
  }
}
.main h3.main::before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  content: "";
  border: 3px dotted #e4007f;
}
.main .copy {
  text-align: center;
  margin-bottom: 5rem;
}
.main .copy p {
  position: relative;
  text-shadow: 2px 2px 3px #e4007f;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  display: inline;
  background: linear-gradient(transparent 60%, #0daff2 40%);
  padding-bottom: 0.5rem;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 800px) {
  .main .copy p {
    font-size: 2rem;
  }
}
.main .copy p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
}

.main .pickBox {
  position: relative;
  margin: 0 5% 5rem;
  padding: 1.5rem;
  background: #FFF;
  border: double 7px #e4007f;
  border-radius: 30px 0 0 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform: translateX(80px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
.main .pickBox a {
  text-decoration: none;
  color: #e4007f;
  display: block;
}
.main .pickBox a h3 {
  border-left: 10px solid #fcdd0f;
  font-size: 2.4rem;
  line-height: 1.4;
  padding-left: 15px;
  margin-bottom: 2rem;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 800px) {
  .main .pickBox a h3 {
    font-size: 2rem;
  }
}
.main .pickBox a .arw {
  position: relative;
  font-weight: bold;
  display: inline-block;
  padding-right: 30px;
}
.main .pickBox a .arw::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e4007f;
  transition: all 0.3s;
}
.main .pickBox a .arw::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 15px;
  height: 1px;
  background: #e4007f;
  transform: rotate(35deg);
  transition: all 0.3s;
}
.main .pickBox a .arw:hover::before {
  left: 20%;
}
.main .pickBox a .arw:hover::after {
  right: -20%;
}
.main .pickBox a img {
  transition: 0.5s;
}
.main .pickBox a img:hover {
  opacity: 0.8;
}

.main .articleBox {
  margin: 0 5% 5rem;
  padding: 1.5rem;
  background: #FFF;
  border: double 7px #e4007f;
  border-radius: 30px 0 0 0;
  color: #e4007f;
  z-index: 5;
}
.main .articleBox h3 {
  border-left: 10px solid #fcdd0f;
  font-size: 2.4rem;
  line-height: 1.4;
  padding-left: 15px;
  margin-bottom: 2rem;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 800px) {
  .main .articleBox h3 {
    font-size: 2rem;
  }
}
.main .articleBox h4 {
  font-size: 2rem;
  transform: rotate(0.05deg);
  margin-bottom: 1rem;
}
@media screen and (max-width: 800px) {
  .main .articleBox h4 {
    font-size: 1.8rem;
  }
}
.main .articleBox .date {
  border-bottom: dotted 3px #fdb2da;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  font-family: "ヒラギノ丸ゴ ProN W4", "メイリオ", "Meiryo", sans-serif;
  text-align: right;
}
.main .articleBox p.main {
  margin-bottom: 2rem;
  font-family: "ヒラギノ丸ゴ ProN W4", "メイリオ", "Meiryo", sans-serif;
}
.main .articleBox ul.main {
  padding-left: 20px;
  margin-bottom: 2rem;
  font-family: "ヒラギノ丸ゴ ProN W4", "メイリオ", "Meiryo", sans-serif;
}
.main .articleBox ul.main li {
  text-indent: -1.6rem;
  padding-left: 1.6rem;
  transform: rotate(0.05deg);
}
.main .articleBox ul.main li i {
  padding-right: 1rem;
  color: #fdb2da;
  -webkit-text-stroke: 2px #e4007f;
}
.main .articleBox ul.main ul.aten {
  font-family: "ヒラギノ丸ゴ ProN W4", "メイリオ", "Meiryo", sans-serif;
}
.main .articleBox .imgBox {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.main .articleBox .imgBox.box2 {
  justify-content: space-between;
}
.main .articleBox figure {
  margin-bottom: 1.5rem;
}
.main .articleBox .box2 figure {
  width: 48%;
}
.main .articleBox table {
  width: 100%;
  margin-bottom: 3rem;
  border-spacing: 0;
  border: none;
  border-radius: 10px;
  border-left: 2px solid #fdb2da;
  border-top: 2px solid #fdb2da;
  font-family: "ヒラギノ丸ゴ ProN W4", "メイリオ", "Meiryo", sans-serif;
}
.main .articleBox table tbody {
  font-family: "ヒラギノ丸ゴ ProN W4", "メイリオ", "Meiryo", sans-serif;
}
.main .articleBox table tbody tr th {
  background: #e4007f;
  color: #FFF;
  text-align: center;
  padding: 0.2rem;
}
.main .articleBox table tbody tr td {
  padding: 0.2rem;
}
.main .articleBox table tbody tr td span {
  display: block;
}
.main .articleBox table tbody tr > * {
  border: none;
  border-right: 2px solid #fdb2da;
  border-bottom: 2px solid #fdb2da;
}
.main .articleBox table tbody tr:first-child > *:first-child {
  border-radius: 9px 0 0 0;
}
.main .articleBox table tbody tr:first-child > *:last-child {
  border-radius: 0 9px 0 0;
}
.main .articleBox table tbody tr:last-child > *:first-child {
  border-radius: 0 0 0 9px;
}
.main .articleBox table tbody tr:last-child > *:last-child {
  border-radius: 0 0 9px 0;
}
.main .articleBox .btn {
  padding: 1rem 2rem;
  width: 50%;
  margin: 0 auto 2rem;
  text-align: center;
  transition: 0.3s;
  background-size: 200% auto;
  border: solid 3px #e4007f;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: bold;
  font-family: "ヒラギノ丸ゴ ProN W4", "メイリオ", "Meiryo", sans-serif;
  background-image: linear-gradient(to right, #fdb2da 0%, #fcdd0f 100%);
}
@media screen and (max-width: 800px) {
  .main .articleBox .btn {
    font-size: 1.6rem;
    width: 80%;
  }
}
.main .articleBox .btn a {
  color: #e4007f;
  display: block;
  width: 100%;
}
.main .articleBox .btn:hover {
  background-position: right center;
}
.main .articleBox .type {
  background: #e4007f;
  color: #FFF;
  font-weight: bold;
  padding: 0.5rem 2rem;
  margin-bottom: 2rem;
  display: inline-block;
  border-radius: 30px;
  font-family: "ヒラギノ丸ゴ ProN W4", "メイリオ", "Meiryo", sans-serif;
}

.main .scroll {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
}

/*==================================
 sort
===================================*/
.sortBox_inner {
  position: relative;
  margin: 0 5% 3rem;
  z-index: 5;
}
.sortBox_inner .el_searchResult {
  text-align: right;
  margin-bottom: 1rem;
}
.sortBox_inner .bl_selectBlock_content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 1rem;
}
.sortBox_inner .bl_selectBlock_content input {
  display: none;
}
.sortBox_inner .bl_selectBlock_content input:checked + label span::before {
  content: "✓";
  font-weight: bold;
}
.sortBox_inner .bl_selectBlock_content .bl_selectBlock_check {
  display: block;
  width: 30%;
  text-align: center;
  color: #e4007f;
  background: linear-gradient(#FFF, #fdb2da);
  border-radius: 50px;
  padding: 6px;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0.5rem 1rem;
  cursor: pointer;
  box-shadow: 2px 2px 3px #fdb2da;
  transform: rotate(0.05deg);
  transition: 1s ease;
}
@media screen and (max-width: 800px) {
  .sortBox_inner .bl_selectBlock_content .bl_selectBlock_check {
    width: 45%;
    margin: 0 0.2rem 1rem;
  }
}
.sortBox_inner .bl_selectBlock_content .bl_selectBlock_check label .el_checkbox {
  cursor: pointer;
  width: 100%;
  display: block;
}
.sortBox_inner .bl_selectBlock_content .bl_selectBlock_check:hover {
  background: linear-gradient(#fdb2da, #FFF);
}

.bl_searchResultBlock .js_target {
  display: none;
}
.bl_searchResultBlock .js_target.js_selected {
  display: block;
}
.bl_searchResultBlock .bl_selectBlock label {
  display: inline;
}

.bl_selectBlock_release {
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.bl_selectBlock_release:hover {
  color: #0daff2;
}

nav.local {
  position: relative;
  margin: 0 5% 3rem;
  z-index: 5;
}
nav.local ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 1rem;
}
nav.local ul li {
  display: block;
  width: 48%;
  text-align: center;
}
nav.local ul li a {
  display: block;
  width: 100%;
  color: #e4007f;
  background: linear-gradient(#FFF, #fdb2da);
  border-radius: 50px;
  padding: 6px;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 2px 2px 3px #fdb2da;
  transform: rotate(0.05deg);
}
nav.local ul li a:hover {
  background: linear-gradient(#fdb2da, #FFF);
}

.bl_searchResultBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 5% 10rem;
}
.bl_searchResultBlock .sortItem {
  position: relative;
  width: 47%;
  background: #fdb2da;
  border-radius: 15px;
  box-shadow: 2px 2px 3px #e4007f;
  margin: 0 0 3rem;
  transition: 0.3s;
}
.bl_searchResultBlock .sortItem a img {
  border-radius: 15px 15px 0 0;
}
.bl_searchResultBlock .sortItem a div {
  padding: 0 1rem 1rem;
}
.bl_searchResultBlock .sortItem a div .type {
  color: #FFF;
  background: #e4007f;
  display: inline-block;
  padding: 0 2rem;
  border-radius: 30px;
  margin-bottom: 0.5rem;
}
.bl_searchResultBlock .sortItem a div h3 {
  color: #e4007f;
}
.bl_searchResultBlock .sortItem:hover {
  transform: scale(1.1, 1.1);
}

/*==================================
 .about
===================================*/
.about section.game {
  position: relative;
  width: 100%;
  height: 88.8888888889%;
  margin-bottom: 10rem;
}
.about section.game p {
  position: absolute;
  left: 5%;
  top: 120px;
  font-size: 2.4rem;
  z-index: 10;
  width: 55%;
  color: #e4007f;
  text-shadow: 3px 3px 3px #fdb2da, -3px -3px 3px #fdb2da, -3px 3px 3px #fdb2da, 3px -3px 3px #fdb2da, 0px 3px 3px #fdb2da, 0 -3px 3px #fdb2da, -3px 0 3px #fdb2da, 3px 0 3px #fdb2da;
  font-weight: bold;
  line-height: 2;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 640px) {
  .about section.game p {
    font-size: 1.8rem;
    top: 17.5vw;
    line-height: 1.6;
  }
}
@media screen and (max-width: 440px) {
  .about section.game p {
    font-size: 1.6rem;
    top: 0;
    line-height: 1.6;
  }
}
.about section.game figure {
  position: absolute;
  right: 0;
  max-width: 72.5%;
}
.about section.game div {
  padding-top: 80%;
  display: flex;
  overflow: hidden;
}
.about section.game div ul {
  display: flex;
  list-style: none;
  padding: 0;
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.about section.game div ul li {
  width: 16.6666666667vw;
  border: solid 3px #FFF;
  padding: 0;
  margin: 0 0.5rem;
  line-height: 0;
}
@media screen and (max-width: 800px) {
  .about section.game div ul li {
    width: 25vw;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.chara {
  position: relative;
  margin-bottom: 10rem;
}
.chara .love {
  position: relative;
}
.chara .love figure {
  max-width: 77.5%;
}
.chara .love div {
  position: absolute;
  left: 50%;
  top: 160px;
  margin-right: 5%;
}
@media screen and (max-width: 800px) {
  .chara .love div {
    top: 10vw;
  }
}
@media screen and (max-width: 400px) {
  .chara .love div {
    top: 0;
  }
}
.chara .love div h4 {
  width: 100%;
}
.chara .love div h4 span {
  font-size: 4rem;
  color: #f73008;
  text-shadow: 3px 3px 3px #FFF, -3px -3px 3px #FFF, -3px 3px 3px #FFF, 3px -3px 3px #FFF, 0px 3px 3px #FFF, 0 -3px 3px #FFF, -3px 0 3px #FFF, 3px 0 3px #FFF;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .chara .love div h4 span {
    font-size: 3rem;
  }
}
.chara .love div h4::after {
  content: "";
  display: inline-block;
  background: url(../../about/img/ico_heart.png) repeat-x;
  width: 100%;
  height: 20px;
}
.chara .berry {
  position: relative;
  margin-top: -200px;
  max-width: 800px;
  height: 113.75%;
  text-align: right;
}
@media screen and (max-width: 580px) {
  .chara .berry {
    margin-top: 0;
  }
}
.chara .berry figure {
  width: 77.5%;
  padding-left: 22.5%;
}
.chara .berry div {
  position: absolute;
  left: 5%;
  top: 240px;
  text-align: left;
  width: 50%;
}
@media screen and (max-width: 800px) {
  .chara .berry div {
    top: 25vw;
  }
}
@media screen and (max-width: 400px) {
  .chara .berry div {
    top: 0;
  }
}
.chara .berry div h4 {
  width: 100%;
}
.chara .berry div h4 span {
  font-size: 4rem;
  color: #8700c3;
  text-shadow: 3px 3px 3px #FFF, -3px -3px 3px #FFF, -3px 3px 3px #FFF, 3px -3px 3px #FFF, 0px 3px 3px #FFF, 0 -3px 3px #FFF, -3px 0 3px #FFF, 3px 0 3px #FFF;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .chara .berry div h4 span {
    font-size: 3rem;
  }
}
.chara .berry div h4::after {
  content: "";
  display: inline-block;
  background: url(../../about/img/ico_star.png) repeat-x;
  width: 100%;
  height: 20px;
}
.chara .miesha {
  position: relative;
  margin-top: -80px;
}
@media screen and (max-width: 580px) {
  .chara .miesha {
    margin-top: 0;
  }
}
.chara .miesha figure {
  max-width: 77.5%;
}
.chara .miesha div {
  position: absolute;
  left: 50%;
  top: 200px;
  margin-right: 5%;
}
@media screen and (max-width: 800px) {
  .chara .miesha div {
    top: 10vw;
  }
}
@media screen and (max-width: 400px) {
  .chara .miesha div {
    top: 0;
  }
}
.chara .miesha div h4 {
  width: 100%;
}
.chara .miesha div h4 span {
  font-size: 4rem;
  color: #333;
  text-shadow: 3px 3px 3px #FFF, -3px -3px 3px #FFF, -3px 3px 3px #FFF, 3px -3px 3px #FFF, 0px 3px 3px #FFF, 0 -3px 3px #FFF, -3px 0 3px #FFF, 3px 0 3px #FFF;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .chara .miesha div h4 span {
    font-size: 3rem;
  }
}
.chara .miesha div h4::after {
  content: "";
  display: inline-block;
  background: url(../../about/img/ico_btf.png) repeat-x;
  width: 100%;
  height: 20px;
}
.chara .izabella {
  position: relative;
  margin-top: -100px;
  max-width: 800px;
  height: 93.75%;
  text-align: right;
}
@media screen and (max-width: 580px) {
  .chara .izabella {
    margin-top: 0;
  }
}
.chara .izabella figure {
  width: 77.5%;
  padding-left: 22.5%;
}
.chara .izabella div {
  position: absolute;
  left: 5%;
  top: 240px;
  text-align: left;
  width: 50%;
}
@media screen and (max-width: 800px) {
  .chara .izabella div {
    top: 25vw;
  }
}
@media screen and (max-width: 400px) {
  .chara .izabella div {
    top: 0;
  }
}
.chara .izabella div h4 {
  width: 100%;
}
.chara .izabella div h4 span {
  font-size: 4rem;
  color: #910059;
  text-shadow: 3px 3px 3px #FFF, -3px -3px 3px #FFF, -3px 3px 3px #FFF, 3px -3px 3px #FFF, 0px 3px 3px #FFF, 0 -3px 3px #FFF, -3px 0 3px #FFF, 3px 0 3px #FFF;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .chara .izabella div h4 span {
    font-size: 3rem;
  }
}
.chara .izabella div h4::after {
  content: "";
  display: inline-block;
  background: url(../../about/img/ico_circle.png) repeat-x;
  width: 100%;
  height: 20px;
}
.chara p {
  text-shadow: 2px 2px 2px #e4007f, -2px -2px 2px #e4007f, -2px 2px 2px #e4007f, 2px -2px 2px #e4007f, 0px 2px 2px #e4007f, 0 -2px 2px #e4007f, -2px 0 2px #e4007f, 2px 0 2px #e4007f;
  margin-bottom: 2rem;
}
.chara ul {
  text-shadow: 2px 2px 2px #e4007f, -2px -2px 2px #e4007f, -2px 2px 2px #e4007f, 2px -2px 2px #e4007f, 0px 2px 2px #e4007f, 0 -2px 2px #e4007f, -2px 0 2px #e4007f, 2px 0 2px #e4007f;
}

.card div {
  margin: 0 5% 10rem;
}
.card div .cardlist {
  margin-top: 2rem;
}
.card div .cardlist li {
  position: relative;
  margin-bottom: 1rem;
}
.card div .cardlist li a {
  width: 100%;
  display: block;
  transition: 0.3s;
  background-image: linear-gradient(to right, #fdb2da 0%, #FFF 10%, #FFF 25%, #fcdd0f 50%, #FFF 60%, #FFF 75%, #fdb2da 100%);
  background-size: 200% auto;
  padding: 1rem 0 1rem 2rem;
  border-radius: 30px 0 0 30px;
  box-sizing: border-box;
  box-shadow: 2px 2px 3px #e4007f;
  font-size: 2rem;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 800px) {
  .card div .cardlist li a {
    font-size: 1.6rem;
  }
}
.card div .cardlist li a i {
  color: #e4007f;
}
.card div .cardlist li a::before {
  content: "";
  position: absolute;
  background: url(../../about/img/ico_pdf.png) no-repeat right;
  background-size: contain;
  display: inline-block;
  right: 2%;
  width: 100%;
  height: 32px;
}
.card div .cardlist li a:hover {
  background-position: right center;
}

/*==================================
 footer
===================================*/
footer {
  background: url(../img/footer_bg.png) no-repeat bottom;
  padding: 1rem 2% 6rem 2%;
  position: relative;
  z-index: 5;
  text-shadow: 1px 1px 2px #e4007f;
}
footer aside {
  text-align: center;
  margin-bottom: 2rem;
}
footer aside .x a {
  background: url(../img/ico_x.png) no-repeat center;
  background-size: contain;
  display: block;
  width: 12.5%;
  margin: 0 43.75%;
  padding-top: 12.5%;
  text-indent: -9999px;
  transition: 0.5s;
}
@media screen and (max-width: 800px) {
  footer aside .x a {
    width: 20%;
    margin: 0 40%;
  }
}
footer aside .x a:hover {
  transform: translateY(-5px);
}
footer aside p {
  margin-bottom: 0.5rem;
}
footer small {
  display: block;
  margin-bottom: 2rem;
}
footer p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
footer nav ul {
  margin-bottom: 2rem;
}
footer nav ul li {
  display: inline;
  padding-right: 2rem;
}
footer nav ul li a {
  color: #FFF;
}
footer nav ul li i {
  padding-right: 3px;
}
footer .aten {
  font-size: 1.4rem;
}
footer .aten li {
  text-indent: -1.4rem;
  padding-left: 1.4rem;
}
footer .aten li::before {
  content: "※";
}
footer .logo {
  text-align: right;
  width: 100%;
}
footer .logo img {
  max-width: 147px;
  width: 25%;
}/*# sourceMappingURL=main.css.map */