@charset "UTF-8";
/* =========================================
   Mixins / Functions（流体サイズ・メディアクエリ）
========================================= */
/* =========================================
   Menu  ハンバーガーボタン + スライドメニュー
   全ページ共通。app.scss / common.scss が @import "menu" で読み込む。
========================================= */
body.is-menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.header__menu {
  position: fixed;
  top: min(1.5625cqw, 12px);
  right: min((100vw - min(100vw, 768px)) / 2 + min(2.6041666667cqw, 20px), 100vw - min(13.1510416667cqw, 101px));
  width: min(11.5885416667cqw, 89px);
  height: min(11.5885416667cqw, 89px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background-color: #dae188;
  box-shadow: 3px 3px 3px rgba(59, 41, 32, 0.12);
  cursor: pointer;
  z-index: 40;
}
.header__menu-button {
  position: relative;
  display: block;
  width: min(7.5520833333cqw, 58px);
  height: min(0.6510416667cqw, 5px);
  border-radius: 999px;
  background-color: #32553d;
  transition: background-color 0.2s ease;
}
.header__menu-button::before, .header__menu-button::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-color: #32553d;
  transition: top 0.25s ease, transform 0.25s ease;
}
.header__menu-button::before {
  top: max(-2.0833333333cqw, -16px);
}
.header__menu-button::after {
  top: min(2.0833333333cqw, 16px);
}
.header__menu.is-open .header__menu-button {
  background-color: transparent;
}
.header__menu.is-open .header__menu-button::before {
  top: 0;
  transform: rotate(45deg);
}
.header__menu.is-open .header__menu-button::after {
  top: 0;
  transform: rotate(-45deg);
}
.header__sp-menu {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 25;
}
.header__sp-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__sp-menu-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100cqw, 768px);
  height: 100dvh;
  padding-top: min(19.53125cqw, 150px);
  overflow: hidden;
  background-color: rgba(239, 247, 200, 0.88);
}
.header__sp-menu-list {
  position: relative;
  z-index: 3;
  display: grid;
  gap: min(7.8125cqw, 60px);
}
.header__sp-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__sp-menu-link img {
  width: auto;
  height: min(5.7291666667cqw, 44px);
}
.header__sp-menu-link-size img {
  width: auto;
  height: min(7.2916666667cqw, 56px);
}
.header__sp-menu-character {
  position: absolute;
  left: 50%;
  bottom: min(2.6041666667cqw, 20px);
  width: min(26.953125cqw, 207px);
  transform: translateX(-50%);
  z-index: 2;
}
.header__sp-menu-grass {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

/* =========================================
   Mixins / Functions（流体サイズ・メディアクエリ）
========================================= */
/* ========================================
   Page Specific Styles
======================================== */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

#movie,
#feature,
#feature-01,
#news,
#app {
  scroll-margin-top: 150px;
}

@media screen and (min-width: 769px) {
  body {
    background-color: #dae188;
  }
}

.main {
  background-color: #f9cec0;
}

body.is-opening-modal-open {
  overflow: hidden;
}

body.is-dragging-scrollbar {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media screen and (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .page,
  #wrapper {
    max-width: 100%;
    overflow-x: hidden;
  }
  .page-scrollbar {
    display: none !important;
  }
}
.page-scrollbar {
  display: none;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .page-scrollbar {
    position: fixed;
    top: min(1.3020833333cqw, 10px);
    bottom: min(1.3020833333cqw, 10px);
    right: min(0.6510416667cqw, 5px);
    width: min(1.0416666667cqw, 8px);
    border-radius: 999px;
    display: block;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 19;
  }
}
@media screen and (min-width: 769px) {
  .page-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    background-color: #c1d34e;
    pointer-events: auto;
    cursor: grab;
  }
}

@media screen and (min-width: 769px) {
  body.has-page-scroll .page-scrollbar {
    opacity: 1;
  }
  body.is-menu-open .page-scrollbar {
    opacity: 0;
  }
  body.is-opening-modal-open .page-scrollbar {
    opacity: 0;
  }
}
a {
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.85;
  }
}

