@charset "UTF-8";
:root {
  --color_01: #111;
  --color_02: #222;
  --color_03: #333;
  --text: #000;
  --bg: #eee;
  --red: #ff0000;
  --font_n: "Noto Sans JP", sans-serif;
  --font_e: "Josefin Sans", sans-serif;
}

.pane-contents {
  overflow: hidden;
}

#kerokoro_new {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  color: var(--text);
  font-family: var(--font_n);
  /*【PC】*/
  /*【SP】*/
}
#kerokoro_new .mv {
  background: url(/img/event/2411pre/mv.jpg) no-repeat scroll center bottom/cover;
  text-align: center;
  padding: 110px 0 150px 0;
}
#kerokoro_new .mv .text .title {
  width: 900px;
  margin: auto;
}
@media (max-width: 768px) {
  #kerokoro_new .mv {
    padding: 30px 10px 30px 10px;
  }
  #kerokoro_new .mv .text .title {
    width: 100%;
  }
}
#kerokoro_new .overview {
  padding: 80px 0 30px 0;
}
#kerokoro_new .overview .box {
  border: 1px solid #b0df99;
  border-radius: 20px;
  padding: 0 30px 50px 30px;
  text-align: center;
}
#kerokoro_new .overview .title {
  display: inline-block;
  transform: translateY(-40px);
}
#kerokoro_new .overview .title_text {
  font-size: 1.3em;
  line-height: 2;
  text-align: center;
}
#kerokoro_new .overview .title_text b {
  font-weight: bold;
  color: #3AAE00;
}
#kerokoro_new .overview .title_text .kome {
  font-size: 0.7em;
}
#kerokoro_new .overview ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 10px 0 40px 0;
}
#kerokoro_new .overview ul.shinagire {
  grid-template-columns: 1fr 1fr;
}
#kerokoro_new .overview .bottom_text {
  width: 70%;
  margin: auto;
  font-size: 1.2em;
}
@media (max-width: 768px) {
  #kerokoro_new .overview {
    padding: 40px 0 20px 0;
  }
  #kerokoro_new .overview .text img {
    height: auto !important;
  }
  #kerokoro_new .overview .box {
    padding: 0 15px 20px 15px;
  }
  #kerokoro_new .overview .title {
    height: 25px;
    transform: translateY(-17px);
  }
  #kerokoro_new .overview .title_text {
    width: auto;
    margin: 0;
    font-size: 1em;
    line-height: 1.8;
    text-align: left;
  }
  #kerokoro_new .overview ul {
    display: block;
    margin: 10px 0 0 0;
  }
  #kerokoro_new .overview li + li {
    margin-top: 10px;
  }
  #kerokoro_new .overview .bottom_text {
    width: 100%;
    margin: 20px 0 0 0;
    font-size: 1em;
  }
}
#kerokoro_new .introduction {
  background: url(/img/event/2401pre/kerokoro_novelty/introduction.jpg) no-repeat scroll center bottom/100% auto;
  text-align: center;
  padding: 30px 0 100px 0;
  margin: 0 0 70px 0;
}
#kerokoro_new .introduction .title {
  width: 500px;
  margin: auto;
}
#kerokoro_new .introduction .title_text {
  display: inline-block;
  text-align: left;
  margin: 10px 0 50px;
  font-size: 1.2em;
  line-height: 2;
}
#kerokoro_new .introduction ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
#kerokoro_new .introduction li {
  display: flex;
  grid-gap: 40px;
}
#kerokoro_new .introduction li .img {
  width: 180px;
}
#kerokoro_new .introduction li .text {
  text-align: left;
  font-size: 1.1em;
}
#kerokoro_new .introduction li .text img {
  height: 30px;
  width: auto;
  margin: 0 0 15px 0;
}
#kerokoro_new .introduction li:nth-child(1) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  #kerokoro_new .introduction {
    background: url(/img/event/2401pre/kerokoro_novelty/introduction.jpg) no-repeat scroll center bottom/auto 50%;
    margin: 0 0 30px 0;
    padding: 10px 0 50px 0;
  }
  #kerokoro_new .introduction .title {
    width: 90%;
  }
  #kerokoro_new .introduction .title_text {
    margin: 0 0 30px;
    font-size: 1em;
    line-height: 1.8;
  }
  #kerokoro_new .introduction ul {
    display: block;
  }
  #kerokoro_new .introduction li {
    grid-gap: 20px;
  }
  #kerokoro_new .introduction li .text {
    font-size: 0.9em;
  }
  #kerokoro_new .introduction li .text img {
    height: 20px;
  }
  #kerokoro_new .introduction li + li {
    margin-top: 30px;
  }
}
#kerokoro_new .shopping_btn {
  text-align: center;
  margin: 60px 0 20px 0;
}
#kerokoro_new .shopping_btn .btn {
  background: #FF780B;
  border-radius: 100px;
  color: #fff;
  font-weight: bold;
  padding: 20px 50px;
  width: 40%;
  font-size: 1.7em;
  letter-spacing: 0.05em;
  overflow: hidden;
  position: relative;
  transition: 0.5s;
}
#kerokoro_new .shopping_btn .btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #ff953e;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
#kerokoro_new .shopping_btn .btn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
#kerokoro_new .shopping_btn .btn span {
  position: relative;
  z-index: 1;
}
#kerokoro_new .shopping_btn .btn:after {
  content: "";
  width: 10px;
  height: 10px;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 40px;
  top: 50%;
}
#kerokoro_new .shopping_btn.bottom {
  margin: 60px 0 90px 0;
}
@media (max-width: 768px) {
  #kerokoro_new .shopping_btn {
    margin: 20px 0 10px 0;
  }
  #kerokoro_new .shopping_btn .btn {
    padding: 20px 0px;
    width: 90%;
    font-size: 1.4em;
  }
  #kerokoro_new .shopping_btn.bottom {
    margin: 20px 0 40px 0;
  }
  #kerokoro_new .shopping_btn:after {
    right: 30px;
  }
}
#kerokoro_new .move {
  transition: all 2000ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateY(50px);
  opacity: 0;
}
#kerokoro_new .move.active {
  transform: translateY(0);
  opacity: 1;
}
#kerokoro_new .e {
  font-family: var(--font_e);
}
#kerokoro_new .bg {
  background: var(--bg);
}
#kerokoro_new .kome {
  text-indent: -1em;
  padding-left: 1em;
}
#kerokoro_new .red {
  color: var(--red);
}
#kerokoro_new sup {
  font-size: 0.7em;
  vertical-align: text-top;
}
#kerokoro_new .mini {
  font-size: 0.8em;
}
#kerokoro_new .big {
  font-size: 1.3em;
}
#kerokoro_new a,
#kerokoro_new :before,
#kerokoro_new :after {
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#kerokoro_new .k {
  font-size: 0.7em;
}
#kerokoro_new img {
  vertical-align: bottom;
  width: 100%;
}
#kerokoro_new h1,
#kerokoro_new h2,
#kerokoro_new h3,
#kerokoro_new h4 {
  background: none;
  margin: 0;
  padding: 0;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  #kerokoro_new .inner {
    min-width: 1000px;
    max-width: 1000px;
    margin: auto;
    width: calc(100% - 50px);
  }
  #kerokoro_new .inner_mini {
    min-width: 700px;
    max-width: 700px;
    margin: auto;
    width: calc(100% - 50px);
  }
  #kerokoro_new .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #kerokoro_new .inner,
  #kerokoro_new .inner_mini {
    padding: 0 5%;
  }
  #kerokoro_new .pc {
    display: none;
  }
}/*# sourceMappingURL=kerokoro_new.css.map */