@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;
}
@media screen and (min-width: 769px) {
  html {
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
}

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

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

.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;
  }
}
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;
}
@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;
}

.fv {
  position: relative;
  height: min(97.65625cqw, 750px);
}
.fv .movie__video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.movie {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.movie__ribbon {
  width: min(286.4583333333cqw, 2200px);
  height: min(5.7291666667cqw, 44px);
}
.movie__video {
  display: block;
  width: 100%;
  margin-bottom: max(-0.1302083333cqw, -1px);
}
.movie__controls {
  position: absolute;
  bottom: min(15.234375cqw, 117px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: min(1.5625cqw, 12px);
}
.movie__cta {
  display: flex;
  width: min(40.3645833333cqw, 310px);
  height: min(8.3333333333cqw, 64px);
  border: min(0.4557291667cqw, 3.5px) solid #32563e;
  border-radius: min(8.3333333333cqw, 64px);
  padding-top: min(0.2604166667cqw, 2px);
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  font-size: min(4.9479166667cqw, 38px);
  color: #5d5141;
  background-color: #fff;
}
.movie__arrow {
  display: block;
  width: min(8.3333333333cqw, 64px);
  padding: 0;
  border: 0;
  background: transparent;
}
.movie__arrow-icon {
  display: block;
}

.message {
  position: relative;
  background-color: #eef4c5;
  z-index: 1;
  overflow: hidden;
}
.message__title {
  position: relative;
  z-index: 2;
  width: min(47.9166666667cqw, 368px);
  margin: 0 auto;
  padding-top: min(7.8125cqw, 60px);
}
.message__inner {
  position: relative;
  background: url(/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/message-repeat.webp) repeat center/min(50cqw, 384px);
  padding-bottom: min(47.9166666667cqw, 368px);
  z-index: 1;
  overflow: hidden;
}
.message__content {
  position: relative;
  width: min(93.75cqw, 720px);
  margin: 0 auto;
  margin-top: min(3.90625cqw, 30px);
  text-underline-offset: 0.5em;
  color: #5d5141;
}
.message__line {
  display: block;
  width: 100%;
  background-image: linear-gradient(#bfbfa1);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% min(0.390625cqw, 3px);
  background-position: left 0 bottom 0.3em;
  color: #5d5141;
  font-size: min(3.125cqw, 24px);
  line-height: min(9.765625cqw, 75px);
  text-align: center;
  letter-spacing: -0.02em;
}
.message__line .--large {
  color: #dc6c78;
  font-size: min(4.1666666667cqw, 32px);
}
.message__line .--left {
  color: #5d5141;
  margin-left: -0.4em;
}
.message__line .--right {
  color: #5d5141;
  margin-right: -0.4em;
}
.message__decor--01 {
  position: absolute;
  display: block;
  left: min(1.3020833333cqw, 10px);
  bottom: min(4.5572916667cqw, 35px);
  z-index: -1;
}
.message__decor--01 img {
  display: block;
  width: min(46.875cqw, 360px);
  transform: rotate(25deg);
}
.message__decor--02 {
  display: block;
  width: min(91.796875cqw, 705px);
  margin: 0 auto;
  margin-top: max(-2.6041666667cqw, -20px);
  margin-bottom: max(-29.9479166667cqw, -230px);
}

.main .feature {
  overflow: visible;
}

.feature {
  position: relative;
  background-color: #ffd3de;
  z-index: 2;
  padding-top: min(6.5104166667cqw, 50px);
  padding-bottom: min(26.0416666667cqw, 200px);
}
.feature::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  width: 100%;
  height: min(19.921875cqw, 153px);
  background: url("/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/feature-bg-12.png") center bottom/100% 100% no-repeat;
  z-index: 3;
  pointer-events: none;
}
.feature__decor--02 {
  position: absolute;
  width: min(10.4166666667cqw, 80px);
  left: min(1.953125cqw, 15px);
  top: max(-16.40625cqw, -126px);
  z-index: 4;
  pointer-events: none;
}
.feature__title {
  position: relative;
  z-index: 1;
  width: min(83.0729166667cqw, 638px);
  margin: 0 auto;
  padding-top: min(2.6041666667cqw, 20px);
}
.feature__lead {
  position: relative;
  font-size: min(3.7760416667cqw, 29px);
  margin-top: min(2.8645833333cqw, 22px);
  text-align: center;
  font-weight: 800;
  color: #5d5141;
  z-index: 1;
}
.feature__card-image {
  width: min(91.1458333333cqw, 700px);
  margin: 0 auto;
  margin-top: min(6.25cqw, 48px);
}
.feature__date {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(3.7760416667cqw, 29px);
  margin-top: min(5.2083333333cqw, 40px);
  gap: min(2.6041666667cqw, 20px);
  line-height: 144%;
  font-weight: 700;
  color: #5d5141;
}
.feature__date::before {
  content: "";
  width: min(12.3697916667cqw, 95px);
  aspect-ratio: 238/278;
  background: url("/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/feature-date-label.svg") center/contain no-repeat;
}
.feature__date-app {
  display: flex;
  gap: min(2.2135416667cqw, 17px);
  margin-top: min(4.8177083333cqw, 37px);
  justify-content: center;
}
.feature__place {
  display: flex;
  gap: min(2.2135416667cqw, 17px);
  margin-top: min(2.2135416667cqw, 17px);
  justify-content: center;
}
.feature__place::before {
  content: "";
  flex-shrink: 0;
  width: min(3.90625cqw, 30px);
  aspect-ratio: 58/84;
  background: url("/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/feature-place-label.webp") center/contain no-repeat;
}
.feature__place-text {
  font-size: min(3.7760416667cqw, 29px);
  color: #5d5141;
  padding-top: min(0.78125cqw, 6px);
}
.feature__notice {
  font-size: min(3.7760416667cqw, 29px);
  padding-bottom: min(3.6458333333cqw, 28px);
  color: #f88400;
}
.feature__notice .--left {
  color: #f88400;
  margin-left: -0.4em;
}
.feature__notice .--right {
  color: #f88400;
  margin-right: -0.4em;
}
.feature__cta-link {
  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-top: min(3.3854166667cqw, 26px);
}

.news {
  position: relative;
  background-color: #fff;
  padding-top: min(3.90625cqw, 30px);
  padding-bottom: min(7.8125cqw, 60px);
  margin-top: min(13.0208333333cqw, 100px);
}
.news::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  aspect-ratio: 1536/668;
  top: max(-31.7708333333cqw, -244px);
  margin-bottom: max(-0.1302083333cqw, -1px);
  background: url("/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/feature-decor.webp") center top/100% 100% no-repeat;
  z-index: 3;
  pointer-events: none;
}
.news__character {
  position: absolute;
  right: min(2.0833333333cqw, 16px);
  top: max(-45.9635416667cqw, -353px);
  width: min(33.7239583333cqw, 259px);
  margin: 0;
  z-index: 7;
  pointer-events: none;
}
.news__decor--01 {
  position: absolute;
  width: min(30.078125cqw, 231px);
  top: max(-2.2135416667cqw, -17px);
  right: min(3.125cqw, 24px);
  z-index: 5;
}
.news__decor--02 {
  position: absolute;
  width: min(23.4375cqw, 180px);
  top: max(-14.453125cqw, -111px);
  left: min(2.2135416667cqw, 17px);
  z-index: 6;
}
.news__decor--03 {
  position: absolute;
  width: min(41.796875cqw, 321px);
  top: max(-24.7395833333cqw, -190px);
  left: min(3.125cqw, 24px);
  z-index: 5;
}
.news__inner {
  max-width: min(84.6354166667cqw, 650px);
  margin: 0 auto;
  z-index: 1;
}
.news__title {
  position: relative;
  z-index: 5;
  width: min(28.7760416667cqw, 221px);
  margin: 0 auto;
}
.news__lead {
  margin-top: min(2.6041666667cqw, 20px);
  font-size: min(3.2552083333cqw, 25px);
  font-weight: 800;
  color: #5d5141;
}
.news__list {
  margin-top: min(9.1145833333cqw, 70px);
}
.news__item {
  border-bottom: min(0.2604166667cqw, 2px) solid #5d5141;
}
.news__link {
  display: block;
  padding: min(2.6041666667cqw, 20px) 0;
}
.news__date {
  display: block;
  font-size: min(2.8645833333cqw, 22px);
  color: #5d5141;
}
.news__text {
  display: block;
  font-size: min(2.6041666667cqw, 20px);
  line-height: min(6.5104166667cqw, 50px);
  color: #5d5141;
}
.news__cta {
  display: block;
  width: min(38.28125cqw, 294px);
  margin: 0 auto;
  margin-top: min(7.8125cqw, 60px);
}

.app {
  background: url(/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/app-bg.webp) no-repeat top/auto min(16.015625cqw, 123px);
  padding-top: min(10.4166666667cqw, 80px);
  padding-bottom: min(0cqw, 0px);
  background-color: #f9cec0;
  position: relative;
  z-index: 1;
}
.app::after {
  content: "";
  position: absolute;
  width: 100%;
  margin-top: max(-16.015625cqw, -123px);
  height: min(16.015625cqw, 123px);
  background: url(/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/app-decor.webp) no-repeat center top/min(100cqw, 768px) min(16.015625cqw, 123px);
  pointer-events: none;
  z-index: 3;
}
.app__inner {
  position: relative;
  margin-top: max(-10.4166666667cqw, -80px);
  background: url(/static/mga/feature/ringojam_10th_ksa9ahsJa0k/assets/images/app-repeat.webp) repeat top/min(32.6822916667cqw, 251px) min(30.078125cqw, 231px);
  padding-bottom: min(26.0416666667cqw, 200px);
  z-index: 1;
}
.app__heading {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding-top: min(19.53125cqw, 150px);
  padding-bottom: min(2.6041666667cqw, 20px);
}
.app__lead {
  width: min(84.6354166667cqw, 650px);
}
.app__title {
  position: relative;
  z-index: 1;
  width: min(54.9479166667cqw, 422px);
}
.app__mga {
  width: min(63.5416666667cqw, 488px);
  padding-top: min(4.5572916667cqw, 35px);
  margin: 0 auto;
  position: relative;
}
.app__mga__visual {
  position: relative;
  z-index: 10;
}
.app__mga__symbol__01, .app__mga__symbol__02, .app__mga__symbol__03 {
  opacity: 0;
}
.app__mga__symbol__01 {
  position: absolute;
  bottom: min(76.0416666667cqw, 584px);
  right: max(-11.4583333333cqw, -88px);
  width: min(6.640625cqw, 51px);
  height: min(8.4635416667cqw, 65px);
}
.app__mga__symbol__02 {
  position: absolute;
  bottom: min(69.7916666667cqw, 536px);
  right: max(-0.5208333333cqw, -4px);
  width: min(4.0364583333cqw, 31px);
  height: min(8.8541666667cqw, 68px);
}
.app__mga__symbol__03 {
  position: absolute;
  bottom: min(63.28125cqw, 486px);
  right: max(-8.203125cqw, -63px);
  width: min(7.1614583333cqw, 55px);
  height: min(7.2916666667cqw, 56px);
}
.app__mga__decor {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.app__mga__decor__character {
  position: absolute;
  bottom: min(2.9947916667cqw, 23px);
  right: 0;
  width: min(39.0625cqw, 300px);
  opacity: 0;
  transform-origin: left bottom;
}
.app__mga.on .app__mga__visual {
  transform: translateX(calc(min(8.984375cqw, 69px) * -1));
}
.app__mga.on .app__mga__decor__character {
  animation: mga-character-pyoko 0.7s cubic-bezier(0.25, 1.4, 0.5, 1) 0.7s forwards;
}
.app__mga.on .app__mga__symbol__03 {
  opacity: 1;
  transition-delay: 1.5s;
}
.app__mga.on .app__mga__symbol__02 {
  opacity: 1;
  transition-delay: 1.8s;
}
.app__mga.on .app__mga__symbol__01 {
  opacity: 1;
  transition-delay: 2.1s;
}
.app__cta {
  display: flex;
  gap: min(2.6041666667cqw, 20px);
  width: min(90.4947916667cqw, 695px);
  margin: 0 auto;
  margin-top: min(7.8125cqw, 60px);
}
.app__cta a {
  display: block;
}
.app__cta--01, .app__cta--02 {
  display: block;
  width: min(44.0104166667cqw, 338px);
}
.app__cta--03 {
  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-top: min(5.859375cqw, 45px);
}
.app__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(3.90625cqw, 30px);
  margin-top: min(9.1145833333cqw, 70px);
  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);
}

.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=common.css.map */