@charset "UTF-8";
@forward 'sass:math' as math-*;
/**
  スクロール位置で表示アニメーション
 **/
/* bound text animation
--------------- */
@keyframes bound-text {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-20px); }
  100% {
    transform: translateY(-10px); } }

.is-animated .bound-text {
  position: relative;
  transform-origin: center bottom;
  animation-name: bound-text;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: both; }

/* bound text animation
--------------- */
.is-animated .animation-zoom-in {
  animation-name: zoomInAnime;
  animation-duration: 0.5s; }

@keyframes zoomInAnime {
  0% {
    transform: scale(1); }
  50% {
    transform: translateY(-15%) scale(1.1); }
  100% {
    transform: translateY(0) scale(1); } }

/* zoomOut animation
--------------- */
.animation-zoom-out {
  opacity: 0; }
  .is-animated .animation-zoom-out {
    animation-name: zoomOutAnime;
    animation-duration: 0.7s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards; }

@keyframes zoomOutAnime {
  0% {
    opacity: 0; }
  50% {
    opacity: 1;
    transform: scale(1.2); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes bounce {
  0% {
    opacity: 0; }
  0%,
  20%,
  50%,
  75%,
  100% {
    transform: translateY(0); }
  20% {
    transform: scale(0.5) translate3d(0, -30px, 0);
    transition: opacity 0.5s ease, transform 1s cubic-bezier(0.16, 0.05, 0, 1); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-10px); }
  100% {
    opacity: 1; } }

/* above fadeIn animation
--------------- */
.animation-above-fade-in {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 0.5s cubic-bezier(0.5, 0, 0, 1);
  transform: translateY(-100px); }
  .animation-above-fade-in.is-animated {
    opacity: 1;
    transform: translateY(0); }

/* bottom fadeIn animation
--------------- */
.animation-bottom-fade-in {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 1s cubic-bezier(0.5, 0, 0, 1);
  transform: translateY(50px); }
  .is-animated .animation-bottom-fade-in {
    opacity: 1;
    transform: translateY(0); }

/* Button animation
--------------- */
@keyframes scale {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.05, 1.05); }
  100% {
    transform: scale(1); } }

.button-anim {
  display: block;
  transition: 0.5s;
  animation-name: scale;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; }
  .button-anim:hover {
    animation: none; }
  @media screen and (min-width: 768px) {
    .button-anim {
      animation: none;
      transform: none;
      transition: unset; } }

.text-bounce.is-animated {
  position: relative;
  transform-origin: center bottom;
  animation-name: bounce;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  opacity: 0; }

.button-hover {
  display: block;
  transition: 0.5s; }
  .button-hover:hover {
    transform: scale(1.05, 1.05); }

/* bound text animation
--------------- */
@keyframes movingThumb {
  0%,
  100% {
    transform: translateX(0px) rotate(0deg); }
  50% {
    transform: translateX(0px) rotate(3deg); } }

.thumb-animation.is-moving {
  transition: transform 0.3s ease-in-out;
  transform: rotate(0deg);
  transform-origin: 50% 100%;
  animation: movingThumb 0.5s linear 2;
  animation-delay: 0.5s; }

.entry-method-item.thumb-animation.is-animated::before {
  transition: transform 0.3s ease-in-out;
  transform: rotate(0deg);
  transform-origin: 50% 100%;
  animation: movingThumb 0.5s linear 2;
  animation-delay: 0s; }

@keyframes movingText {
  0%,
  100% {
    transform: translateX(0px) rotate(0deg); }
  50% {
    transform: translateX(5px) rotate(7.5deg); } }

.text-animation.is-moving {
  transition: transform 0.3s ease-in-out;
  transform: rotate(0deg);
  transform-origin: 50% 100%;
  animation: movingText 0.5s linear 1;
  animation-delay: 0.5s; }

/* slide in
--------------- */
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0; }
  100% {
    transform: translateX(0); }
  40%,
  100% {
    opacity: 1; } }

.scroll-animation {
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.72s cubic-bezier(0.16, 0.05, 0, 1);
  transform: scale(0.95) translate3d(0, 1em, 0); }
  .scroll-animation.is-animated {
    opacity: 1;
    transform: scale(1) translateZ(0); }

/* モグラたたき風
--------------- */
.image-slide-out {
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  transition: transform 0.3s linear;
  animation-delay: 1s; }
  @media screen and (min-width: 768px) {
    .image-slide-out {
      animation-duration: 18s; } }

.image-slide-in {
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  transition: transform 0.3s ease-in-out;
  animation-delay: 1s; }
  @media screen and (min-width: 768px) {
    .image-slide-in {
      animation-duration: 18s; } }

@media screen and (min-width: 768px) {
  @keyframes slideOut-1 {
    0% {
      transform: translateY(0); }
    10% {
      transform: translateY(300px); }
    18%,
    100% {
      transform: translateY(0px); } }
  @keyframes slideIn-1 {
    0%,
    1% {
      transform: translateY(300px); }
    8% {
      transform: translateY(0); }
    19%,
    100% {
      transform: translateY(300px); } }
  @keyframes slideOut-2 {
    0%,
    20% {
      transform: translateY(0); }
    30% {
      transform: translateY(300px); }
    38%,
    100% {
      transform: translateY(0px); } }
  @keyframes slideIn-2 {
    0%,
    21% {
      transform: translateY(300px); }
    28% {
      transform: translateY(0); }
    39%,
    100% {
      transform: translateY(300px); } }
  @keyframes slideOut-3 {
    0%,
    40% {
      transform: translateY(0); }
    50% {
      transform: translateY(300px); }
    58%,
    100% {
      transform: translateY(0px); } }
  @keyframes slideIn-3 {
    0%,
    41% {
      transform: translateY(300px); }
    48% {
      transform: translateY(0); }
    59%,
    100% {
      transform: translateY(300px); } }
  @keyframes slideOut-4 {
    0%,
    60% {
      transform: translateY(0); }
    70% {
      transform: translateY(300px); }
    78%,
    100% {
      transform: translateY(0px); } }
  @keyframes slideIn-4 {
    0%,
    61% {
      transform: translateY(300px); }
    68% {
      transform: translateY(0); }
    79%,
    100% {
      transform: translateY(300px); } }
  @keyframes slideOut-5 {
    0%,
    80% {
      transform: translateY(0); }
    90% {
      transform: translateY(300px); }
    98%,
    100% {
      transform: translateY(0px); } }
  @keyframes slideIn-5 {
    0%,
    81% {
      transform: translateY(300px); }
    88% {
      transform: translateY(0); }
    99%,
    100% {
      transform: translateY(300px); } } }

