@charset "UTF-8";
@import 'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap';

body {
  color: #333;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

body:has(.header__menu-toggle:checked, dialog:modal[open]) {
  overflow-y: hidden;
}

*:where(:not(html, iframe, canvas, img, svg, video, audio, svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  text-size-adjust: none;
  scroll-behavior: smooth;
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu,
summary {
  list-style: none;
}

ol {
  counter-reset: revert;
}

img {
  max-block-size: 100%;
  max-inline-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable='false'])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  user-select: auto;
}

:where([draggable='true']) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

::-webkit-details-marker {
  display: none;
}

.header {
  display: flex;
  width: 100%;
  height: 60px;
}

.header__menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  display: block;
  width: 120px;
  height: 26px;
}
@media screen and (width >= 1000px) {
  .header__logo img {
    width: 159px;
    height: 34px;
  }
}

.header__menu-toggle {
  display: none;
}

.header__menu-toggle:checked ~ .header__menu .header__menu-icon .header__menu-icon-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__menu-toggle:checked ~ .header__menu .header__menu-icon .header__menu-icon-bar:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle:checked ~ .header__menu .header__menu-icon .header__menu-icon-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header__menu-toggle:checked ~ .header__overlay {
  opacity: 1;
  pointer-events: auto;
}

.header__menu-icon {
  display: none;
  flex-direction: column;
  row-gap: 5px;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  cursor: pointer;
}

.header__menu-icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  transition: all 0.3s ease;
  border-radius: 100px;
  background-color: #448938;
}

.header__nav {
  display: none;
  position: absolute;
  z-index: 100;
  top: 60px;
  left: 0;
  flex: 3;
  width: 100vw;
  background-color: #fff;
}
@media screen and (width >= 1000px) {
  .header__nav {
    display: flex;
    position: unset;
    align-items: center;
    justify-content: right;
    width: unset;
  }
}

.header__nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header__nav-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  background-color: #448938;
  text-align: center;
}
@media screen and (width >= 1000px) {
  .header__nav-item {
    display: flex;
    padding: 0 10px;
    background-color: #fff;
  }
}

.header__nav-item:not(:nth-child(6)) {
  border-right: 0;
  border-bottom: 1px solid #8eac89;
}
@media screen and (width >= 1000px) {
  .header__nav-item:not(:nth-child(6)) {
    border-right: solid 1px #000;
    border-bottom: 0;
  }
}

.header__nav-item:nth-child(7) {
  border-bottom: 0;
}

.header__nav-link {
  width: 100%;
  color: #fff;
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
@media screen and (width >= 1000px) {
  .header__nav-link {
    color: #000;
    font-size: 14.4px;
    font-weight: 400;
  }
}

.header__nav-link img {
  display: block;
}

.header__overlay {
  position: fixed;
  z-index: 1;
  transition: opacity 0.3s ease;
  opacity: 0;
  background-color: #00000080;
  pointer-events: none;
  inset: 60px 0 0;
}
@media screen and (width >= 1000px) {
  .header__overlay {
    display: none;
  }
}
@media (width <= 999px) {
  .header__menu-icon {
    display: flex;
  }

  .header__menu-toggle:checked ~ .header__nav {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
  }
}

.op-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: auto;
  background-color: #fff;
}

.op-header__inner {
  width: 100%;
  height: 60px;
  padding-left: 16px;
}
@media screen and (width >= 1000px) {
  .op-header__inner {
    padding-inline: 36px 76px;
  }
}

.op-header__nav {
  display: flex;
}

.op-header__nav-link {
  padding: 0 10px;
  border-right: 1px solid #000;
  text-decoration: none;
}

.op-header__nav-link--primary {
  background-color: #16a34a;
  color: #fff;
}

.op-header__nav-link:last-child {
  border-right: none;
}

.op-header .change-link--pc {
  display: none;
}
@media screen and (width >= 1000px) {
  .op-header .change-link--pc {
    display: block;
  }
}

.op-header .change-link--sp {
  display: block;
}
@media screen and (width >= 1000px) {
  .op-header .change-link--sp {
    display: none;
  }
}

.op-header .change-link-inline--pc {
  display: none;
}
@media screen and (width >= 1000px) {
  .op-header .change-link-inline--pc {
    display: inline-block;
  }
}

.op-header .change-link-inline--sp {
  display: inline-block;
}
@media screen and (width >= 1000px) {
  .op-header .change-link-inline--sp {
    display: none;
  }
}

.sec07 {
  background: #fff;
  font-size: 20.8px !important;
}

.sec07 .block01 .box01 dl {
  text-align: center;
}

.sec07 .block01 .box01 dl dt {
  margin-bottom: 30px;
}

.sec07 .block01 .box01 dl .link {
  margin-bottom: 20px;
}

.sec07 a {
  color: #3998de !important;
  font-weight: 700;
  text-decoration: none;
}

