@charset "UTF-8";
:root {
  --red1: #eb1e1e;
  --red2: #D81F26;
  --pink: #fff0f0;
  --gray1: #666;
  --bg-gray: #F5F6F7;
  --transition1: 0.3s ease-out;
  --transition2: 0.8s ease-out 0.5s;
  --pc-visual-height: 248px;
  --pc-anchor-height: 320px;
}

/* hover */
@media print, screen and (min-width: 768px) {
  a.bright {
    transition: var(--transition1);
  }
  a.bright:hover {
    filter: brightness(1.2);
  }
  a.shine {
    transition: all var(--transition1);
    transform: translateZ(0); /* for safari */
    will-change: filter; /* for safari */
  }
  a.shine:hover {
    filter: drop-shadow(0 0 10px yellow);
  }
}
/* font */
.Jost {
  font-family: "Jost", sans-serif;
}

.notosans {
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, "ＭＳ Ｐゴシック", "Arial", sans-serif;
}

@media only screen and (max-width: 767px) {
  main {
    -webkit-font-smoothing: antialiased;
  }
}
#content-body-wrapper {
  margin-bottom: 0;
  background-color: var(--red2);
}

.fade {
  opacity: 0;
  position: relative;
  top: 30px;
  transition: all var(--transition2);
}
.fade.-in {
  opacity: 1;
  top: 0;
}

main {
  font-feature-settings: "palt";
}
main * {
  box-sizing: border-box;
}
main img {
  vertical-align: bottom;
}