/* bound
--------------- */
@keyframes bounceAndScale {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.16); }
  100% {
    transform: scale(1); } }

@keyframes knock {
  0% {
    transform: translateX(0px) rotate(0deg); }
  50% {
    transform: translateX(0px) rotate(5deg); }
  100% {
    transform: translateX(0px) rotate(0deg); } }

.mv__inner.is-animated .mv__title,
.mv__inner.is-animated .mv__supplement-balloon {
  animation: fadeIn 3s linear forwards;
  visibility: visible; }

.mv__title.is-bounce {
  animation: bounceAndScale 0.23s linear forwards;
  animation-delay: 0.5s; }

.mv__supplement-balloon {
  transform-origin: 50% 100%; }

.thumb-animation.is-rotate {
  opacity: 1;
  animation: knock 0.3s linear 2;
  animation-timing-function: steps(1, end);
  animation-delay: 0.25s; }

/* slideInFromRight ... title
--------------- */
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

/* above fadeIn animation
--------------- */
.animation-above-fade-in {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 0.5s cubic-bezier(0.5, 0, 0, 1);
  transform: translateY(-100px); }
  .animation-above-fade-in.is-animated {
    opacity: 1;
    transform: translateY(0); }

/* .button-contents
--------------- */
.button-contents__heading-02.is-animated img {
  opacity: 1;
  animation: knock 0.3s linear 2;
  animation-timing-function: steps(1, end);
  animation-delay: 0.25s;
  animation-iteration-delay: 0.07s; }

.text-uppercase {
  text-transform: uppercase; }

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

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

#contents-wrap {
  padding: 20px 0 0px 0;
  background-image: none; }

.layout {
  padding-inline: calc(32.5 / 375 * 100%); }
  @media screen and (min-width: 768px) {
    .layout {
      padding-inline: 30px; } }

.contents-layout {
  padding-inline: calc(50 / 375 * 100%); }
  @media screen and (min-width: 768px) {
    .contents-layout {
      padding-inline: 30px; } }

.color-red {
  color: #e83829; }

.auto {
  width: 100%;
  height: auto; }

@forward 'sass:math' as math-*;
body {
  margin: 0;
  color: #161c60; }
  @media screen and (min-width: 768px) {
    body {
      min-width: 960px; } }

.main {
  font-family: "Noto Sans CJK JP", "Noto Sans", "Noto Sans JP Subset", sans-serif;
  background-color: #161c60; }

main {
  position: relative;
  overflow: hidden; }
  main img {
    max-width: 100%;
    height: auto; }

#title-area-detailpage {
  position: absolute;
  top: -10px;
  width: 100%;
  height: 96px;
  padding-top: 15px;
  background: url("/common/images/title-area-pc-bg-01.gif") top left repeat;
  border-top: 1px solid #cfcfcf;
  border-bottom: 3px solid #bab6af;
  border-bottom: 3px solid #171c60; }

#title-area-inner {
  position: relative;
  width: 960px;
  margin: 0 auto; }

#title-area-detailpage h1 {
  float: left;
  height: 30px;
  padding: 15px 0 0px 10px;
  margin: 15px 0 0 0;
  font-size: 32px;
  border-left: 5px solid #171c60; }

@media screen and (max-width: 568px) {
  #detail-page {
    top: 6px !important; }
  #title-area-inner,
  #title-area-detailpage {
    position: static;
    width: 100%; }
  #title-area-detailpage {
    top: auto;
    height: auto;
    /*for IE7,8*/
    padding: 16px 0 32px;
    background: url("/common/images/title-area-pc-bg-01.gif") repeat scroll left top transparent 9;
    -webkit-background-size: 3px 3px;
    background-size: 3px 3px; }
  #title-area-detailpage h1 {
    float: none;
    height: 22px;
    min-height: auto;
    padding: 4px 0 0 5px;
    margin: 0 0 0 5px;
    font-size: 16px;
    border-left: 3px solid #171c60; }
  #title-area-detailpage h1 img {
    width: auto;
    height: 16px;
    vertical-align: center; } }

#contents-wrap {
  padding-top: 0 !important;
  background: none; }

/** -------------------------------------------------
 * パンくず
 ---------------------------------------------------- **/
#bread-clumb li {
  display: inline;
  font-size: 12px;
  color: #666; }

#bread-clumb li a {
  color: #035d8a;
  text-decoration: none; }

#bread-clumb li a:hover {
  text-decoration: underline; }

#bread-clumb #home {
  padding-left: 12px;
  background: url("/common/images/bread-clumb-home-bg-01.png") left 1px no-repeat; }

@media screen and (max-width: 568px) {
  #bread-clumb {
    margin: 0 0 4px 5px; }
  #bread-clumb li {
    padding: 4px 0 0 5px;
    font-size: 10px; }
  #bread-clumb #home {
    padding-left: 0;
    background: none; }
  #title-area-inner {
    width: 100%; } }

