@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap&display=swap");
@media screen and (min-width: 360px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 480px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 1040px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 1240px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 1440px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 1439px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 1239px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 1199px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 1039px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 991px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 479px) {
  body {
    margin: 0;
  }
}
@media screen and (max-width: 359px) {
  body {
    margin: 0;
  }
}

@media screen and (max-width: 991px) {
  .hidden-md-down {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hidden-sm-down {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .hidden-xs-down {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .hidden-lg-up {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .hidden-ipad-up {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .hidden-md-up {
    display: none;
  }
}

@media screen and (min-width: 480px) {
  .hidden-sm-up {
    display: none;
  }
}

@media screen and (min-width: 360px) {
  .hidden-xs-up {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  height: 100%;
  word-break: break-all;
  color: #000;
}

section {
  padding: initial;
}

.contents {
  overflow: visible;
}

ul,
ul li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ol {
  padding-left: 1.4em;
  list-style: none;
}

dl {
  margin-bottom: 0;
}

dl dt {
  margin-bottom: 0;
}

dl dd {
  margin-bottom: 0;
}

a:link {
  color: initial;
  text-decoration: none;
}

a {
  transition: 0.3s all;
  color: #333;
  opacity: 1;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

i, em {
  font-style: normal;
}

h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin-bottom: 0;
}

h2 > span,
h3 > span,
h4 > span,
h5 > span,
h6 > span {
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  margin-bottom: 0;
}

button, input, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border-radius: 0;
  color: inherit;
  background: 0 0;
  border: none;
  margin: 0;
  padding: 0;
}

#header,
#footer {
  position: relative;
  margin-top: 0;
  z-index: 100;
}

.share-sns-column,
.menu-column {
  margin-top: 0;
  position: relative;
  background: #fff;
  z-index: 100;
}

.content-inner {
  max-width: 1335px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pageGuide {
  z-index: 1;
}

/* ------------------------------------------
  component
--------------------------------------- */
.is-open {
  overflow: hidden;
}

.fadein {
  transform: translateY(50px);
  opacity: 0 !important;
  transition: 0.4s linear;
}
.fadein.is-scroll {
  transform: translateY(0);
  opacity: 1 !important;
}

/* ------------------------------------------
  animation
--------------------------------------- */
@-webkit-keyframes slideInBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideInBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes fuwafuwa {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translate(0, -5px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(5deg);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translate(0, -5px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(5deg);
  }
}
/* 上からぽよん */
@-webkit-keyframes customBounceInUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  60% {
    opacity: 1;
    transform: translateY(-2.5%);
  }
  80% {
    transform: translateY(2%);
  }
  90% {
    transform: translateY(1%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes customBounceInUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  60% {
    opacity: 1;
    transform: translateY(-2.5%);
  }
  80% {
    transform: translateY(2%);
  }
  90% {
    transform: translateY(1%);
  }
  100% {
    transform: translateY(0);
  }
}
/* -------------------------------------- */
#cardapp {
  position: relative;
  display: flex;
  width: 100%;
  overflow-wrap: anywhere;
  font-family: "Zen Kaku Gothic New", Meiryo, メイリオ, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  word-break: normal;
  line-break: strict;
  background: linear-gradient(to right, #FBF7EA 0%, #FBF7EA 50%, #FCECF4 50%, #FCECF4 100%) fixed;
}
#cardapp .btn {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0.2em 2em;
  padding-right: 3em;
  background: #fff;
  border: 1px solid #000000;
  transition: all 0.2s ease;
}
#cardapp .btn span {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  #cardapp .btn:hover {
    background: #EDB61A;
  }
}
#cardapp .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  border-left: 0.6em solid #000000;
  border-right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #cardapp .btn-more:hover {
    color: #fff;
    background: #FBF7EA;
    border-color: #FBF7EA;
  }
  #cardapp .btn-more:hover::after {
    border-left-color: #fff;
  }
}
#cardapp .btn-round {
  position: relative;
  display: block;
  color: #FCECF4;
  text-align: center;
  background: #fff;
  border-radius: 9999px;
  transition: all 0.2s ease;
}
#cardapp .btn-round::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  border-left: 0.6em solid #FCECF4;
  border-right: 0;
  transition: color 0.2s ease;
  transform: translateY(-50%);
}
#cardapp .btn-round span {
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4em;
}
#cardapp .btn-round span img {
  width: 80%;
  transition: all 0.2s ease;
}
@media screen and (min-width: 769px) {
  #cardapp .btn-round.is-active, #cardapp .btn-round:hover {
    color: #000000 !important;
    background: #EDB61A;
    opacity: 1;
  }
  #cardapp .btn-round.is-active img, #cardapp .btn-round:hover img {
    filter: brightness(0);
  }
  #cardapp .btn-round.is-active::after, #cardapp .btn-round:hover::after {
    border-left-color: #000000 !important;
  }
}
#cardapp .btn-about {
  margin: 0 auto;
  display: block;
  width: 176px;
  height: 32px;
}
#cardapp .btn-about span {
  margin-right: 1em;
  font-weight: bold;
}
#cardapp .btn-about.present {
  width: 164px;
  height: 32px;
  background: url(/umedamise/250812cardapp/assets/img/link_about_pre_bg.png) no-repeat;
  background-size: 100% auto;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #cardapp .btn-about.present:hover {
    color: #295BA5;
    background: url(/umedamise/250812cardapp/assets/img/link_about_pre_bg_h.png) no-repeat;
    background-size: 100% auto;
  }
}
#cardapp .btn-about.card {
  width: 200px;
  height: 32px;
  background: url(/umedamise/250812cardapp/assets/img/link_about_card_bg.png) no-repeat;
  background-size: 100% auto;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #cardapp .btn-about.card:hover {
    color: #EDB61A;
    background: url(/umedamise/250812cardapp/assets/img/link_about_card_bg_h.png) no-repeat;
    background-size: contain;
  }
}
#cardapp .btn-about.apri {
  width: 164px;
  height: 32px;
  background: url(/umedamise/250812cardapp/assets/img/link_point_apri_bg.png) no-repeat;
  background-size: 100% auto;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #cardapp .btn-about.apri:hover {
    color: #E65095;
    background: url(/umedamise/250812cardapp/assets/img/link_point_apri_bg_h.png) no-repeat;
    background-size: 100% auto;
  }
}
#cardapp .indent {
  padding-left: 1em;
  text-indent: -1em;
}
#cardapp .mv {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 65px;
  height: 845px;
  background: linear-gradient(to right, #FBF7EA 0%, #FBF7EA 50%, #FCECF4 50%, #FCECF4 100%);
}
@media screen and (max-width: 768px) {
  #cardapp .mv {
    margin: 0 38px;
    height: auto;
    min-height: 415px;
    padding: 60px 0;
  }
}
#cardapp .mv-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 45px 0;
}
@media screen and (max-width: 768px) {
  #cardapp .mv-main {
    width: 100%;
    padding: 0;
  }
}
#cardapp .mv-ttl {
  margin-bottom: 45px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #cardapp .mv-ttl {
    margin-bottom: 58px;
  }
}
#cardapp .mv-ttl > span {
  display: inline-block;
  text-align: center;
  overflow: hidden;
}
#cardapp .mv-ttl > span img {
  max-width: 100%;
  height: auto;
  transform: translateY(100%);
}
#cardapp .mv-ttl .mv-ttl-main {
  margin: 0 auto 42px;
  width: 500px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #cardapp .mv-ttl .mv-ttl-main {
    width: 72vw;
    margin: 0 0 40px;
  }
}
#cardapp .mv-ttl .mv-ttl-main img {
  transform: translateY(150%);
  -webkit-animation: customBounceInUp 0.95s ease-out 0.2s forwards;
          animation: customBounceInUp 0.95s ease-out 0.2s forwards;
}
@media screen and (max-width: 768px) {
  #cardapp .mv-ttl .mv-ttl-main img {
    transform: translateY(100svh);
  }
}
#cardapp .mv-ttl .mv-ttl-main_2 {
  width: 787px;
}
@media screen and (max-width: 768px) {
  #cardapp .mv-ttl .mv-ttl-main_2 {
    width: 72vw;
    margin: 0 0 24px;
  }
}
#cardapp .mv-ttl .mv-ttl-main_2 img {
  transform: translateY(100%);
  -webkit-animation: customBounceInUp 0.95s ease-out 0.4s forwards;
          animation: customBounceInUp 0.95s ease-out 0.4s forwards;
}
@media screen and (max-width: 768px) {
  #cardapp .mv-ttl .mv-ttl-main_2 img {
    transform: translateY(100svh);
  }
}
#cardapp .mv-ttl .mv-ttl-main_3 {
  display: none;
}
@media screen and (max-width: 768px) {
  #cardapp .mv-ttl .mv-ttl-main_3 {
    width: 50vw;
    display: block;
  }
}
#cardapp .mv-ttl .mv-ttl-main_3 img {
  -webkit-animation: slideInBottom 0.4s ease-out 0.5s forwards;
          animation: slideInBottom 0.4s ease-out 0.5s forwards;
  transform: translateY(100svh);
}
#cardapp .mv-ttl .mv-date {
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 1.1em;
  color: #FCECF4;
  transform: translateY(100%);
  -webkit-animation: slideInBottom 0.4s ease-in 0.4s forwards;
          animation: slideInBottom 0.4s ease-in 0.4s forwards;
}
@media screen and (max-width: 768px) {
  #cardapp .mv-ttl .mv-date {
    font-size: 2.2rem;
  }
}
#cardapp .mv-txt {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #cardapp .mv-txt {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}
#cardapp .mv-txt span {
  display: block;
  transform: translateY(100%);
  -webkit-animation: customBounceInUp 1s ease-out 0.7s forwards;
          animation: customBounceInUp 1s ease-out 0.7s forwards;
}
#cardapp .cardapp-main {
  display: flex;
  flex-wrap: wrap;
}
#cardapp .aside {
  display: flex;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100svh;
  width: 100vw;
  pointer-events: none;
}
#cardapp .aside-l, #cardapp .aside-r {
  position: relative;
  margin: 0;
  margin-top: 200px;
  margin-bottom: 100px;
  pointer-events: auto;
}
#cardapp .aside-l {
  width: calc((100% - 450px) / 2);
}
@media screen and (max-width: 768px) {
  #cardapp .aside-l {
    display: none;
  }
}
#cardapp .aside-l .l_img {
  top: 40%;
  right: 60px;
  margin-left: 100px;
  max-width: 299px;
  width: 55vw;
  width: 70%;
  margin: 0 14% 0 auto;
  aspect-ratio: 300/275;
  position: -webkit-sticky;
  position: sticky;
  z-index: 5;
}
#cardapp .aside-r {
  width: calc((100% - 450px) / 2);
}
@media screen and (max-width: 768px) {
  #cardapp .aside-r {
    display: none;
  }
}
#cardapp .aside-r .r_img {
  position: absolute;
  top: 40%;
  margin: 0 0px 0px 60px;
  max-width: 299px;
  width: 70%;
  position: -webkit-sticky;
  position: sticky;
}
#cardapp .bg_dot {
  width: 100%;
  position: relative;
  background-image: url(../img/dot_yellow.png), url(../img/dot_pnk.png);
  background-repeat: repeat-y;
  background-position: top left, top right;
  background-size: 65px;
}
@media screen and (max-width: 768px) {
  #cardapp .bg_dot {
    background-image: url(../img/dot_yellow_sp.png), url(../img/dot_pnk_sp.png);
    background-size: 18px;
  }
}
#cardapp .main-content {
  position: relative;
  transition: opacity 0.4s ease-in;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  #cardapp .main-content {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #cardapp .main-content {
    width: 100%;
    margin: 0 auto;
    border: none;
  }
}
#cardapp .main-content .main-content-inner {
  width: 100%;
  max-width: 450px;
  padding: 0 35px 0;
  text-align: center;
  background: #EDEDED;
  pointer-events: auto;
  box-shadow: 20px 0px 20px -20px rgba(0, 0, 0, 0.16), -20px 0px 20px -20px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  #cardapp .main-content .main-content-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10vw;
  }
}
#cardapp .main-content .main-content-inner .ttl-section {
  margin: 0 auto 20px;
  max-width: 350px;
  text-align: center;
}
#cardapp .main-content .main-content-inner .ttl-section span {
  display: inline-block;
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.4em;
}
#cardapp .main-content .main-content-inner .toku-wrapper {
  margin: 0 -35px;
}
@media screen and (max-width: 768px) {
  #cardapp .main-content .main-content-inner .toku-wrapper {
    margin: 0 -10vw 0;
  }
}
#cardapp .main-content .main-content-inner .toku-wrapper > section {
  padding: 60px 50px;
}
@media screen and (max-width: 768px) {
  #cardapp .main-content .main-content-inner .toku-wrapper > section {
    padding: 60px 7vw;
  }
}
#cardapp .main-content .main-content-inner .toku-wrapper > section .ttl-section + p {
  margin: 0 auto 20px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