@media only screen and (max-width: 767px) {
  main .pc-visual,
  main .pc-anchor {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  #content-nav-wrapper {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.1);
  }
  main {
    display: flex;
    align-items: top;
  }
  main .pc-visual,
  main .pc-anchor {
    width: calc((100% - 390px) / 2);
    text-align: center;
    position: relative;
  }
  main .pc-visual .inner-wrap,
  main .pc-anchor .inner-wrap {
    position: fixed;
    width: calc((100% - 390px) / 2);
    height: calc(100% - 117px);
    background-repeat: no-repeat;
    background-position: center top, center bottom;
  }
  main .pc-visual .inner-wrap {
    background-image: url(/cnbabies/images/bg_pc_left01.png), url(/cnbabies/images/bg_pc_left02.png);
    background-size: 479px auto, 461px auto;
    min-height: 680px;
  }
  main .pc-anchor .inner-wrap {
    background-image: url(/cnbabies/images/bg_pc_right01.png), url(/cnbabies/images/bg_pc_right02.png);
    background-size: 500px auto, 473px auto;
    min-height: 760px;
  }
  main .pc-visual .inner,
  main .pc-anchor .inner {
    position: fixed;
    top: 0;
    bottom: 0;
    margin: auto;
    width: calc((100% - 390px) / 2);
    padding-top: 117px;
    box-sizing: content-box;
  }
  main .pc-visual .inner {
    height: var(--pc-visual-height);
  }
  main .pc-anchor .inner {
    height: var(--pc-anchor-height);
  }
  main.-on .pc-visual .inner-wrap,
  main.-on .pc-anchor .inner-wrap,
  main.-on .pc-visual .inner,
  main.-on .pc-anchor .inner {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
  }
  main.-on .pc-visual .inner-wrap {
    height: calc(100vh - 117px);
    bottom: 0;
  }
  main.-on .pc-anchor .inner-wrap {
    height: calc(100vh - 117px);
    bottom: 0;
  }
  main.-on .pc-visual .inner {
    bottom: calc((100vh - var(--pc-visual-height)) / 3); /* 3 ← ガクつき調整 */
  }
  main.-on .pc-anchor .inner {
    bottom: calc((100vh - var(--pc-anchor-height)) / 3);
  }
  .pc-visual .inner {
    font-weight: bold;
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
  .pc-visual .inner img {
    width: 90%;
    max-width: 304px;
    margin: 15px 0 0 -0.5em;
  }
  .pc-anchor ul.btn_anchor li {
    margin-top: 15px;
  }
  .pc-anchor ul.btn_anchor li img {
    width: auto;
    height: 47px;
  }
  .pc-anchor ul.btn_anchor li a img.-on {
    display: none;
  }
  .pc-anchor ul.btn_anchor li a:hover img:first-child {
    display: none;
  }
  .pc-anchor ul.btn_anchor li a:hover img.-on {
    display: inline;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  main {
    justify-content: left;
  }
  main .pc-visual {
    display: none;
  }
  main .pc-anchor {
    width: calc(100% - 390px);
  }
  main .pc-anchor .inner-wrap,
  main .pc-anchor .inner {
    width: calc(100% - 390px);
  }
}
body > .bg_modal {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s 0s;
}
body > .bg_modal.open {
  opacity: 0.7;
  pointer-events: auto;
  cursor: pointer;
}

dialog {
  margin: 0;
  padding: 0;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  border: none;
}
@media print, screen and (min-width: 768px) {
  dialog {
    width: 80%;
    max-width: 700px;
  }
}
@media only screen and (max-width: 767px) {
  dialog {
    width: 100%;
  }
}
dialog[open] {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: 300ms;
  animation-timing-function: ease-out;
}
dialog .btn_close {
  display: flex;
  justify-content: right;
}
dialog .btn_close a {
  display: block;
}
dialog .btn_close a img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  dialog .btn_close a {
    width: 30px;
  }
}
@media only screen and (max-width: 767px) {
  dialog .btn_close a {
    width: 7.6923076923vw;
  }
}
dialog iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.main-contents {
  width: 100%;
  color: #fff;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", Meiryo, "ＭＳ Ｐゴシック", "Arial", sans-serif;
}
.main-contents img {
  width: 100%;
  max-width: 100%;
}
@media print, screen and (min-width: 768px) {
  .main-contents {
    max-width: 390px;
    margin: 0 auto;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    /*スクロールバー非表示（IE・Edge）*/
    -ms-overflow-style: none;
    /*スクロールバー非表示（Firefox）*/
    scrollbar-width: none;
    /*スクロールバー非表示（webkit）*/
  }
  .main-contents::-webkit-scrollbar {
    display: none;
  }
}

h1.cnbabies {
  position: relative;
  text-align: center;
  font-weight: bold;
  aspect-ratio: 390/718;
  /** animation **/
}
h1.cnbabies span.h1-text {
  position: absolute;
  left: 0;
  color: var(--red2);
}
@media print, screen and (min-width: 768px) {
  h1.cnbabies span.h1-text {
    top: 20px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  h1.cnbabies span.h1-text {
    top: 5.1282051282vw;
    font-size: 5.1282051282vw;
  }
}
@media print, screen and (min-width: 768px) {
  h1.cnbabies span.h1-text img {
    width: 334px;
    margin-top: 15px;
    margin-left: -10px;
  }
}
@media only screen and (max-width: 767px) {
  h1.cnbabies span.h1-text img {
    width: 85.641025641vw;
    margin-top: 3.8461538462vw;
    margin-left: -2.5641025641vw;
  }
}
h1.cnbabies img.scroll {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  filter: drop-shadow(0px 0px 9px rgba(0, 0, 0, 0.5));
}
@media print, screen and (min-width: 768px) {
  h1.cnbabies img.scroll {
    width: 81px;
    bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  h1.cnbabies img.scroll {
    width: 20.7692307692vw;
    bottom: 8.2051282051vw;
  }
}
h1.cnbabies span.h1-text > span {
  display: inline-block;
  margin-right: -1em;
  position: relative;
  top: 1.5em;
  opacity: 0;
  transition: all 0.8s ease-out 1s;
}
h1.cnbabies span.h1-text img {
  transform: scale(0);
  transition: all 0.4s ease-out 1.5s;
}
h1.cnbabies img.bg-img {
  opacity: 0;
  transition: all 0.8s 0s;
}
h1.cnbabies img.scroll {
  transform: scale(0);
  transition: all 0.4s ease-out 1.8s;
}
h1.cnbabies.-on span.h1-text > span {
  top: 0;
  opacity: 1;
}
h1.cnbabies.-on span.h1-text img {
  transform: scale(1);
}
h1.cnbabies.-on img.bg-img {
  opacity: 1;
}
h1.cnbabies.-on img.scroll {
  transform: scale(1);
  animation: scroll-text 10s 2s infinite;
}

@keyframes scroll-text {
  0% {
    transform: translateY(0);
  }
  3% {
    transform: translateY(0.4em);
  }
  10% {
    transform: translateY(0);
  }
  13% {
    transform: translateY(0.4em);
  }
  20% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
section#story p {
  text-align: center;
  font-weight: bold;
  line-height: 2.4;
}
@media print, screen and (min-width: 768px) {
  section#story {
    padding: 40px 0;
  }
  section#story p {
    margin-top: 32px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  section#story {
    padding: 10.2564102564vw 0;
  }
  section#story p {
    margin-top: 8.2051282051vw;
    font-size: 4.6153846154vw;
  }
}