.sec07 a:hover {
  text-decoration: underline;
}

.footerStandard1st a {
  color: #333;
  text-decoration: none;
}

.footerStandard1st a:hover {
  text-decoration: underline;
}

.footerStandard1st .ftBlock01 {
  padding: 20px 25px 60px;
  background: #fff;
}

.footerStandard1st .ftBlock01 .ftBox01 {
  font-size: 70%;
}

.footerStandard1st .ftBlock01 .ftBox01 .txt01 {
  padding: 0 20px;
  text-align: right;
}

.footerStandard1st .ftBlock01 .ftBox02 {
  margin-top: 10px;
  padding: 10px 20px 0;
  font-size: 70%;
}

.footerStandard1st .ftBlock01 .ftBox02.clearfix {
  border-top: 1px solid #e5e5e5;
}

.footerStandard1st .ftBlock01 .ftBox02 .link {
  float: none;
  text-align: center;
}

.footerStandard1st .ftBlock01 .ftBox02 .link li {
  display: inline-block;
  font-size: 11.2px;
}

.footerStandard1st .ftBlock01 .ftBox02 .link li + li {
  margin-left: 10px;
}

.footerStandard1st .ftBlock01 .ftBox02 .copyright {
  margin-top: 10px;
  color: #000;
  font-size: 11.2px;
  text-align: center;
}
@media screen and (width < 1000px) {
  .sec07 img {
    width: 100%;
    height: auto;
  }

  .sec07 .inner96 {
    padding: 0 2%;
  }

  .sec07 {
    padding: 20px 0 0;
    background: #fff;
  }

  .sec07 .block01 .box01 {
    margin-bottom: 20px;
  }

  .sec07 .block01 .box01 dl {
    text-align: center;
  }

  .sec07 .block01 .box01 dl dt {
    margin-bottom: 20px;
  }

  .sec07 .block01 .box01 dl dd {
    font-size: 3.2vw;
    text-align: left;
  }

  .sec07 .block01 .box01 dl .link {
    margin-bottom: 20px;
    text-align: center;
  }

  .footerStandard1st {
    width: 100%;
  }

  .footerStandard1st .ftBlock01 {
    padding: 0;
    background: #fff;
  }

  .footerStandard1st .ftBlock01 .ftBox01 .link01 {
    width: 100%;
    padding: 0 2%;
    font-size: 3.2vw;
    text-align: right;
  }

  .footerStandard1st .ftBlock01 .ftBox02 {
    width: 100%;
    margin-top: 10px;
    padding: 0;
  }

  .footerStandard1st .ftBlock01 .ftBox02 .link {
    width: 100%;
    margin-bottom: 20px;
    border-top: none;
    border-bottom: 1px solid #b4b4b4;
    text-align: left;
  }

  .footerStandard1st .ftBlock01 .ftBox02 .link li {
    width: 100%;
    border-top: 1px solid #b4b4b4;
  }

  .footerStandard1st .ftBlock01 .ftBox02 .link li + li {
    margin-left: 0;
  }

  .footerStandard1st .ftBlock01 .ftBox02 .link li a {
    display: block;
    width: 100%;
    padding: 10px 0 10px 2%;
    background: #eee;
    font-size: 120%;
  }

  .footerStandard1st .ftBlock01 .ftBox02 .link li a:hover {
    text-decoration: none;
  }

  .footerStandard1st .ftBlock01 .ftBox02 .txt01 {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
  }

  .footerStandard1st .ftBlock01 .ftBox02 .copyright {
    width: 100%;
    padding: 2% 0;
    font-size: 90%;
    text-align: center;
  }
}

.op-close-button {
  width: 160px;
  margin: 20px auto 0;
}

.op-close-button--inner {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  box-shadow: 0 1px 4px 1px #00000040;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
@media screen and (width >= 830px) {
  .op-close-button--inner {
    display: none;
  }
}

.pc_disp {
  display: none !important;
}
@media screen and (width >= 1000px) {
  .pc_disp {
    display: block !important;
  }
}

.sp_disp {
  display: block !important;
}
@media screen and (width >= 1000px) {
  .sp_disp {
    display: none !important;
  }
}

section.op-main header {
  background-image: none;
}

section.op-main .op-navi {
  max-width: 1024px;
  margin-inline: auto;
}

section.op-main .op-navi .op-navi-button {
  width: 100%;
}

section.op-main .op-navi .op-navi-button__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0 2px 2px #0000004d;
  font-family: 'Noto Sans JP', serif;
  font-weight: 700;
  line-height: 21px;
}

section.op-main .op-navi .op-navi-button__inner--bg-orange {
  background-color: #f16300;
}

section.op-main .op-navi .op-navi-button__inner--bg-green {
  background-color: #0d5c19;
}

section.op-main .op-navi .op-navi-button__inner--bg-light-green {
  background-color: #448938;
}

section.op-main .op-navi .op-navi-button__inner--bg-white {
  background-color: #fff;
}