picture,
img,
svg {
  display: block;
  width: 100%;
  height: auto;
}

.sp {
  display: none;
}
@media screen and (min-width: 375px) and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

@media screen and (min-width: 375px) and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

#wrapper {
  container-type: inline-size;
  max-width: 768px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: #f9cec0;
}
@media screen and (min-width: 769px) {
  #wrapper {
    max-width: 768px;
    width: 768px;
    height: auto;
    margin: 0 auto;
  }
}

.pc-sidekick {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc-sidekick {
    position: fixed;
    top: 314px;
    width: 216px;
    z-index: 18;
    display: block;
    pointer-events: none;
  }
}
@media screen and (min-width: 769px) {
  .pc-sidekick--left {
    right: calc(50% + 384px + 80px);
  }
}
@media screen and (min-width: 769px) {
  .pc-sidekick--right {
    left: calc(50% + 384px + 80px);
  }
}

@media screen and (max-width: 1440px) {
  .pc-sidekick {
    display: none;
  }
}
/* ========================================
     Components
  ======================================== */
.header {
  position: relative;
  background-color: #fff;
  height: min(14.5833333333cqw, 112px);
  z-index: 20;
}
.header__logo {
  width: min(50.78125cqw, 390px);
  left: min(2.6041666667cqw, 20px);
  top: min(1.5625cqw, 12px);
  position: absolute;
}