@media print, screen and (min-width: 768px) {
  section#characters {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  section#characters {
    padding-bottom: 10.2564102564vw;
  }
}
section#characters .inner {
  background-color: #fff;
  width: 91.8%;
  margin: 0 auto;
  color: var(--gray1);
  line-height: 1.8;
}
@media print, screen and (min-width: 768px) {
  section#characters .inner {
    margin-top: 40px;
    padding: 32px 16px 60px;
    border-radius: 40px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  section#characters .inner {
    margin-top: 10.2564102564vw;
    padding: 8.2051282051vw 4.1025641026vw 15.3846153846vw;
    border-radius: 10.2564102564vw;
    font-size: 4.1025641026vw;
  }
}
@media print, screen and (min-width: 768px) {
  section#characters h2 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  section#characters h2 {
    margin-bottom: 5.1282051282vw;
  }
}
section#characters .ex-icon {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  section#characters .ex-icon {
    width: 32px;
    height: 32px;
    margin-top: 26px;
  }
}
@media only screen and (max-width: 767px) {
  section#characters .ex-icon {
    width: 8.2051282051vw;
    height: 8.2051282051vw;
    margin-top: 6.6666666667vw;
  }
}

@media print, screen and (min-width: 768px) {
  section#movie {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  section#movie {
    padding: 10.2564102564vw 0;
  }
}
@media print, screen and (min-width: 768px) {
  section#movie section.mov_detail {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  section#movie section.mov_detail {
    margin-top: 15.3846153846vw;
  }
}
section#movie section.mov_detail h3 {
  padding: 0 10px;
  text-align: center;
}
section#movie section.mov_detail h3 span {
  display: inline-block;
  background-color: #fff;
  color: var(--red2);
  line-height: 1.1;
}
@media print, screen and (min-width: 768px) {
  section#movie section.mov_detail h3 {
    font-size: 16px;
  }
  section#movie section.mov_detail h3 span {
    border-radius: 30px;
    padding: 10px 45px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 767px) {
  section#movie section.mov_detail h3 {
    font-size: 4.1025641026vw;
  }
  section#movie section.mov_detail h3 span {
    border-radius: 7.6923076923vw;
    padding: 2.5641025641vw 11.5384615385vw;
    margin-bottom: 4.1025641026vw;
  }
}
section#movie section.mov_detail figure {
  width: 91%;
  margin-left: auto;
  margin-right: auto;
}
section#movie section.mov_detail p {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  section#movie section.mov_detail p {
    width: 326px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  section#movie section.mov_detail p {
    width: 83.5897435897vw;
    font-size: 4.1025641026vw;
  }
}