.close-layout {
  width: 100%;
  padding-block: calc(28 / 375 * 100%);
  background-color: #424040; }
  @media screen and (min-width: 768px) {
    .close-layout {
      padding-block: 50px; } }
  .close-layout__image {
    width: 289px;
    width: calc(289 / 375 * 100%);
    margin-inline: auto; }
    @media screen and (min-width: 768px) {
      .close-layout__image {
        width: 810px;
        aspect-ratio: 810/81; } }

.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 750/1339;
  overflow: hidden;
  background: url("../images/mv-bg_sp.png") center/cover no-repeat;
  background-color: #f93b2f; }
  @media screen and (min-width: 768px) {
    .mv {
      aspect-ratio: 1920/802;
      background: url("../images/mv-bg_pc.png") center/cover no-repeat; } }
  .mv__mv-contents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; }
    @media screen and (max-width: 767px) {
      .mv__mv-contents {
        height: 100%; } }
    @media screen and (min-width: 768px) {
      .mv__mv-contents {
        left: 50%;
        width: calc(1224 / 1920 * 100%);
        aspect-ratio: 1224/802;
        transform: translateX(-50%); } }
  .mv__main-visual {
    position: relative;
    width: 100%;
    height: 100%; }
  .mv__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .mv__supplement-balloon {
    position: absolute;
    top: 0;
    left: calc(10 / 375 * 100%);
    width: calc(157.5 / 375 * 100%);
    margin-top: calc(7.5 / 375 * 100%); }
    @media screen and (min-width: 768px) {
      .mv__supplement-balloon {
        left: 0;
        width: calc(293 / 1224 * 100%);
        margin-top: calc(46 / 1224 * 100%); } }
  .mv__title {
    position: absolute;
    top: 0;
    left: calc(35 / 375 * 100%);
    width: calc(304 / 375 * 100%);
    margin-top: calc(89.5 / 375 * 100%); }
    @media screen and (min-width: 768px) {
      .mv__title {
        left: calc(112 / 1224 * 100%);
        width: calc(563 / 1224 * 100%);
        margin-top: calc(147 / 1224 * 100%); } }
  .mv__title-01 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%; }
  .mv__title-02 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: calc(20 / 340 * -100%); }
    @media screen and (min-width: 768px) {
      .mv__title-02 {
        margin-top: calc(15 / 340 * -100%); } }
  .mv__campaign-period {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: calc(469.5 / 375 * 100%); }
    @media screen and (min-width: 768px) {
      .mv__campaign-period {
        left: calc(112 / 1224 * 100%);
        width: calc(563 / 1224 * 100%);
        margin-top: calc(398 / 1224 * 100%); } }
  .mv__campaign-period-01 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0; }
    @media screen and (min-width: 768px) {
      .mv__campaign-period-01 {
        position: absolute;
        margin-top: calc(77 / 563 * 100%); } }
  .mv__campaign-period-02 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: calc(23 / 340 * -100%);
    line-height: 0; }
    @media screen and (min-width: 768px) {
      .mv__campaign-period-02 {
        position: absolute;
        margin-top: 0; } }
  .mv__mv-link {
    position: relative;
    margin-inline: auto;
    margin-top: calc(24 / 375 * 100%); }
    @media screen and (min-width: 768px) {
      .mv__mv-link {
        left: calc(7 / 563 * 100%);
        margin-top: calc(170 / 563 * 100%); } }

.mv-link {
  width: calc(260 / 375 * 100%);
  text-align: center; }
  @media screen and (min-width: 768px) {
    .mv-link {
      width: calc(373 / 563 * 100%); } }
  .mv-link__button {
    position: relative;
    display: inline-block;
    transition: 0.5s; }
    @media screen and (min-width: 768px) {
      .mv-link__button {
        width: 100%; } }
    @media screen and (min-width: 768px) {
      .mv-link__button:hover {
        transform: scale(1.05, 1.05); } }

/* confetti
--------------- */
.confetti {
  overflow: hidden; }
  .confetti canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; }

@forward 'sass:math' as math-*;
.page-link {
  line-height: 0;
  text-align: center; }
  @media screen and (max-width: 767px) {
    .page-link {
      padding-block: calc(32 / 375 * 100%); } }
  @media screen and (min-width: 768px) {
    .page-link {
      padding-block: 70px;
      padding-inline: 30px; } }
  @media screen and (max-width: 767px) {
    .page-link__anchor {
      padding-inline: 25px; } }

.anchor {
  display: flex;
  align-items: center;
  justify-content: center; }
  .anchor__link {
    position: relative;
    display: inline-block;
    transition: 0.5s; }
    .anchor__link img {
      display: block; }
    .anchor__link::before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: '';
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      opacity: 0;
      transition: opacity 0.3s ease; }
    @media screen and (min-width: 768px) {
      .anchor__link:nth-of-type(1)::before {
        background-image: url("/cp/bookuji202512/images/anchor_01_hover.png"); } }
    @media screen and (min-width: 768px) {
      .anchor__link:nth-of-type(2)::before {
        background-image: url("/cp/bookuji202512/images/anchor_02_hover.png"); } }
    @media screen and (min-width: 768px) {
      .anchor__link:nth-of-type(3)::before {
        background-image: url("/cp/bookuji202512/images/anchor_03_hover.png"); } }
    @media screen and (min-width: 768px) {
      .anchor__link:hover::before {
        opacity: 1; } }
    .anchor__link + .anchor__link {
      margin-left: 10px; }
      @media screen and (min-width: 768px) {
        .anchor__link + .anchor__link {
          margin-left: 21px; } }
    @media screen and (min-width: 768px) {
      .anchor__link:hover {
        transform: scale(1.05, 1.05); } }

@forward 'sass:math' as math-*;
.campaign {
  padding-block: calc(49 / 375 * 100%) calc(23 / 375 * 100% + 68px);
  padding-inline: calc(32.5 / 375 * 100%);
  background-image: url("/cp/bookuji202512/images/bg_gold_01_sp.png");
  background-repeat: repeat-y;
  background-position: top;
  background-size: cover; }
  @media screen and (min-width: 768px) {
    .campaign {
      padding-block: 90px 268px;
      padding-inline: 30px;
      background-image: url("/cp/bookuji202512/images/bg_gold_01_pc.png");
      background-size: cover; } }
  @media screen and (min-width: 768px) {
    .campaign__inner {
      max-width: 1200px;
      margin-inline: auto; } }
  .campaign__wining-number {
    margin-top: 53px; }
    @media screen and (min-width: 768px) {
      .campaign__wining-number {
        max-width: 850px;
        margin-inline: auto;
        margin-top: 76px; } }