.app {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #f9cec0;
}
.app__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 0;
  background: url("/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/app-repeat.webp") center top/min(32.6822916667cqw, 251px) min(30.078125cqw, 231px) repeat;
}
.app span {
  color: inherit;
  font: inherit;
}
.app__title {
  margin: 0 auto;
  padding-top: min(9.1145833333cqw, 70px);
  padding-bottom: min(5.2083333333cqw, 40px);
  width: min(77.6041666667cqw, 596px);
}
.app__library-panel {
  position: relative;
  padding: min(14.3229166667cqw, 110px) min(7.03125cqw, 54px) min(26.0416666667cqw, 200px);
  background: url("/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/app-library-panel.png") center top/100% no-repeat;
}
.app__library-title {
  width: min(51.171875cqw, 393px);
  height: min(5.2083333333cqw, 40px);
  margin: 0 auto;
}
.app__library-sub-title {
  margin-top: min(3.90625cqw, 30px);
  color: #475c47;
  font-size: min(5.7291666667cqw, 44px);
  text-align: center;
}
.app__material-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(49.609375cqw, 381px);
  margin-top: min(4.5572916667cqw, 35px);
  border-radius: min(4.1666666667cqw, 32px);
  background-color: #f9cec0;
  color: #fff;
  font-size: min(5.2083333333cqw, 40px);
  overflow: hidden;
}
.app__material-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.app__archive {
  margin-top: min(4.5572916667cqw, 35px);
  color: #5d5141;
  text-align: center;
}
.app__archive-title {
  color: #5d5141;
  font-size: min(4.1666666667cqw, 32px);
}
.app__archive-text {
  margin-top: min(2.8645833333cqw, 22px);
  color: #5d5141;
  font-size: min(3.125cqw, 24px);
  line-height: 220%;
  letter-spacing: 0.05em;
  text-align: left;
}
.app__archive-text-gap {
  margin-left: -0.4em;
}
.app__archive-text-gap-02 {
  margin-right: -0.4em;
}
.app__archive-line {
  display: block;
  border-bottom: min(0.390625cqw, 3px) solid #fff;
}
.app__archive-text:first-of-type .app__archive-line:first-child {
  border-top: min(0.390625cqw, 3px) solid #fff;
}
.app__archive-text + .app__archive-text {
  margin-top: 0;
}
.app__archive-note {
  margin-top: min(1.953125cqw, 15px);
  color: #9c8f7e;
  font-size: min(2.34375cqw, 18px);
  letter-spacing: 0.1em;
  line-height: 180%;
  text-align: center;
}
.app__archive-more {
  margin-top: min(6.5104166667cqw, 50px);
  color: #5d5141;
  font-size: min(4.1666666667cqw, 32px);
  line-height: 220%;
  letter-spacing: 0.08em;
}
.app__archive-strong {
  color: #5d5141;
  font-size: min(3.125cqw, 24px);
  line-height: 200%;
  letter-spacing: 0.08em;
}
.app__archive-strong-02 {
  position: relative;
  z-index: 2;
  color: #b52524;
  font-size: min(4.1666666667cqw, 32px);
  line-height: 220%;
  letter-spacing: 0.08em;
}
.app__section-stars {
  width: min(18.6197916667cqw, 143px);
  margin: min(6.5104166667cqw, 50px) auto 0;
}
.app__feature-list {
  display: grid;
  gap: min(5.2083333333cqw, 40px);
}
.app__feature-item {
  color: #5d5141;
}
.app__feature-item:first-child {
  margin-top: min(6.5104166667cqw, 50px);
}
.app__feature-title {
  display: flex;
  align-items: end;
  color: #315447;
  font-size: min(5.2083333333cqw, 40px);
  gap: min(1.953125cqw, 15px);
}
.app__feature-title::before {
  position: relative;
  content: "";
  flex-shrink: 0;
  width: min(7.8125cqw, 60px);
  top: min(0.5208333333cqw, 4px);
  aspect-ratio: 120/130;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.app__feature-item:nth-of-type(1) .app__feature-title::before {
  background-image: url("/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/app-library-number-01.png");
}
.app__feature-item:nth-of-type(2) .app__feature-title::before {
  background-image: url("/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/app-library-number-02.png");
}
.app__feature-item:nth-of-type(3) .app__feature-title::before {
  background-image: url("/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/app-library-number-03.png");
}
.app__feature-text {
  margin-top: min(4.1666666667cqw, 32px);
  color: #5d5141;
  font-size: min(3.125cqw, 24px);
  line-height: 180%;
  letter-spacing: 0.08em;
}
.app__feature-caution {
  margin-top: min(1.3020833333cqw, 10px);
  color: #5d5141;
  font-size: min(2.6041666667cqw, 20px);
  line-height: 200%;
  letter-spacing: 0.1em;
}
.app__feature-caution-02 {
  margin-top: min(2.6041666667cqw, 20px);
  color: #5d5141;
  font-size: min(3.125cqw, 24px);
  line-height: 180%;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.app-gap-02 {
  margin-right: -0.4em;
}
.app__tv {
  position: relative;
  overflow: visible;
  padding: min(5.2083333333cqw, 40px) min(7.03125cqw, 54px) 0;
  background-color: #ffc4b1;
  text-align: center;
}
.app__tv::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  width: 100%;
  aspect-ratio: 1536/248;
  background: url("/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/app-tv-wave-top.png") center bottom/100% 100% no-repeat;
  z-index: 2;
  pointer-events: none;
}
.app__tv::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% - 4px);
  width: 100%;
  aspect-ratio: 1536/378;
  background: url("/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/app-tv-wave-bottom.png") center top/100% 100% no-repeat;
  z-index: -1;
  pointer-events: none;
}
.app__tv-character {
  position: absolute;
  top: max(-6.5104166667cqw, -50px);
  left: 0;
  width: min(18.8802083333cqw, 145px);
  z-index: 3;
}
.app__tv-title {
  width: min(51.171875cqw, 393px);
  height: min(5.2083333333cqw, 40px);
  margin: 0 auto;
}
.app__tv-sub-title {
  margin-top: min(3.90625cqw, 30px);
  color: #475c47;
  font-size: min(5.7291666667cqw, 44px);
  text-align: center;
}
.app__tv-visual {
  width: min(85.9375cqw, 660px);
  margin: min(3.90625cqw, 30px) auto 0;
}
.app__tv-text {
  margin-top: min(3.90625cqw, 30px);
  color: #5d5141;
  font-size: min(3.125cqw, 24px);
  line-height: 220%;
  letter-spacing: 0.07em;
  text-align: left;
}
.app__tv-text .--left {
  color: #5d5141;
  margin-left: -0.4em;
}
.app__tv-text .--right {
  color: #5d5141;
  margin-right: -0.4em;
}
.app__tv-line {
  display: block;
  border-bottom: min(0.390625cqw, 3px) solid #ffebe4;
  white-space: nowrap;
}
.app__tv-note {
  margin-top: min(1.953125cqw, 15px);
  color: #9c8f7e;
  font-size: min(2.34375cqw, 18px);
  letter-spacing: -0.06em;
  line-height: 180%;
  text-align: left;
}
.app__tv-note .--left {
  color: #9c8f7e;
  margin-left: -0.3em;
}
.app__tv-note .--right {
  color: #9c8f7e;
  margin-right: -0.3em;
}
.app__tv-note .--right-02 {
  color: #9c8f7e;
  margin-right: -0.2em;
}
.app__tv-btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  min-height: min(10.4166666667cqw, 80px);
  padding: min(0.5208333333cqw, 4px) min(6.25cqw, 48px) min(0.5208333333cqw, 4px);
  border-radius: 999px;
  background-color: #5d5141;
  color: #fff;
  font-weight: 700;
  font-size: min(4.4270833333cqw, 34px);
  text-align: center;
  white-space: nowrap;
  margin: min(5.2083333333cqw, 40px) auto min(3.90625cqw, 30px);
}
.app__tv-btn-text {
  color: #315447;
  font-size: min(5.2083333333cqw, 40px);
  margin-top: min(5.2083333333cqw, 40px);
}
.app__tv-message {
  margin: 0 auto;
  color: #5d5141;
  margin-top: min(29.9479166667cqw, 230px);
  width: min(91.796875cqw, 705px);
  font-size: min(3.6458333333cqw, 28px);
  line-height: 160%;
  letter-spacing: 0.08em;
  text-align: center;
}
.app__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(3.90625cqw, 30px);
  margin-top: min(9.1145833333cqw, 70px);
  margin-bottom: min(13.0208333333cqw, 100px);
  padding: 0 min(5.2083333333cqw, 40px);
}
.app__download a {
  display: block;
}
.app__download-logo {
  flex: 0 0 auto;
  width: min(15.625cqw, 120px);
}
.app__download-content {
  display: flex;
  flex-direction: column;
  gap: min(2.0833333333cqw, 16px);
  min-width: 0;
}
.app__download-btn {
  display: flex;
  align-items: center;
  gap: min(3.125cqw, 24px);
}
.app__download-text {
  color: #5d5141;
  font-size: min(2.6041666667cqw, 20px);
  line-height: 1.25;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: center;
}
.app__download-store {
  width: min(28.6458333333cqw, 220px);
}
.app__footer-decor {
  position: relative;
  z-index: 3;
  height: min(16.015625cqw, 123px);
  margin-top: max(-0.78125cqw, -6px);
  background: url("/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/app-decor.webp") center top/min(100cqw, 768px) min(16.015625cqw, 123px) no-repeat;
}

.footer {
  position: relative;
  background-color: rgb(50, 86, 62);
  z-index: 1;
  text-align: center;
  padding-bottom: min(5.2083333333cqw, 40px);
  margin-top: min(-0.1302083333cqw, -1px);
}
.footer__logo {
  width: min(33.4635416667cqw, 257px);
  margin: 0 auto;
  padding-top: min(1.953125cqw, 15px);
}
.footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(2.6041666667cqw, 20px);
  margin-top: min(4.5572916667cqw, 35px);
}
.footer__sns a {
  font-size: min(4.4270833333cqw, 34px);
  display: block;
}
.footer__sns-rj {
  width: min(5.2083333333cqw, 40px);
}
.footer__copy {
  display: inline-block;
  margin-top: min(1.953125cqw, 15px);
  font-size: min(1.3020833333cqw, 10px);
  line-height: 1.6;
  color: #fff;
  text-align: left;
}
.footer__copy small {
  color: #fff;
  text-align: center;
  display: block;
  margin-top: min(1.953125cqw, 15px);
}
.footer__copy-c {
  color: #fff;
  font-size: 1.2em;
}
.footer .fa-brands,
.footer .fab,
.footer .fa {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  color: #fff;
}/*# sourceMappingURL=app.css.map */