section#p2g {
  background-color: var(--bg-gray);
}
@media print, screen and (min-width: 768px) {
  section#p2g .inner {
    margin-top: 40px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 16px 16px 40px;
  }
}
@media only screen and (max-width: 767px) {
  section#p2g .inner {
    margin-top: 10.2564102564vw;
    border-top-left-radius: 10.2564102564vw;
    border-top-right-radius: 10.2564102564vw;
    padding: 4.1025641026vw 4.1025641026vw 10.2564102564vw;
  }
}
section#p2g h2 {
  margin-bottom: 1em;
}
section#p2g p.him {
  text-align: right;
}
section#p2g p.him.lrg {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  section#p2g p.him.lrg {
    right: -7px;
  }
  section#p2g p.him.lrg img {
    width: 349px;
  }
}
@media only screen and (max-width: 767px) {
  section#p2g p.him.lrg {
    right: -1.7948717949vw;
  }
  section#p2g p.him.lrg img {
    width: 89.4871794872vw;
  }
}
@media print, screen and (min-width: 768px) {
  section#p2g p {
    margin-top: 32px;
  }
  section#p2g p img {
    width: 342px;
  }
  section#p2g p + p.second {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  section#p2g p {
    margin-top: 8.2051282051vw;
  }
  section#p2g p img {
    width: 87.6923076923vw;
  }
  section#p2g p + p.second {
    margin-top: 6.1538461538vw;
  }
}
section#p2g figure {
  width: 97%;
  margin: 12px auto;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  section#p2g figure {
    margin: 3.0769230769vw auto;
  }
}

section#others {
  background: url(/cnbabies/images/bg_others.png) no-repeat 0 bottom;
  background-size: 100% auto;
  background-color: var(--red2);
}
section#others h3 {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  section#others {
    padding-bottom: 85px;
  }
  section#others h3 {
    font-size: 26px;
  }
  section#others h3 img {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  section#others {
    padding-bottom: 21.7948717949vw;
  }
  section#others h3 {
    font-size: 6.6666666667vw;
  }
  section#others h3 {
    font-size: 6.6666666667vw;
  }
  section#others h3 img {
    margin-bottom: 2.5641025641vw;
  }
}
section#others ul.cn_others {
  font-size: 0;
  text-align: center;
}
section#others ul.cn_others li {
  display: inline-block;
  background-color: #fff;
  color: var(--red2);
  line-height: 1.1;
}
@media print, screen and (min-width: 768px) {
  section#others ul.cn_others {
    padding: 16px 8px;
  }
  section#others ul.cn_others li {
    margin: 8px 8px 0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  section#others ul.cn_others {
    padding: 4.1025641026vw 2.0512820513vw;
  }
  section#others ul.cn_others li {
    margin: 2.0512820513vw 2.0512820513vw 0;
    padding: 1.5384615385vw 3.5897435897vw;
    border-radius: 5.1282051282vw;
    font-size: 3.0769230769vw;
  }
}

section#statement {
  background: url(/cnbabies/images/bg_statement.png) no-repeat 0 0;
  background-size: 100% auto;
  background-color: var(--bg-gray);
  color: var(--red2);
  text-align: center;
}
section#statement .inner-wrap {
  background-color: #fff;
}
section#statement .inner {
  width: 91.8%;
  margin: 0 auto;
}
section#statement h2 {
  white-space: nowrap;
  margin-right: -0.5em;
}
section#statement p {
  font-weight: bold;
  line-height: 2.2;
}
@media print, screen and (min-width: 768px) {
  section#statement {
    padding-top: 315px;
    background-position: 0 50px;
  }
  section#statement .inner-wrap {
    padding-bottom: 40px;
  }
  section#statement .inner {
    padding: 0 16px 40px;
    border-left: 4px solid var(--red2);
    border-right: 4px solid var(--red2);
    border-bottom: 4px solid var(--red2);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  section#statement h2 {
    font-size: 32px;
    font-weight: 900;
  }
  section#statement p {
    margin-top: 30px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  section#statement {
    padding-top: 80.7692307692vw;
    background-position: 0 12.8205128205vw;
  }
  section#statement .inner-wrap {
    padding-bottom: 10.2564102564vw;
  }
  section#statement .inner {
    padding: 0 4.1025641026vw 10.2564102564vw;
    border-left: 1.0256410256vw solid var(--red2);
    border-right: 1.0256410256vw solid var(--red2);
    border-bottom: 1.0256410256vw solid var(--red2);
    border-bottom-left-radius: 10.2564102564vw;
    border-bottom-right-radius: 10.2564102564vw;
  }
  section#statement h2 {
    font-size: 8.2051282051vw;
    -webkit-text-stroke: 1px var(--red2);
    letter-spacing: 0.05em;
  }
  section#statement p {
    margin-top: 7.6923076923vw;
    font-size: 4.1025641026vw;
  }
}