.cash-voucher {
  text-align: center; }
  @media screen and (min-width: 768px) {
    .cash-voucher {
      max-width: 750px;
      margin-inline: auto; } }
  .cash-voucher__heading {
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .cash-voucher__heading {
        width: calc(106.5 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .cash-voucher__heading {
        width: 229px; } }
  .cash-voucher__lead {
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .cash-voucher__lead {
        width: calc(189 / 310 * 100%);
        margin-top: calc(12 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .cash-voucher__lead {
        width: 466px;
        margin-top: 29px; } }
  .cash-voucher__prize {
    margin-top: 30px; }
    @media screen and (min-width: 768px) {
      .cash-voucher__prize {
        margin-top: 76px; } }
  .cash-voucher__annotation {
    margin-inline: auto;
    font-weight: bold;
    line-height: 1.4;
    color: #161c60;
    text-align: left; }
    @media screen and (max-width: 767px) {
      .cash-voucher__annotation {
        margin-top: calc(8.5 / 310 * 100%);
        padding-inline: calc(17.5 / 310 * 100%);
        font-size: calc(8 / 375 * 100vw); } }
    @media screen and (min-width: 768px) {
      .cash-voucher__annotation {
        max-width: 750px;
        margin-top: 35px;
        font-size: 14px;
        line-height: 1.57; } }
  .cash-voucher__prepaid-card {
    margin-top: 49px;
    margin-top: calc(31 / 310 * 100%); }
    @media screen and (max-width: 767px) {
      .cash-voucher__prepaid-card {
        padding-inline: calc(17.5 / 310 * 100%);
        margin-inline: auto; } }
    @media screen and (min-width: 768px) {
      .cash-voucher__prepaid-card {
        margin-top: 79px; } }
  @media screen and (max-width: 767px) {
    .cash-voucher__note {
      margin-top: calc(23 / 310 * 100%);
      padding-inline: calc(17.5 / 310 * 100%); } }
  @media screen and (min-width: 768px) {
    .cash-voucher__note {
      margin-top: 41px; } }
  .cash-voucher__note-text {
    text-align: left;
    font-size: calc(8 / 375 * 100vw);
    font-weight: 700;
    color: #171c61;
    line-height: 1.5; }
    @media screen and (min-width: 768px) {
      .cash-voucher__note-text {
        font-size: 14px; } }

.cash-voucher-prize {
  text-align: right; }
  @media screen and (max-width: 767px) {
    .cash-voucher-prize__item:not(:first-child) {
      width: 100%;
      margin-inline: auto 0; } }
  .cash-voucher-prize__item:first-child {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between; }
  .cash-voucher-prize__item + .cash-voucher-prize__item {
    margin-top: 20px; }
    @media screen and (min-width: 768px) {
      .cash-voucher-prize__item + .cash-voucher-prize__item {
        margin-top: 40px; } }
  @media screen and (max-width: 767px) {
    .cash-voucher-prize__prize {
      width: calc(65 / 305 * 100%);
      margin-inline: auto; } }
  .cash-voucher-prize__count {
    position: absolute;
    top: 10px;
    left: 56px; }
    @media screen and (max-width: 767px) {
      .cash-voucher-prize__count {
        width: calc(47 / 305 * 100%);
        margin-inline: auto; } }
    @media screen and (min-width: 768px) {
      .cash-voucher-prize__count {
        top: 30px;
        left: 137px; } }
  .cash-voucher-prize__box {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end; }
    @media screen and (min-width: 768px) {
      .cash-voucher-prize__box {
        width: 382px; } }
  @media screen and (max-width: 767px) {
    .cash-voucher-prize__price {
      width: calc(177 / 240 * 100%); } }
  @media screen and (max-width: 767px) {
    .cash-voucher-prize__card {
      width: calc(173 / 240 * 100%);
      margin-top: -2px; } }
  @media screen and (min-width: 768px) {
    .cash-voucher-prize__card {
      margin-top: -8px; } }

.cash-voucher-prepaid-card {
  position: relative; }
  .cash-voucher-prepaid-card__link {
    position: absolute;
    bottom: calc(39 / 214 * 100%);
    left: 40%;
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.25;
    color: #e50012;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #e50012;
    transition: 0.5s; }
    @media screen and (min-width: 768px) {
      .cash-voucher-prepaid-card__link {
        bottom: 65px;
        left: 46%;
        font-size: 17px;
        line-height: 1.5; } }
    .cash-voucher-prepaid-card__link::before {
      display: block;
      width: 5px;
      height: 5px;
      margin-right: 3px;
      clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
      content: '';
      background-color: #e50012; }
      @media screen and (min-width: 768px) {
        .cash-voucher-prepaid-card__link::before {
          width: 6px;
          height: 7px;
          margin-right: 8px; } }
    @media screen and (min-width: 768px) {
      .cash-voucher-prepaid-card__link:hover {
        border-color: transparent; } }

.wining-number {
  text-align: center; }
  @media screen and (max-width: 768px) {
    .wining-number__heading {
      width: calc(286 / 319 * 100%);
      margin: 0 auto; } }
  .wining-number__schedule {
    display: inline-block;
    margin-top: 14px; }
    @media screen and (max-width: 768px) {
      .wining-number__schedule {
        width: 100%; } }
    @media screen and (min-width: 768px) {
      .wining-number__schedule {
        margin-top: 20px; } }

@forward 'sass:math' as math-*;
.entry-method-wrap {
  width: 100%; }

.entry-method {
  margin-inline: auto;
  text-align: center;
  padding-block: calc(60 / 375 * 100%);
  position: relative;
  background-color: #161c60; }
  @media screen and (min-width: 768px) {
    .entry-method {
      padding-block: 100px 146px; } }
  .entry-method::before {
    content: '';
    position: absolute;
    top: -65px;
    left: 0;
    width: 100%;
    height: 68px;
    background-color: #161c60;
    clip-path: polygon(0 0, 100% 65px, 100% 100%, 0 100%); }
    @media screen and (min-width: 768px) {
      .entry-method::before {
        top: -172px;
        height: 175px;
        clip-path: polygon(0 0, 100% 172px, 100% 100%, 0 100%); } }
  .entry-method::after {
    content: '';
    position: absolute;
    bottom: -67px;
    left: 0;
    width: 100%;
    height: 68px;
    background-color: #161c60;
    clip-path: polygon(0 0, 0 0, 100% 0, 100% 65px); }
    @media screen and (min-width: 768px) {
      .entry-method::after {
        bottom: -172px;
        height: 175px;
        clip-path: polygon(0 0, 0 0, 100% 0, 100% 172px); } }
  .entry-method__bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    @media screen and (min-width: 768px) {
      .entry-method__bg-layer::before {
        content: '';
        display: block;
        width: 1920px;
        aspect-ratio: 1920/2834;
        position: absolute;
        top: 136px;
        left: 50%;
        transform: translateX(-50%);
        background: url("../images/bg-entry-method-01_pc.png") center/contain no-repeat; } }
  .entry-method__layout {
    margin-inline: auto; }
    @media screen and (min-width: 768px) {
      .entry-method__layout {
        max-width: 1260px; } }
  .entry-method__inner {
    position: relative;
    padding-inline: calc(32.5 / 375 * 100%); }
    @media screen and (max-width: 767px) {
      .entry-method__inner {
        margin-top: calc(36 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .entry-method__inner {
        padding-inline: 30px;
        margin-top: 61px; } }
  .entry-method__heading {
    padding-inline: calc(32.5 / 375 * 100%);
    position: relative; }
    @media screen and (max-width: 767px) {
      .entry-method__heading:before {
        content: '';
        display: block;
        position: absolute;
        top: -61%;
        left: 50%;
        transform: translateX(-50%);
        aspect-ratio: 680/236;
        width: 340px;
        width: calc(340 / 375 * 100%);
        background: url("../images/bg-entry-method-01_sp.png") center/contain no-repeat; } }
    @media screen and (min-width: 768px) {
      .entry-method__heading {
        padding-inline: 30px; } }
  @media screen and (max-width: 767px) {
    .entry-method__heading-img {
      width: calc(161.5 / 310 * 100%);
      margin-inline: auto; } }
  .entry-method__heading-lead {
    text-align: center;
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .entry-method__heading-lead {
        width: calc(282 / 310 * 100%);
        margin-top: calc(12 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .entry-method__heading-lead {
        margin-top: 21px;
        width: 770px; } }
  @media screen and (max-width: 767px) {
    .entry-method__sub-heading {
      width: calc(275 / 310 * 100%);
      margin-inline: auto; } }
  @media screen and (max-width: 767px) {
    .entry-method__inner:nth-of-type(1):before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: calc(10.5 / 375 * 100%);
      aspect-ratio: 678/94;
      width: calc(339 / 375 * 100%);
      background: url("../images/bg-entry-method-02_sp.png") center/contain no-repeat; } }
  @media screen and (max-width: 767px) {
    .entry-method__inner:nth-of-type(2):before {
      content: '';
      display: block;
      position: absolute;
      top: calc(146 / 375 * -100vw);
      left: calc(15.5 / 375 * 100%);
      aspect-ratio: 698/421;
      width: calc(349 / 375 * 100%);
      background: url("../images/bg-entry-method-03_sp.png") center/contain no-repeat; } }
  @media screen and (max-width: 767px) {
    .entry-method__inner:nth-of-type(2):after {
      content: '';
      display: block;
      position: absolute;
      bottom: calc(49 / 375 * -100vw);
      left: 50%;
      transform: translateX(-50%);
      aspect-ratio: 673/153;
      width: calc(336.5 / 375 * 100%);
      background: url("../images/bg-entry-method-04_sp.png") center/contain no-repeat; } }
  .entry-method__button-container {
    padding-inline: calc(17.5 / 310 * 100%); }
  .entry-method__button {
    display: inline-block;
    transition: 0.5s;
    margin-top: calc(30.5 / 275 * 100%);
    position: relative;
    z-index: 1; }
    @media screen and (min-width: 768px) {
      .entry-method__button {
        margin-top: 53px; } }
    @media screen and (min-width: 768px) {
      .entry-method__button:hover {
        transform: scale(1.05, 1.05); } }
    .entry-method__button + .entry-method__sub-heading {
      margin-top: 47px; }
      @media screen and (min-width: 768px) {
        .entry-method__button + .entry-method__sub-heading {
          margin-top: 150px; } }
  .entry-method__step {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding-inline: 0;
    margin-top: 14px; }
    @media screen and (max-width: 767px) {
      .entry-method__step {
        row-gap: 57px; } }
    @media screen and (min-width: 768px) {
      .entry-method__step {
        grid-template-columns: repeat(3, 1fr);
        column-gap: calc(79 / 1200 * 100%);
        margin-top: 26px; } }
    @media screen and (min-width: 768px) {
      .entry-method__step--purchase-03 {
        column-gap: 0;
        grid-template-columns: repeat(auto-fit, minmax(300px, 550px)); } }
  .entry-method__campaign-accordion {
    position: relative;
    padding-inline: calc(32.5 / 375 * 100%);
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .entry-method__campaign-accordion {
        margin-top: calc(36 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .entry-method__campaign-accordion {
        max-width: 750px;
        margin-top: 103px; } }

.entry-method-item {
  background-color: #fff;
  border-radius: 13px;
  display: grid;
  position: relative;
  justify-items: center;
  row-gap: 0;
  padding-inline: calc(17.5 / 310 * 100%);
  padding-top: calc(27.5 / 310 * 100%);
  padding-bottom: calc(22.5 / 310 * 100%); }
  @media screen and (min-width: 768px) {
    .entry-method-item {
      display: block;
      padding-inline: 24px;
      padding-top: 55px;
      padding-bottom: 36px;
      row-gap: 0;
      border-radius: 25px; } }
  .entry-method-item:not(:last-child)::after {
    content: '';
    display: block;
    width: 56px;
    height: 25px;
    background-color: #e73828;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    position: absolute;
    right: calc(-56 / 314 * 100%); }
    @media screen and (max-width: 767px) {
      .entry-method-item:not(:last-child)::after {
        left: 50%;
        transform: translate(-50%);
        bottom: -43px; } }
    @media screen and (min-width: 768px) {
      .entry-method-item:not(:last-child)::after {
        top: 50%;
        transform: translateY(-50%);
        clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
        width: 33px;
        height: 74px; } }
  .entry-method-item__step {
    width: 100%;
    background-color: #e73828;
    padding-block: calc(4 / 310 * 100%);
    padding-inline: calc(17.5 / 310 * 100%);
    border-radius: 13px 13px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box; }
    @media screen and (min-width: 768px) {
      .entry-method-item__step {
        padding-block: 13px;
        padding-inline: 24px;
        border-radius: 25px 25px 0 0;
        margin-top: -1px; } }
  @media screen and (max-width: 767px) {
    .entry-method-item__step-image {
      width: calc(56 / 245 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item__heading {
      margin-top: calc(14 / 245 * 100%); } }
  @media screen and (min-width: 768px) {
    .entry-method-item__heading {
      margin-top: 16px; } }
  @media screen and (max-width: 767px) {
    .entry-method-item__heading img {
      width: 100%; } }
  .entry-method-item__heading--nest {
    margin-top: 0;
    margin-inline: auto; }
  .entry-method-item__text {
    text-align: left;
    font-size: calc(8 / 375 * 100vw);
    line-height: 1.6;
    font-weight: bold;
    margin-top: calc(7 / 275 * 100%);
    padding: 0 calc(10 / 375 * 100vw); }
    @media screen and (min-width: 768px) {
      .entry-method-item__text {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 20px;
        padding: 0; } }
  .entry-method-item__image--nest {
    margin-top: 5px; }
    @media screen and (min-width: 768px) {
      .entry-method-item__image--nest {
        margin-top: 3px; } }
  .entry-method-item__nest-block {
    margin-top: 28px; }
    @media screen and (min-width: 768px) {
      .entry-method-item__nest-block {
        margin-top: 15px; } }
  .entry-method-item__illust {
    margin-top: calc(14.5 / 275 * 100%); }
    @media screen and (min-width: 768px) {
      .entry-method-item__illust {
        margin-top: 26px; } }
    @media screen and (max-width: 767px) {
      .entry-method-item__illust img {
        width: 100%; } }
  .entry-method-item__nest-illust {
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .entry-method-item__nest-illust img {
        width: 100%; } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-01 .entry-method-item__illust {
      width: calc(199.5 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-01 .entry-method-item__heading {
      width: calc(161.5 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-02 .entry-method-item__illust {
      width: calc(265 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-02 .entry-method-item__heading {
      width: calc(271 / 275 * 100%); } }
  @media screen and (min-width: 768px) {
    .entry-method-item--shop-front-02.is-animated {
      transition-delay: 0.1s; } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-03 .entry-method-item__illust {
      width: calc(214 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--shop-front-03 .entry-method-item__heading {
      width: calc(255.5 / 275 * 100%); } }
  @media screen and (min-width: 768px) {
    .entry-method-item--shop-front-03.is-animated {
      transition-delay: 0.2s; } }
  .entry-method-item--delivery-01 .entry-method-item__step, .entry-method-item--delivery-02 .entry-method-item__step, .entry-method-item--delivery-03 .entry-method-item__step {
    background-color: #ffef00; }
  .entry-method-item--delivery-01:not(:last-child)::after, .entry-method-item--delivery-02:not(:last-child)::after, .entry-method-item--delivery-03:not(:last-child)::after {
    background-color: #fff; }
  @media screen and (max-width: 767px) {
    .entry-method-item--delivery-01 .entry-method-item__illust {
      width: calc(207.5 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--delivery-01 .entry-method-item__heading {
      width: calc(235.5 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--delivery-01 .entry-method-item__nest-illust {
      width: calc(207.5 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--delivery-01 .entry-method-item__heading--nest {
      width: calc(222.5 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--delivery-02 .entry-method-item__illust {
      width: calc(243.5 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--delivery-02 .entry-method-item__heading {
      width: calc(251 / 275 * 100%); } }
  @media screen and (min-width: 768px) {
    .entry-method-item--delivery-02.is-animated {
      transition-delay: 0.1s; } }
  @media screen and (max-width: 767px) {
    .entry-method-item--delivery-03 .entry-method-item__illust {
      width: calc(163 / 275 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--delivery-03 .entry-method-item__heading {
      width: calc(255.5 / 275 * 100%); } }
  @media screen and (min-width: 768px) {
    .entry-method-item--delivery-03.is-animated {
      transition-delay: 0.1s; } }
  @media screen and (max-width: 767px) {
    .entry-method-item--carry-in .entry-method-item__step {
      padding-block: 14px 10px; } }
  @media screen and (max-width: 767px) {
    .entry-method-item--carry-in .entry-method-item__step-image {
      width: calc(245 / 245 * 100%); } }
  @media screen and (min-width: 768px) {
    .entry-method-item--carry-in .entry-method-item__step-image {
      width: calc(495 / 550 * 100%); } }
  @media screen and (max-width: 767px) {
    .entry-method-item--carry-in .entry-method-item__image {
      width: calc(235 / 241 * 100%);
      margin-top: 17px; } }
  @media screen and (max-width: 767px) {
    .entry-method-item--carry-in .entry-method-item__heading {
      width: 100%; } }
  @media screen and (min-width: 768px) {
    .entry-method-item--carry-in .entry-method-item__heading {
      margin-top: 16px; } }
  @media screen and (max-width: 767px) {
    .entry-method-item--carry-in .entry-method-item__heading > img {
      width: 100%; } }
  @media screen and (min-width: 768px) {
    .entry-method-item--carry-in .entry-method-item__text {
      margin-top: 20px; } }

.campaign-accordion {
  width: 100%; }
  .campaign-accordion__header {
    position: relative;
    background-color: #e83829;
    padding-block: calc(11 / 310 * 100%) calc(10 / 310 * 100%);
    cursor: pointer;
    width: 100%;
    display: block; }
  .campaign-accordion__header::after {
    content: '';
    display: block;
    position: absolute;
    right: calc(17 / 310 * 100%);
    top: 50%;
    transform: translateY(-50%);
    width: calc(11.5 / 310 * 100%);
    aspect-ratio: 11.5/10;
    background: url("../images/accordion-arrow.png") center/contain no-repeat;
    transition: 0.2s ease-in-out; }
    @media screen and (min-width: 768px) {
      .campaign-accordion__header::after {
        width: 23px;
        height: 27px;
        right: 49px; } }
  .campaign-accordion._open .campaign-accordion__header::after {
    transform: translateY(-50%) rotate(90deg); }
  .campaign-accordion__label {
    width: calc(206.5 / 310 * 100%);
    display: block;
    margin-inline: auto; }
  .campaign-accordion__accordion-content {
    display: none;
    background-color: #fff; }

.accordion-content {
  padding-block: calc(17.5 / 310 * 100%);
  padding-inline: calc(30 / 310 * 100%);
  text-align: left; }
  @media screen and (min-width: 768px) {
    .accordion-content {
      padding-block: 42px;
      padding-inline: 75px; } }
  .accordion-content__term::before {
    content: '・'; }
  .accordion-content__term:not(:first-of-type) {
    margin-top: calc(10 / 250 * 100%); }
    @media screen and (min-width: 768px) {
      .accordion-content__term:not(:first-of-type) {
        margin-top: 16px; } }
  .accordion-content__unordered-list-item::before {
    content: '';
    display: inline-block;
    margin-right: 1ch; }
  .accordion-content__heading {
    font-size: calc(10 / 375 * 100vw);
    font-weight: 900;
    line-height: 1.5;
    color: #161c60; }
    @media screen and (min-width: 768px) {
      .accordion-content__heading {
        font-size: 19px; } }
  .accordion-content__definition-list {
    margin-top: 0.15em; }
  .accordion-content__term {
    font-size: calc(10 / 375 * 100vw);
    font-weight: 900;
    line-height: 1.5;
    color: #161c60; }
    @media screen and (min-width: 768px) {
      .accordion-content__term {
        font-size: 19px; } }
  .accordion-content__description {
    font-size: calc(9 / 375 * 100vw);
    font-weight: 700;
    line-height: 1.5;
    color: #161c60;
    margin-top: 0.15em; }
    @media screen and (min-width: 768px) {
      .accordion-content__description {
        font-size: 17px; } }
  .accordion-content__unordered-list-item::before {
    content: none; }

@forward 'sass:math' as math-*;
.target-product {
  background-image: url("/cp/bookuji202512/images/bg_gold_02_sp.png");
  background-position: top;
  background-repeat: repeat-y;
  background-size: cover; }
  @media screen and (min-width: 768px) {
    .target-product {
      background-image: url("/cp/bookuji202512/images/bg_gold_02_pc.png");
      background-size: auto; } }

.product {
  padding-block: 130px;
  padding-inline: calc(32.5 / 375 * 100%);
  max-width: 1200px;
  margin-inline: auto;
  box-sizing: border-box; }
  @media screen and (min-width: 768px) {
    .product {
      padding-block: 336px;
      padding-inline: 60px; } }
  .product__heading {
    width: 100%;
    text-align: center;
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .product__heading {
        width: calc(161.5 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .product__heading {
        width: 298px; } }
  .product__lead {
    text-align: center;
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .product__lead {
        width: calc(282 / 310 * 100%);
        margin-top: calc(12 / 310 * 100%); } }
    @media screen and (min-width: 768px) {
      .product__lead {
        width: 642px;
        margin-top: 9px; } }
  .product__list {
    margin-top: calc(26 / 310 * 100%); }
    @media screen and (min-width: 768px) {
      .product__list {
        margin-top: 70px; } }
  .product__product-note {
    margin-top: calc(18.5 / 310 * 100%);
    padding-inline: calc(17.5 / 310 * 100%);
    text-align: center; }
    @media screen and (min-width: 768px) {
      .product__product-note {
        margin-top: 35px; } }
  @media screen and (min-width: 768px) {
    .product__product-note-heading {
      width: 550px;
      margin-inline: auto; } }
  .product__product-note-text {
    margin-top: calc(8.5 / 270 * 100%);
    font-size: calc(8px + (1vw - 3.75px));
    font-weight: 700; }
    @media screen and (min-width: 768px) {
      .product__product-note-text {
        margin-top: 22px;
        font-size: 14px; } }

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10.5px;
  justify-content: center;
  padding: 0;
  list-style: none;
  line-height: 0; }
  @media screen and (min-width: 768px) {
    .product-list {
      gap: 24px; } }
  .product-list__item {
    flex: 0 1 calc((100% / 3) - (10.5px * 2 / 3)); }
    @media screen and (min-width: 768px) {
      .product-list__item {
        flex: 0 1 calc((100% / 6) - (24px * 5 / 6)); } }
  .product-list__link {
    cursor: pointer; }
  .product-list__link:hover {
    filter: brightness(1.5); }
  .product-list__link--pointer-none {
    pointer-events: none; }

/* .product-modal
--------------- */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden auto;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.3s; }

.has-product-modal .product-modal {
  visibility: visible;
  opacity: 1; }

.product-modal-container {
  position: relative;
  width: 500px;
  max-width: 90%;
  margin: auto; }
  @media screen and (min-width: 768px) {
    .product-modal-container {
      width: 480px;
      height: 573px;
      margin: auto; } }

.product-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 10;
  width: 11%;
  max-width: 60px;
  height: 11%;
  max-height: 60px;
  cursor: pointer; }

.product-modal-content {
  position: relative;
  height: 0;
  padding-bottom: 120%; }

.product-modal-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  opacity: 0;
  transform: translate(-50%, -50%); }
  @media screen and (min-width: 768px) {
    .product-modal-item {
      max-width: 480px; } }
  .product-modal-item.is-active {
    opacity: 1; }

.is-disabled {
  pointer-events: none;
  cursor: default; }

@forward 'sass:math' as math-*;
.terms-outer {
  position: relative;
  padding-block: calc(50 / 375 * 100%);
  background-color: #161c60; }
  @media screen and (min-width: 768px) {
    .terms-outer {
      padding-block: 52px 150px; } }
  .terms-outer::before {
    position: absolute;
    top: -65px;
    left: 0;
    width: 100%;
    height: 68px;
    clip-path: polygon(0 0, 100% 65px, 100% 100%, 0 100%);
    content: '';
    background-color: #161c60; }
    @media screen and (min-width: 768px) {
      .terms-outer::before {
        top: -172px;
        height: 175px;
        clip-path: polygon(0 0, 100% 172px, 100% 100%, 0 100%); } }

.terms {
  box-sizing: border-box;
  padding-block: calc(30 / 310 * 100%) calc(28 / 310 * 100%);
  padding-inline: calc(15 / 310 * 100%);
  text-align: center;
  background-color: #fff;
  border-radius: 13px; }
  @media screen and (min-width: 768px) {
    .terms {
      max-width: 811px;
      padding: 60px 68px 60px;
      margin-inline: auto;
      border-radius: 25px; } }
  .terms__heading {
    font-size: calc(15 / 375 * 100vw);
    font-weight: 600;
    color: #e73828; }
    @media screen and (min-width: 768px) {
      .terms__heading {
        font-size: 35px;
        line-height: 1.3; } }
  .terms__box {
    box-sizing: border-box;
    width: 100%;
    aspect-ratio: 500/223;
    padding: 0 7px 0;
    margin-top: calc(20 / 280 * 100%);
    overflow-y: scroll; }
    @media screen and (min-width: 768px) {
      .terms__box {
        max-width: 656px;
        height: 207px;
        padding: 0 12px 0 24px;
        margin-inline: auto;
        margin-top: 52px; } }

.terms-content {
  font-size: calc(10 / 375 * 100vw);
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0.04em; }
  @media screen and (min-width: 768px) {
    .terms-content {
      font-size: 17px;
      letter-spacing: 0.05em; } }
  @media screen and (min-width: 768px) {
    .terms-content__title {
      font-size: 19px; } }
  .terms-content__data + .terms-content__title {
    margin-top: 1.5em; }
    @media screen and (min-width: 768px) {
      .terms-content__data + .terms-content__title {
        margin-top: 1.5em; } }
  .terms-content__data > a {
    color: #161c60;
    transition: 0.5s; }
    @media screen and (min-width: 768px) {
      .terms-content__data > a:hover {
        text-decoration: transparent; } }
  .terms-content__list {
    padding-left: 10px; }

@forward 'sass:math' as math-*;
.button-contents {
  padding-block: calc(40 / 375 * 100%) calc(34 / 375 * 100%);
  text-align: center;
  background: url(/cp/bookuji202512/images/bg_gold_03_sp.png) center/cover no-repeat; }
  @media screen and (min-width: 768px) {
    .button-contents {
      padding: 135px 0 106px;
      background: url(/cp/bookuji202512/images/bg_gold_03_pc.png) center/cover no-repeat; } }
  .button-contents__heading {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 100%; }
  .button-contents__heading-01 {
    width: calc(105 / 275 * 100%); }
    @media screen and (min-width: 768px) {
      .button-contents__heading-01 {
        width: 210px; } }
  .button-contents__heading-02 {
    width: calc(155 / 275 * 100%); }
    @media screen and (min-width: 768px) {
      .button-contents__heading-02 {
        width: 335px; } }
  .button-contents__button {
    position: relative;
    display: inline-block;
    margin-inline: auto;
    margin-top: calc(22.5 / 275 * 100%);
    line-height: 0;
    vertical-align: bottom;
    transition: 0.5s; }
    @media screen and (min-width: 768px) {
      .button-contents__button {
        margin-top: 50px; } }
    @media screen and (min-width: 768px) {
      .button-contents__button:hover {
        transform: scale(1.05, 1.05); } }

@forward 'sass:math' as math-*;
footer {
  border-top: none; }
  footer #footer-inner {
    display: none; }

.footer {
  font-family: "Noto Sans CJK JP", "Noto Sans", "Noto Sans JP Subset", sans-serif;
  font-weight: 900;
  background-color: #161c60; }
  .footer__inner {
    padding-block: calc(62 / 375 * 100%) calc(41 / 375 * 100%);
    padding-inline: calc(50 / 375 * 100%);
    text-align: center; }
    @media screen and (min-width: 768px) {
      .footer__inner {
        max-width: 810px;
        padding-block: 160px 88px;
        padding-inline: 30px;
        margin: 0 auto; } }

.footer-contents__text {
  display: inline;
  font-size: 11px;
  font-size: calc(11px + (1vw - 3.75px));
  line-height: 1.45;
  color: #fff;
  letter-spacing: 0.12em; }
  @media screen and (min-width: 768px) {
    .footer-contents__text {
      font-size: 18px;
      letter-spacing: 0.085em; } }

.footer-contents__button {
  display: inline-block;
  transition: 0.5s; }
  @media screen and (min-width: 768px) {
    .footer-contents__button:hover {
      transform: scale(1.05, 1.05); } }

.footer-app {
  display: grid;
  grid-template-columns: calc(97 / 222 * 100%) 1fr;
  row-gap: 14px;
  row-gap: calc(15 / 275 * 100%);
  column-gap: 13px;
  align-items: center;
  margin-top: calc(19 / 275 * 100%); }
  @media screen and (max-width: 767px) {
    .footer-app {
      justify-items: center;
      width: calc(222 / 273 * 100%);
      margin-inline: auto; } }
  @media screen and (min-width: 768px) {
    .footer-app {
      display: grid;
      grid-template-columns: 180px 204px 270px;
      row-gap: 20px;
      column-gap: 28px;
      align-items: stretch;
      justify-content: center;
      padding: 0 23px;
      margin-top: 30px; } }
  @media screen and (min-width: 768px) {
    .footer-app__apple {
      pointer-events: none; } }
  @media screen and (max-width: 767px) {
    .footer-app__apple {
      grid-row: 2 / 2;
      grid-column: 1 / 2; } }
  @media screen and (min-width: 768px) {
    .footer-app__google {
      pointer-events: none; } }
  @media screen and (max-width: 767px) {
    .footer-app__google {
      grid-row: 2 / 2;
      grid-column: 2 / 3; } }
  .footer-app__code {
    grid-row: 1 / 1;
    grid-column: 1 / 3; }
    @media screen and (max-width: 767px) {
      .footer-app__code {
        width: calc(73 / 222 * 100%); } }
    @media screen and (min-width: 768px) {
      .footer-app__code {
        display: flex;
        grid-row: 1 / 3;
        grid-column: 3 / 4;
        align-items: center;
        justify-content: space-evenly;
        background-color: #e63828;
        border-radius: 13px; } }
  .footer-app__text-block {
    grid-row: 2 / 3;
    grid-column: 1 / 3; }

.footer-app-text-block {
  position: relative;
  display: flex;
  align-items: center; }
  .footer-app-text-block__supplement {
    font-weight: bold;
    color: #fff;
    text-align: left; }
    @media screen and (min-width: 768px) {
      .footer-app-text-block__supplement {
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: 0.085em; } }
  @media screen and (min-width: 768px) {
    .footer-app-text-block__triangle {
      position: absolute;
      right: 0; } }

.footer-share {
  margin-block: calc(51 / 275 * 100%) 0; }
  @media screen and (min-width: 768px) {
    .footer-share {
      margin-top: 143px; } }
  .footer-share__heading {
    display: flex;
    align-items: center;
    justify-content: center; }
    .footer-share__heading > img {
      width: calc(178 / 273 * 100%); }
    .footer-share__heading::before, .footer-share__heading::after {
      display: block;
      width: 42px;
      height: 17px;
      content: '';
      background-repeat: no-repeat;
      background-size: contain; }
      @media screen and (min-width: 768px) {
        .footer-share__heading::before, .footer-share__heading::after {
          width: 83px;
          height: 31px; } }
    .footer-share__heading::before {
      margin-right: calc(6 / 273 * 100%);
      background-image: url("/cp/bookuji202512/images/footer_icon_before.png"); }
      @media screen and (min-width: 768px) {
        .footer-share__heading::before {
          margin-right: 24px; } }
    .footer-share__heading::after {
      margin-left: 6px;
      background-image: url("/cp/bookuji202512/images/footer_icon_after.png"); }
      @media screen and (min-width: 768px) {
        .footer-share__heading::after {
          margin-left: 24px; } }
  .footer-share__sns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block: calc(25 / 275 * 100%) 0;
    margin-inline: auto; }
    @media screen and (max-width: 767px) {
      .footer-share__sns {
        width: calc(149 / 273 * 100%); } }
    @media screen and (min-width: 768px) {
      .footer-share__sns {
        max-width: 266px;
        margin: 49px auto 0; } }

@media screen and (max-width: 767px) {
  .sns-link {
    width: calc(21 / 149 * 100%);
    height: calc(24 / 149 * 100%); } }

.footer-copyright {
  padding: 9px 0 29px;
  text-align: center;
  background-image: url("/cp/bookuji202512/images/bg_gold_04_sp.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }
  @media screen and (min-width: 768px) {
    .footer-copyright {
      padding: 30px 0 48px;
      background-image: url("/cp/bookuji202512/images/bg_gold_04_pc.png"); } }
  .footer-copyright__text {
    font-size: 7px;
    font-size: calc(7px + (1vw - 3.75px));
    font-weight: bold;
    letter-spacing: 0.065em; }
    @media screen and (min-width: 768px) {
      .footer-copyright__text {
        font-size: 11px; } }