section.op-main .op-navi .op-navi-button__inner--bg-blue {
  background-color: #073589;
}

section.op-main .op-navi .op-navi-button__inner--bg-light-blue {
  background-color: #2461c3;
}

section.op-main .op-navi .op-navi-button__inner--bg-purple {
  background-color: #6d32b1;
}

section.op-main .op-navi .op-navi-button__inner--inner-white {
  color: #fff;
}

section.op-main .op-navi .op-navi-button__inner--inner-orange {
  color: #f16300;
}

section.op-main .op-navi .op-navi-button__inner--inner-blue {
  color: #073589;
}

section.op-main .op-navi .op-navi-button__inner--border {
  border: 1px solid #d5d5d5;
}

section.op-main .op-navi .op-navi-button__inner--icon {
  justify-content: space-between;
  padding-inline: 36px 14px;
}

section.op-main .op-navi .op-navi-button__body {
  display: flex;
  gap: 8px;
  align-items: center;
}

section.op-main .op-navi .op-navi-button__text {
  flex: 1;
  text-align: center;
}

section.op-main .op-navi .op-navi-button__text--fs-14 {
  font-size: 14px;
}

section.op-main .op-navi .op-navi-button__text--fs-16 {
  font-size: 16px;
}

section.op-main .op-navi .op-d-none {
  display: none;
}

section.op-main .op-navi .op-d-block--pc {
  display: none;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-d-block--pc {
    display: block;
  }
}

section.op-main .op-navi .op-d-block--sp {
  display: block;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-d-block--sp {
    display: none;
  }
}

section.op-main .op-navi .change-link--pc {
  display: none;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .change-link--pc {
    display: block;
  }
}

section.op-main .op-navi .change-link--sp {
  display: block;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .change-link--sp {
    display: none;
  }
}

section.op-main .op-navi .change-link-inline--pc {
  display: none;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .change-link-inline--pc {
    display: inline-block;
  }
}

section.op-main .op-navi .change-link-inline--sp {
  display: inline-block;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .change-link-inline--sp {
    display: none;
  }
}

section.op-main .op-navi .text-anno {
  position: relative;
  width: 100%;
  padding-left: 1.25em;
  font-family: sans-serif;
}

section.op-main .op-navi .text-anno::before {
  content: '\203b';
  position: absolute;
  margin-left: -1.25em;
}

section.op-main .op-navi .op-navi-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.op-main .op-navi .op-navi-bonus__image {
  display: block;
  width: 100%;
}

section.op-main .op-navi .op-navi-bonus__image img {
  display: block;
  width: 100vw;
}