#cardapp .main-content .main-content-inner .border-wrapper {
  border-top: solid 2.5px #E65095;
  border-bottom: solid 2.5px #E65095;
  padding: 10px 0;
  background: #fff;
}
#cardapp .main-content .main-content-inner .toku-section {
  position: relative;
}
#cardapp .main-content .main-content-inner .toku-section-inner {
  position: relative;
}
#cardapp .main-content .main-content-inner .toku-section-img {
  margin: 0 auto 37px;
  width: 67%;
}
#cardapp .main-content .main-content-inner .toku-section-img figcaption {
  margin-right: -15%;
  text-align: right;
  font-size: 1.2rem;
}
#cardapp .main-content .main-content-inner .toku-section::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 497px;
  top: 0;
  right: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 14%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 14%, 0% 100%);
  opacity: 0.7;
  mix-blend-mode: multiply;
}
#cardapp .main-content .main-content-inner .toku-section .detail {
  background: #fff;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box {
  margin-bottom: 40px;
  background: #fff;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box-inner {
  padding: 20px 17px 30px;
}
@media screen and (max-width: 768px) {
  #cardapp .main-content .main-content-inner .toku-section .detail-box-inner {
    padding: 20px 3vw 30px;
  }
}
@media screen and (max-width: 368px) {
  #cardapp .main-content .main-content-inner .toku-section .detail-box-inner {
    padding: 20px 1.5vw 30px;
  }
}
#cardapp .main-content .main-content-inner .toku-section .detail-box h3 {
  padding: 3px 0;
  font-size: 1.5rem;
  font-weight: 500;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num {
  color: #253951;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-p span.large {
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #cardapp .main-content .main-content-inner .toku-section .detail-box .num-p span.large {
    font-size: 4.5rem;
  }
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-p span.large span {
  font-size: 1.3rem;
  font-weight: 300;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-p span.medium {
  font-size: 1.9rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #cardapp .main-content .main-content-inner .toku-section .detail-box .num-p span.medium {
    font-size: 1.7rem;
  }
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-p span.medium.m1 {
  padding: 0 0.2em;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-p span.small {
  font-size: 1.3rem;
  font-weight: 300;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-p span.small.s1 {
  display: block;
  text-align: right;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-percent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-percent span.equal {
  font-size: 6.1rem;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-percent span.large {
  margin-left: 0.1em;
  font-size: 13.6rem;
  font-weight: bold;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-percent span.large .per {
  margin-left: -0.2em;
  font-size: 5.5rem;
  font-weight: 300;
  text-shadow: 1.5px 1.5px 0 #fff, -1.5px 1.5px 0 #fff, 1.5px -1.5px 0 #fff, -1.5px -1.5px 0 #fff;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-percent span.large .txt {
  margin-left: 0.2em;
  font-size: 3.9rem;
  font-weight: 900;
  color: #253951;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-percent span.medium {
  font-size: 1.9rem;
  font-weight: bold;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-percent span.medium.m1 {
  padding: 0 0.3em;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-percent span.small {
  font-size: 1.3rem;
  font-weight: 300;
}
#cardapp .main-content .main-content-inner .toku-section .detail-box .num-percent span.small.s1 {
  display: block;
  text-align: right;
}
#cardapp .main-content .main-content-inner .toku-section .caution-box {
  margin-top: 20px;
  color: #253951;
  font-size: 1.2rem;
  text-align: left;
  font-weight: 500;
}
#cardapp .main-content .main-content-inner .toku-section .caution-box p {
  font-size: 1.2rem !important;
}
#cardapp .main-content .main-content-inner .toku-section.present {
  border-top: solid 2.5px #EDB61A;
  border-bottom: solid 2.5px #EDB61A;
  background: #fff;
  padding: 40px 50px 70px;
}
@media screen and (max-width: 768px) {
  #cardapp .main-content .main-content-inner .toku-section.present {
    padding: 60px 7vw;
  }
}
#cardapp .main-content .main-content-inner .toku-section.present::before {
  display: none;
}
#cardapp .main-content .main-content-inner .toku-section.present .ttl-section {
  margin: 0 auto 33px;
  max-width: 300px;
}
#cardapp .main-content .main-content-inner .toku-section.present .ttl-sub {
  margin-bottom: 20px;
}
#cardapp .main-content .main-content-inner .toku-section.present .toku-section-img {
  margin: 0 9% 26px 13%;
  width: 78%;
}
#cardapp .main-content .main-content-inner .toku-section.present p {
  position: relative;
}
#cardapp .main-content .main-content-inner .toku-section.present p.date {
  margin-bottom: -1em;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  z-index: 1;
}
#cardapp .main-content .main-content-inner .toku-section.present p.date span {
  position: relative;
  padding: 0.1em 1.5em;
  background: #295BA5;
  border-radius: 1em;
}
#cardapp .main-content .main-content-inner .toku-section.present p.txt {
  color: #295BA5;
  font-size: 1.4rem;
  font-weight: bold;
}
#cardapp .main-content .main-content-inner .toku-section.present p.caution {
  font-size: 1.2rem;
}
#cardapp .main-content .main-content-inner .toku-section.present .present-detail {
  margin-bottom: 38px;
  padding: 40px 0 30px;
  background: #EFF5FF;
}
#cardapp .main-content .main-content-inner .toku-section.present .present-detail::before {
  content: "";
  position: absolute;
  background: url(/umedamise/250812cardapp/assets/img/present_bg.png) no-repeat;
  background-size: cover;
  width: 24px;
  height: 167px;
  top: 40px;
  left: 0;
}
#cardapp .main-content .main-content-inner .toku-section.present .present-detail p.txt {
  color: #295BA5;
  font-size: 1.4rem;
  font-weight: bold;
}
#cardapp .main-content .main-content-inner .toku-section.card {
  background: #FFFBED;
}
#cardapp .main-content .main-content-inner .toku-section.card::before {
  background: #FFFAEA;
}
#cardapp .main-content .main-content-inner .toku-section.card .detail {
  background: #fff;
}
#cardapp .main-content .main-content-inner .toku-section.card .detail-box {
  background: #fff;
}
#cardapp .main-content .main-content-inner .toku-section.card .detail-box h3 {
  background: #F8E6B5;
}
#cardapp .main-content .main-content-inner .toku-section.card .detail-box .num-percent {
  display: flex;
  flex-wrap: wrap;
}
#cardapp .main-content .main-content-inner .toku-section.card .detail-box .num-percent span.large {
  color: #EDB61A;
}
#cardapp .main-content .main-content-inner .toku-section.card .detail-box .num-percent span.large .per {
  text-shadow: 1.5px 1.5px 0 #fff, -1.5px 1.5px 0 #fff, 1.5px -1.5px 0 #fff, -1.5px -1.5px 0 #fff;
}
#cardapp .main-content .main-content-inner .toku-section.apri {
  background: #FFF2F8;
}
@media screen and (min-width: 769px) {
  #cardapp .main-content .main-content-inner .toku-section.apri {
    padding-left: 25px;
    padding-right: 25px;
  }
}
#cardapp .main-content .main-content-inner .toku-section.apri::before {
  background: #FFF0F8;
}
#cardapp .main-content .main-content-inner .toku-section.apri .detail {
  background: #fff;
}
#cardapp .main-content .main-content-inner .toku-section.apri .detail-box {
  margin-bottom: 30px;
  background: #fff;
}
@media screen and (min-width: 769px) {
  #cardapp .main-content .main-content-inner .toku-section.apri .detail-box {
    margin-left: 25px;
    margin-right: 25px;
  }
}
#cardapp .main-content .main-content-inner .toku-section.apri .detail-box-inner {
  padding: 25px 17px 35px;
}
@media screen and (max-width: 768px) {
  #cardapp .main-content .main-content-inner .toku-section.apri .detail-box-inner {
    padding: 22px 3vw 32px;
  }
}
@media screen and (max-width: 368px) {
  #cardapp .main-content .main-content-inner .toku-section.apri .detail-box-inner {
    padding: 22px 1.5vw 32px;
  }
}
#cardapp .main-content .main-content-inner .toku-section.apri .detail-box h3 {
  background: #F8CDE1;
}
#cardapp .main-content .main-content-inner .toku-section.apri .detail-box .pointset {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #E65095;
  font-weight: 900;
}
#cardapp .main-content .main-content-inner .toku-section.apri .detail-box .pointset .p-left {
  margin-right: 1em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #cardapp .main-content .main-content-inner .toku-section.apri .detail-box .pointset .p-left {
    margin-right: 0.7em;
  }
}
#cardapp .main-content .main-content-inner .toku-section.apri .detail-box .pointset .p-left span.small {
  display: inline-block;
  margin-bottom: 0.8em;
  font-size: 1.2rem;
  font-weight: bold;
}
#cardapp .main-content .main-content-inner .toku-section.apri .detail-box .pointset .p-left span.large {
  margin-top: 0.1em;
  font-size: 10rem;
  font-weight: 900;
  line-height: 0.8;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 368px) {
  #cardapp .main-content .main-content-inner .toku-section.apri .detail-box .pointset .p-left span.large {
    font-size: 9rem;
  }
}
#cardapp .main-content .main-content-inner .toku-section.apri .detail-box .pointset .p-right {
  margin-top: 1.3em;
  line-height: 1;
  text-align: left;
}
#cardapp .main-content .main-content-inner .toku-section.apri .detail-box .pointset .p-right span {
  font-size: 2.7rem;
  line-height: 1.3;
}
@media screen and (max-width: 368px) {
  #cardapp .main-content .main-content-inner .toku-section.apri .detail-box .pointset .p-right span {
    font-size: 2.6rem;
  }
}
#cardapp .main-content .main-content-inner .toku-section.apri .detail-box .pointset .p-right span.medium {
  font-size: 3.4rem;
  line-height: 0.4;
}
@media screen and (max-width: 368px) {
  #cardapp .main-content .main-content-inner .toku-section.apri .detail-box .pointset .p-right span.medium {
    font-size: 3.3rem;
  }
}
#cardapp .main-content .main-content-inner .toku-section.apri .detail-box .pointset .p-right span.medium span {
  font-size: 1.2rem;
  font-weight: 600;
}
#cardapp .main-content .main-content-inner .toku-section.apri a.apri-bnr-box {
  margin-bottom: 30px;
  display: block;
  background: #E65095;
  padding: 24px 28px 27px 35px;
}
#cardapp .main-content .main-content-inner .toku-section.apri a.apri-bnr-box figure {
  margin: 0 auto 21px;
  max-width: 285px;
}
#cardapp .main-content .main-content-inner .toku-section.apri a.apri-bnr-box span.bnr-arrow {
  margin: 0 auto;
  display: block;
  width: 176px;
  height: 32px;
  background: url(/umedamise/250812cardapp/assets/img/link_about_apri_bg.png) no-repeat;
  background-size: cover;
  color: #fff;
  font-weight: bold;
  transition: all 0.2s ease;
}
#cardapp .main-content .main-content-inner .toku-section.apri a.apri-bnr-box span.bnr-arrow span {
  margin-right: 1em;
}
@media screen and (min-width: 769px) {
  #cardapp .main-content .main-content-inner .toku-section.apri a.apri-bnr-box:hover span.bnr-arrow {
    color: #E65095;
    background: url(/umedamise/250812cardapp/assets/img/link_about_apri_bg_h.png) no-repeat;
    background-size: cover;
  }
}
#cardapp .main-content .main-content-inner .toku-section.apri .image-box {
  margin-bottom: 50px;
}
#cardapp .main-content .main-content-inner .toku-section.apri .image-box figure {
  margin-bottom: 5px;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box {
  margin-bottom: 30px;
  padding: 0 25px;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #cardapp .main-content .main-content-inner .toku-section.apri .guidance-box {
    padding: 0 2vw;
  }
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box .guidance-ttl {
  margin-bottom: 23px;
  padding: 1rem 14%;
  border-top: solid #E65095 0.2rem;
  border-bottom: solid #E65095 0.2rem;
}
@media screen and (max-width: 768px) {
  #cardapp .main-content .main-content-inner .toku-section.apri .guidance-box .guidance-ttl {
    padding: 1rem 11% 0.5rem;
  }
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box h3 {
  margin-bottom: 30px;
  padding: 0 3rem;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box h4 {
  margin: 0 auto 15px;
  padding: 0.1em;
  width: 80%;
  border: solid 1px #E65095;
  font-size: 1.2rem;
  color: #E65095;
  font-weight: bold;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box figure {
  margin-bottom: 28px;
  padding: 0 4rem;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box .download__lists {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 18px;
  max-width: 220px;
  justify-content: space-between;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box .download__lists .download__list {
  width: 100px;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box p.txt {
  margin-bottom: 0.5em;
  font-size: 1.3rem;
  font-weight: 500;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box p.caution {
  font-size: 1.2rem;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box .nyukai {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5em;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box .nyukai-ttl {
  margin-right: 1em;
  font-size: 1.3rem;
  color: #E65095;
  font-weight: bold;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box .nyukai-number {
  color: #fff;
  font-size: 1.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box .nyukai-number span {
  display: inline-block;
  width: 1.7rem;
  padding: 0 0.1em;
  background: #E65095;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box .nyukai-number span:not(:last-of-type) {
  margin-right: 0.1em;
}
#cardapp .main-content .main-content-inner .toku-section.apri .guidance-box .nyukai-number span:nth-of-type(3) {
  margin-right: 0.8em;
}
#cardapp .main-content .main-content-inner .toku-section.apri .link-lists {
  margin: 0 auto;
  max-width: 280px;
}
#cardapp .main-content .main-content-inner .toku-section.apri .link-lists li:not(:last-of-type) {
  margin-bottom: 15px;
}
#cardapp .main-content .main-content-inner .toku-section.apri .link-lists li > a {
  display: block;
  padding: 0.5em 0;
  background: #fff;
  border: solid 1px #E65095;
  font-size: 1.2rem;
  color: #E65095;
  font-weight: 500;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  #cardapp .main-content .main-content-inner .toku-section.apri .link-lists li > a:hover {
    text-decoration: none;
  }
}/*# sourceMappingURL=styles.css.map */