.op-navi-bonus-visual {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.op-navi-bonus-btn-sp {
  display: block !important;
  position: absolute;
  z-index: 2;
  bottom: 8%;
  left: 50%;
  width: 70vw;
  max-width: 900px;
  transform: translateX(-50%);
}

@media screen and (width >= 1024px) {
  .op-navi-bonus-btn-sp {
    display: none !important;
  }
}

.op-navi-bonus-btn-pc {
  display: block;
  display: none !important;
  position: absolute;
  z-index: 2;
  top: 321px;
  left: 50%;
  width: 100%;
  max-width: 400px;
  transform: translateX(-50%);
  opacity: 1 !important;
}

@media screen and (width >= 1024px) {
  .op-navi-bonus-btn-pc {
    display: block !important;
  }
}

@media (width >= 1024px) {
  .op-navi-bonus-btn {
    bottom: 8%;
    width: 100%;
    max-width: 400px;
  }

  .op-navi-bonus-btn:hover,
  .op-navi-bonus-btn:focus {
    opacity: 1 !important;
  }
}

.op-navi-ad-anchor {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
  background: #e6ebe6;
}

.op-navi-ad-anchor__style {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.op-navi-ad-anchor__style a {
  display: flex;
  align-items: center;
  max-width: 80%;
}

.op-navi-ad-anchor__images {
  display: flex;
  align-items: center;
  justify-content: center;
}

.op-navi-ad-anchor__images img {
  display: block;
  height: auto;
  margin: 12px auto;
  padding: 0;
  transition: opacity 0.2s;
  border: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
}

@media (width >= 1024px) {
  .op-navi-ad-anchor__style a {
    max-width: 30%;
  }

  .op-navi-ad-anchor__images img {
    margin: 24px auto;
  }
}

.op-navi-ad-anchor__images a:hover img {
  opacity: 0.7;
}

.op-navi-ad-anchor {
  margin-bottom: 0;
}

section.op-main .op-navi .op-navi-starter-pack-section {
  padding: 24px 16px;
  background: #e6ebe6;
}

section.op-main .op-navi .op-navi-play-starter-pack {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  padding: 24px;
  border-radius: 2px;
  background-color: #fff;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-play-starter-pack {
    padding: 24px 40px;
  }
}

section.op-main .op-navi .op-navi-play-starter-pack__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

section.op-main .op-navi .op-navi-play-starter-pack__subtitle {
  width: 246px;
  margin-bottom: 24px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-play-starter-pack__subtitle {
    width: 100%;
    max-width: 541px;
  }
}

section.op-main .op-navi .op-navi-play-starter-pack__title {
  display: block;
  width: calc(100% + 48px);
  max-width: 700px;
  margin-top: -24px;
  margin-left: -24px;
  font-family: 'Noto Sans JP', serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-play-starter-pack__title {
    width: calc(100% + 80px);
    margin-left: -40px;
    font-size: 24px;
  }
}

section.op-main .op-navi .op-navi-play-starter-pack__buttons {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  gap: 20px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-play-starter-pack__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

section.op-main .op-navi .op-navi-play-starter-pack__button {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 4px 4px rgb(0 0 0 / 25%));
}

section.op-main .op-navi .op-navi-play-starter-pack__button-image {
  display: block;
  width: 100%;
}

section.op-main .op-navi .op-navi-play-starter-pack__modal-button {
  display: grid;
  width: 100%;
  place-content: end;
  margin-top: 8px;
}

section.op-main .op-navi .op-navi-accordion {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

section.op-main .op-navi .op-navi-accordion__toggle-button {
  display: flex;
  position: absolute;
  top: 16px;
  justify-content: right;
  width: 100%;
  padding-right: 17px;
  cursor: pointer;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-accordion__toggle-button {
    padding-right: 15px;
  }
}

section.op-main .op-navi .op-navi-accordion__toggle-button span {
  display: block;
  position: absolute;
  top: 4px;
  left: calc(50% - 1px);
  width: 2px;
  height: 15px;
  background-color: #fff;
}

section.op-main .op-navi .op-navi-accordion__toggle-button span:nth-child(1) {
  transform: rotate(90deg);
}

section.op-main .op-navi .op-navi-accordion__toggle-button-inner {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000;
}

section.op-main .op-navi .op-navi-accordion__toggle-button-input {
  display: none;
}

section.op-main .op-navi .op-navi-accordion__toggle-button-input:checked ~ .op-navi-accordion__toggle-button span:nth-child(2) {
  transform: rotate(270deg);
}

section.op-main .op-navi .op-navi-accordion__toggle-button-input:checked ~ .op-navi-accordion__instruction {
  height: unset;
}

section.op-main .op-navi .op-navi-accordion__instruction {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  height: 56px;
  padding: 20px 16px 16px;
  overflow: hidden;
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  gap: 16px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-accordion__instruction {
    padding: 22px 32px 24px;
  }
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-accordion__instruction--stage2 {
    padding: 22px 38px 16px;
  }
}

section.op-main .op-navi .op-navi-accordion__subtitle {
  display: inline-block;
  width: 170px;
  margin-bottom: 6px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-accordion__subtitle {
    width: 158px;
  }
}

section.op-main .op-navi .op-navi-accordion__subtitle--stage2 {
  width: 220px;
}

section.op-main .op-navi .op-navi-accordion__subtitle-image {
  display: block;
  width: 100%;
}

section.op-main .op-navi .op-tab {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-tab {
    gap: 16px;
  }
}

section.op-main .op-navi .op-tab:has(#tabWeb:checked) .op-tab-label--web {
  border-bottom: 3px solid #195727;
  color: #195727;
}

section.op-main .op-navi .op-tab:has(#tabWeb:checked) .op-tab-label--app {
  border-bottom: 1px solid #ccc;
  color: #999;
}

section.op-main .op-navi .op-tab:has(#tabWeb:checked) .op-tab-content:has(#tabWebContents) {
  display: block;
}

section.op-main .op-navi .op-tab:has(#tabApp:checked) .op-tab-label--web {
  border-bottom: 1px solid #ccc;
  color: #999;
}

section.op-main .op-navi .op-tab:has(#tabApp:checked) .op-tab-label--app {
  border-bottom: 3px solid #195727;
  color: #195727;
}

section.op-main .op-navi .op-tab:has(#tabApp:checked) .op-tab-content:has(#tabAppContents) {
  display: block;
}

section.op-main .op-navi .op-tab .op-tab-group {
  height: 40px;
}

section.op-main .op-navi .op-tab .op-tab-group .op-tab-list-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

section.op-main .op-navi .op-tab .op-tab-label {
  display: grid;
  place-content: center;
  height: 100%;
  cursor: pointer;
}

section.op-main .op-navi .op-tab .op-tab-label__text {
  display: block;
  width: 100%;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}

section.op-main .op-navi .op-tab .op-tab-list {
  height: 100%;
}

section.op-main .op-navi .op-tab .op-tab-list-inner {
  height: 100%;
}

section.op-main .op-navi .op-tab .op-tab-radio {
  position: absolute;
  margin: unset;
  border-radius: 0;
  background-color: var(--color-monotone-300);
  font-size: unset;
  appearance: none;
}

section.op-main .op-navi .op-tab .op-tab-radio:checked {
  background-color: var(--theme-surface-default);
}

section.op-main .op-navi .op-tab .op-info-tab-contents {
  width: auto;
}

section.op-main .op-navi .op-tab .op-info-tab-contents__inner > *:last-child {
  padding-bottom: 0;
}

section.op-main .op-navi .op-tab .op-info-tab-contents .op-tab-content {
  display: none;
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
}

section.op-main .op-navi .op-navi-app-install {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 24px;
  background-color: #195727;
  gap: 12px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-app-install {
    padding-bottom: 32px;
    gap: 24px;
  }
}

section.op-main .op-navi .op-navi-app-install__title {
  margin-bottom: unset;
}

section.op-main .op-navi .op-navi-app-install__title-image {
  display: block;
  width: 100%;
}

section.op-main .op-navi .op-navi-app-install__title-image img {
  display: block;
  width: 100%;
}

.op-navi-stage-install__title-btn img {
  display: block;
  width: 70%;
  margin: 0 auto;
}
@media (width >= 1024px) {
  .op-navi-stage-install__title-btn img {
    width: 100%;
    max-width: 400px;
  }
}

section.op-main .op-navi .op-navi-app-install__steps {
  display: grid;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-app-install__steps {
    grid-auto-flow: column;
    gap: 24px;
  }
}

section.op-main .op-navi .op-navi-app-install__step {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  font-size: 14px;
}

section.op-main .op-navi .op-navi-app-install__step-text-small {
  font-size: 12px;
}

section.op-main .op-navi .op-navi-app-install__step:nth-child(1) {
  gap: 24px;
}

section.op-main .op-navi .op-navi-app-install__step-text-small {
  color: #e31c1c;
  font-weight: 700;
}

section.op-main .op-navi .op-navi-app-install__step-image {
  width: 100%;
}

section.op-main .op-navi .op-navi-app-install__link {
  display: flex;
  justify-content: right;
  width: 100%;
}

section.op-main .op-navi .op-navi-app-install__link img {
  display: block;
  width: 161px;
  cursor: pointer;
}

section.op-main .op-navi .op-navi-app-install__check-coin-balance-button {
  display: block;
  width: 196px;
}

section.op-main .op-navi .op-navi-app-install__accordion-wrapper {
  width: 100%;
  max-width: 700px;
}
@media screen and (width < 1024px) {
  section.op-main .op-navi .op-navi-app-install__accordion-wrapper {
    padding-inline: 16px;
  }
}

section.op-main .op-navi .op-navi-app-install__check-coin-web-image {
  width: 100%;
}

section.op-main .op-navi .op-navi-stage-detail--stage1 {
  background-color: #fff;
}

section.op-main .op-navi .op-navi-stage-detail--stage2 {
  background-color: #0b1c49;
}

section.op-main .op-navi .op-navi-stage-detail--stage3 {
  background-color: #0d5c19;
}

section.op-main .op-navi .op-navi-stage-detail--know-more {
  background-color: #f16300;
}

section.op-main .op-navi .op-navi-stage-detail__title {
  width: 100%;
}

section.op-main .op-navi .op-navi-stage-detail__title-image {
  display: block;
  width: 100%;
  margin-inline: auto;
}

section.op-main .op-navi .op-navi-stage-detail__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 24px;
  padding-inline: 16px;
  gap: 4px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__content {
    gap: 8px;
    padding-block: 32px;
  }
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__content--stage2 {
    padding-block: 16px 32px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__content--stage3 {
  padding: 8px 16px 40px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__content--stage3 {
    padding: 24px 40px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__content--know-more {
  padding: 8px 16px 40px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__content--know-more {
    padding: 8px 40px 40px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__content-accordion-wrapper {
  width: 100%;
  max-width: 700px;
  margin-bottom: 7px;
}

section.op-main .op-navi .op-navi-stage-detail__conditions {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  padding: 24px;
  border-radius: 2px;
  background-color: #fff;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions {
    padding: 24px 40px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.op-main .op-navi .op-navi-stage-detail__conditions-title {
  margin-bottom: 16px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-title {
    margin-bottom: 24px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-title--stage1 {
  width: 100%;
}

section.op-main .op-navi .op-navi-stage-detail__conditions-title--stage2 {
  width: 187px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-title--stage2 {
    width: 260px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-title--stage3 {
  width: 230px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-title--stage3 {
    width: 302px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-title img {
  display: block;
  width: 100%;
}

section.op-main .op-navi .op-navi-stage-detail__conditions-title-image img {
  display: block;
  width: 100%;
}

section.op-main .op-navi .op-navi-stage-detail__conditions-button-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-bottom: 16px;
  gap: 4px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-button-list {
    gap: 12px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-link-button img {
  display: block;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 3px 6px #0003;
}

section.op-main .op-navi .op-navi-stage-detail__conditions-link-button--pc {
  display: none;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-link-button--pc {
    display: block;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-link-button--sp {
  display: block;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-link-button--sp {
    display: none;
  }
}

@media (width >= 768px) and (width <= 1023px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-link-button img {
    border-radius: 34px;
    box-shadow: 0 3px 6px #0003;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-content {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: auto minmax(130px, 400px);
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-content {
    gap: 12px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-content-image {
  width: 90px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-content-image {
    width: 140px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-content-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-content-body {
    gap: 16px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-content-body-text {
  font-size: 14px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-content-body-text {
    font-size: 16px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-choice {
  width: 270px;
  margin-top: 5px;
  font-family: 'Noto Sans JP', serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-choice {
    width: 376px;
    font-size: 24px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-modal-button {
  display: grid;
  justify-content: center;
  width: 100%;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-modal-button {
    justify-content: left;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-modal-button img {
  display: block;
  width: 186px;
  cursor: pointer;
}

section.op-main .op-navi .op-navi-stage-detail__conditions-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

section.op-main .op-navi .op-navi-stage-detail__conditions-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-buttons {
    gap: 20px;
    flex-direction: row;
    justify-content: center;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-button {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 4px 4px rgb(0 0 0 / 25%));
}

section.op-main .op-navi .op-navi-stage-detail__conditions-button-image {
  display: block;
  width: 100%;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions--know-more {
    padding: 24px 40px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__timeline-title {
  margin-bottom: 16px;
}

section.op-main .op-navi .op-navi-stage-detail__coin-distribution-schedule-image {
  display: block;
  justify-content: center;
  width: 100vw;
}

@media screen and (width < 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__coin-distribution-schedule-image {
    padding-inline: 5px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__timeline-title-image {
  display: block;
}

section.op-main .op-navi .op-navi-stage-detail__timeline-title-image img {
  width: 253px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__timeline-title-image img {
    width: 571px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__timeline-subtext {
  margin-bottom: 16px;
}

section.op-main .op-navi .op-navi-stage-detail__timeline-example {
  display: block;
  max-width: 800px;
  margin-bottom: 16px;
}

section.op-main .op-navi .op-navi-stage-detail__timeline-example img {
  display: block;
  width: 100%;
}

section.op-main .op-navi .op-navi-stage-detail__timeline-image {
  margin: 0 auto;
}

section.op-main .op-navi .op-navi-stage-detail__timeline-link {
  color: #296de2;
  text-decoration: underline;
}

section.op-main .op-navi .op-navi-stage-detail__timeline-button-wrapper {
  width: 100%;
  max-width: 400px;
}

section.op-main .op-navi .op-navi-stage-detail__timeline-subtext {
  font-size: 14px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__timeline-subtext {
    font-size: 16px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__tips-content-image2 {
  max-width: 295px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__tips-content-image2 {
    max-width: 346px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__tips-content-image2 img {
  display: block;
  width: 100%;
}

section.op-main .op-navi .op-navi-stage-detail__tips-button-wrapper {
  width: 100%;
  max-width: 311px;
}

section.op-main .op-navi .op-navi-stage-detail__condition-tips-prediction {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__condition-tips-prediction {
    font-size: 20px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__condition-tips-prediction-link-image {
  display: block;
  max-width: 320px;
}

section.op-main .op-navi .op-navi-stage-detail__condition-tips-prediction-button-wrapper {
  width: 100%;
  max-width: 320px;
}

section.op-main .op-navi .op-navi-stage-detail__conditions-know-more-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-stage-detail__conditions-know-more-buttons {
    flex-direction: row;
    gap: 8px;
  }
}

section.op-main .op-navi .op-navi-stage-detail__conditions-know-more-buttons-wrapper {
  width: 100%;
}

section.op-main .op-navi .op-navi-stage-detail__conditions-get-more-subtitle {
  width: 138px;
}

section.op-main .op-navi .op-navi-stage-detail__conditions-get-more-banner-image {
  width: 301px;
}

section.op-main .op-navi .op-navi-stage-detail__next-stage {
  width: 100%;
}

section.op-main .op-navi .op-navi-stage-detail__next-stage img {
  display: block;
  width: 100%;
}

.op-navi-stage-detail__title-image {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.op-navi-stage-detail__title-btn-sp {
  display: block !important;
  width: 70vw;
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (width >= 1024px) {
  .op-navi-stage-detail__title-btn-sp {
    display: none !important;
  }
}

.op-navi-stage-detail__title-btn-pc {
  display: block;
  display: none !important;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  opacity: 1 !important;
}

@media screen and (width >= 1024px) {
  .op-navi-stage-detail__title-btn-pc {
    display: block !important;
  }
}

.op-navi-stage-text {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

@media (width >= 1024px) {
  .op-navi-stage-text {
    max-width: 700px;
    gap: 24px;
  }
}

section.op-main .op-navi .op-navi-clear-stage {
  width: 100%;
  background: #e6ebe6;
}

section.op-main .op-navi .op-navi-clear-stage__image {
  width: 100%;
}

section.op-main .op-navi .op-navi-clear-stage__image img {
  display: block;
  width: 100%;
}

section.op-main .op-navi .op-navi-clear-stage__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 16px;
  gap: 24px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-clear-stage__content {
    padding: 24px 162px;
  }
}

section.op-main .op-navi .op-navi-clear-stage__cards {
  display: grid;
  grid-template-rows: auto;
  gap: 16px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-clear-stage__cards {
    grid-template-columns: 1fr 1fr;
  }
}

section.op-main .op-navi .op-navi-clear-stage__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  border-radius: 2px;
  background-color: #fff;
  gap: 16px;
}

section.op-main .op-navi .op-navi-clear-stage__title {
  color: #d97706;
  font-size: 1.5rem;
  font-weight: 700;
}

section.op-main .op-navi .op-navi-clear-stage__arrow {
  margin: 0 0.5rem;
  color: #d97706;
}

section.op-main .op-navi .op-navi-clear-stage__subtitle {
  min-height: 28px;
}

section.op-main .op-navi .op-navi-clear-stage__subtitle-image img {
  display: block;
  width: 100%;
}

section.op-main .op-navi .op-navi-clear-stage__info-link {
  display: flex;
  justify-content: right;
  width: 100%;
}

section.op-main .op-navi .op-navi-clear-stage__info-image {
  display: block;
  width: 245px;
  cursor: pointer;
}

section.op-main .op-navi .op-navi-clear-stage__button-wrapper {
  width: 100%;
}

section.op-main .op-navi .op-navi-clear-stage__button {
  border: 1px solid #f16300;
}

section.op-main .op-navi .op-navi-clear-stage__description {
  font-size: 14px;
}

section.op-main .op-navi .op-navi-betting-instructions {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 24px;
  padding-inline: 16px;
  background: #448938;
  gap: 24px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-betting-instructions {
    padding-inline: 40px;
  }
}

section.op-main .op-navi .op-navi-betting-instructions__title-image {
  display: block;
  width: 215px;
  margin-inline: auto;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-betting-instructions__title-image {
    width: 413px;
    margin-block: 5px 8px;
  }
}

section.op-main .op-navi .op-navi-betting-instructions__section {
  width: 100%;
  max-width: 700px;
  padding: 24px;
  border-radius: 4px;
  background: #fff;
}

section.op-main .op-navi .op-navi-betting-instructions__section--section1 {
  display: grid;
  grid-template-rows: repeat(2, max-content);
  justify-content: center;
  gap: 24px;
}

section.op-main .op-navi .op-navi-betting-instructions__section--section2 {
  display: grid;
  grid-template-columns: auto;
  gap: 16px;
}

section.op-main .op-navi .op-navi-betting-instructions__section--section3 {
  display: grid;
  grid-template-rows: repeat(2, max-content);
  gap: 16px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-betting-instructions__section--section3 {
    gap: 24px;
  }
}

section.op-main .op-navi .op-navi-betting-instructions__section--section4 {
  display: grid;
  grid-template-rows: repeat(2, max-content);
  gap: 16px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-betting-instructions__section--section4 {
    gap: 24px;
  }
}

section.op-main .op-navi .op-navi-betting-instructions__section-title--image1 {
  display: block;
  width: 260px;
  margin-inline: auto;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-betting-instructions__section-title--image1 {
    width: 365px;
    margin-block: 5px;
  }
}

section.op-main .op-navi .op-navi-betting-instructions__section-title--image2 {
  display: block;
  width: 205px;
  margin-inline: auto;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-betting-instructions__section-title--image2 {
    width: 515px;
    margin-block: 6px;
  }
}

section.op-main .op-navi .op-navi-betting-instructions__section-title--image3 {
  display: block;
  width: 255px;
  margin-inline: auto;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-betting-instructions__section-title--image3 {
    width: 358px;
  }
}

section.op-main .op-navi .op-navi-betting-instructions__section-title--image4 {
  display: block;
  width: 205px;
  margin-inline: auto;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-betting-instructions__section-title--image4 {
    width: 280px;
  }
}

section.op-main .op-navi .op-navi-betting-instructions__diagnosis {
  display: grid;
  justify-content: center;
  max-width: 600px;
  gap: 8px;
}

section.op-main .op-navi .op-navi-betting-instructions__section-buttons {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-betting-instructions__section-buttons {
    flex-direction: row;
  }
}

section.op-main .op-navi .op-navi-betting-instructions__section-button-wrapper {
  width: 100%;
  max-width: 295px;
}

section.op-main .op-navi .op-navi-betting-instructions__section-button-autorace {
  padding-block: 6.5px;
}

section.op-main .op-navi .op-navi-betting-instructions__section-button-autorace > div {
  margin-left: -4px;
  gap: 26px;
}

section.op-main .op-navi .op-navi-betting-instructions__register-button-image {
  display: block;
  width: 100%;
  max-width: 295px;
  margin-inline: auto;
  filter: drop-shadow(0 3px 6px rgb(0 0 0 / 20%));
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-betting-instructions__register-button-image {
    max-width: 580px;
    padding-inline: 0;
  }
}

section.op-main .op-navi .op-navi-betting-instrunctions__title-image {
  display: block;
  width: 413px;
  margin-inline: auto;
}

section.op-main .op-navi .op-navi-footer {
  background-color: #fff;
}

section.op-main .op-navi .op-navi-footer__notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 13px;
  font-family: sans-serif;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-footer__notes {
    padding: 16px 40px;
  }
}

section.op-main .op-navi .op-navi-footer__text {
  font-size: 14px;
}

section.op-main .op-navi .op-navi-notes {
  display: grid;
  gap: 24px;
  padding: 24px 16px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-notes {
    padding: 24px 40px;
  }
}

section.op-main .op-navi .op-navi-notes-inner {
  display: grid;
  gap: 8px;
}

section.op-main .op-navi .op-navi-notes-inner__title {
  font-size: 16px;
  font-weight: 700;
}

section.op-main .op-navi .op-navi-notes-inner__list {
  display: grid;
  gap: 2px;
  padding-left: 16px;
  list-style-position: outside;
}

section.op-main .op-navi .op-navi-notes-inner__list a {
  color: #3998de;
  text-decoration: underline;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-notes-inner__list {
    padding-left: 20px;
    gap: 6px;
  }
}

section.op-main .op-navi .op-navi-notes-inner__list--decimal {
  list-style-type: decimal;
}

section.op-main .op-navi .op-navi-notes-inner__list--disc {
  list-style-type: disc;
}

section.op-main .op-navi .op-navi-notes-inner__list-item {
  font-size: 10px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-notes-inner__list-item {
    font-size: 12px;
  }
}

section.op-main .op-navi .op-navi-modal {
  width: 100%;
  max-width: 480px;
  padding: 0;
  padding-inline: 16px;
  border: none;
  background-color: transparent;
}

section.op-main .op-navi .op-navi-modal--coin-balance {
  max-width: 700px;
}

section.op-main .op-navi .op-navi-modal::backdrop {
  background-color: #00000080;
}

section.op-main .op-navi .op-navi-modal__header {
  display: flex;
  position: sticky;
  top: 0;
  justify-content: flex-end;
  width: 100%;
  height: 24px;
  margin-bottom: 16px;
}

section.op-main .op-navi .op-navi-modal__close {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

section.op-main .op-navi .op-navi-modal__close-icon {
  width: 24px;
  height: 24px;
}

section.op-main .op-navi .op-navi-modal__content {
  width: 100%;
  max-height: 80dvh;
  overflow-y: auto;
  border-radius: 4px;
  background-color: #fff;
}

section.op-main .op-navi .op-navi-modal-pack__header {
  margin-top: -1px;
}

section.op-main .op-navi .op-navi-modal-pack__header-image {
  display: block;
  width: 100%;
}

section.op-main .op-navi .op-navi-modal-pack__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-modal-pack__body {
    padding: 32px;
    gap: 24px;
  }
}

section.op-main .op-navi .op-navi-modal-pack__text {
  font-size: 15px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-modal-pack__text {
    font-size: 16px;
  }
}

section.op-main .op-navi .op-navi-modal-pack__buttons {
  display: grid;
  gap: 16px;
  justify-items: center;
}

section.op-main .op-navi .op-navi-modal-pack__button {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 4px 4px rgb(0 0 0 / 25%));
}

section.op-main .op-navi .op-navi-modal-coin {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-modal-coin {
    gap: 16px;
    padding: 32px;
  }
}

section.op-main .op-navi .op-navi-modal-coin__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

section.op-main .op-navi .op-navi-modal-coin__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

section.op-main .op-navi .op-navi-modal-coin__text {
  font-size: 15px;
}
@media screen and (width >= 1024px) {
  section.op-main .op-navi .op-navi-modal-coin__text {
    font-size: 16px;
  }
}

section.op-main .op-navi .op-navi-modal-coin__services {
  width: 100%;
}

section.op-main .op-navi .op-navi-modal-coin__services img {
  display: block;
  width: 100%;
}

section.op-main .op-navi .op-navi-modal-coin__balance {
  display: block;
  max-width: 200px;
  margin-inline: auto;
}

section.op-main .op-navi .starter-pack-modal-button {
  display: block;
  width: 186px;
  max-block-size: unset;
  max-inline-size: unset;
  cursor: pointer;
}

@media (width >= 1024px) {
  a:hover,
  a:focus {
    transition: opacity 0.2s;
    opacity: 0.7;
  }
}
