@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4897579143vw;
  }
}
@media (min-width: 1074px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Serif JP", sans-serif;
  color: #193A40;
  background: linear-gradient(135deg, #fcfcfc 0%, #0e0e0e 100%);
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.9" /><feFuncG type="linear" slope="0.9" /><feFuncB type="linear" slope="0.9" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li,
ol {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.l-footer {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-top: 2.5rem;
  background: linear-gradient(135deg, #5b5b5b 0%, #110f0f 100%);
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: 5rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.l-footer ul {
  max-width: 31.25rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.l-footer a {
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-footer a {
    font-size: 1rem;
  }
}

.l-footer-copy {
  font-weight: 900;
  font-size: 0.75rem;
  margin-top: 1.5rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer-copy {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}

.l-form {
  margin-top: 1rem;
  padding: 1.5rem 1rem;
  background-color: #efefef;
  background: linear-gradient(135deg, #fefefe 0%, #979797 100%);
  -webkit-box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .l-form {
    margin-top: 2.5rem;
    padding: 2.5rem;
    border-radius: 1rem;
  }
}

.l-form label {
  display: block;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .l-form label {
    font-size: 1.125rem;
  }
}

.l-form li + li {
  margin-top: 1rem;
}

.l-form-select {
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .l-form-select {
    margin-top: 0.5rem;
  }
}

.l-form input,
.l-form select {
  width: 100%;
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
  color: #193A40;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .l-form input,
  .l-form select {
    font-size: 1rem;
  }
}

.l-form-done {
  margin-top: 1.5rem;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 9000;
  -webkit-box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
}

.l-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 3.75rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-header-inner {
    height: 4.375rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.l-header h1 {
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .l-header h1 {
    width: 6.25rem;
  }
}

.l-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-header ul {
    gap: 2.5rem;
  }
}

.l-header a {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04375rem;
}
@media screen and (min-width: 768px) {
  .l-header a {
    font-size: 1rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: calc(34.375rem + 50px);
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-main {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-main {
    margin-top: 4.375rem;
  }
}

.l-section {
  padding-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 2.5rem;
  }
}

.is-top .l-section {
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .is-top .l-section {
    padding-top: 6.25rem;
  }
}

.c-btn {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-btn {
    margin-top: 2.5rem;
  }
}

.c-btn a,
.c-btn button {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 2.5rem;
  color: #fff;
  background-color: #03BDBD;
  letter-spacing: 0.05rem;
  border-radius: 0.375rem;
  -webkit-box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
}

.c-btn-loading {
  display: none;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  border: 0.125rem solid #03BDBD;
  border-radius: 50%;
  border-top-color: transparent;
  -webkit-animation: spin 0.8s linear infinite;
          animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.c-cursor img {
  position: fixed;
  width: 3.125rem;
  height: 1.5625rem;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9999;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.c-click-img {
  position: fixed;
  width: 3.125rem;
  height: 1.5625rem;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
          transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 9998;
}

.roulette-display {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 24px auto;
  width: 280px;
  height: 80px;
  line-height: 80px;
  border: 2px solid #ccc;
  border-radius: 12px;
  background: #fafafa;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.roulette-display.spin {
  -webkit-animation: spinFlash 0.1s infinite alternate;
          animation: spinFlash 0.1s infinite alternate;
}

@-webkit-keyframes spinFlash {
  0% {
    background-color: #fafafa;
  }
  100% {
    background-color: #c4ede5;
  }
}

@keyframes spinFlash {
  0% {
    background-color: #fafafa;
  }
  100% {
    background-color: #c4ede5;
  }
}
.roulette-wrap {
  margin: 60px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

canvas {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, .2);
          box-shadow: 0 0 12px rgba(0, 0, 0, .2);
  margin-bottom: 20px;
}

.needle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 30px solid #ff6464;
  top: 40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#startBtn {
  padding: 10px 30px;
  font-size: 18px;
  background: #c4ede5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#startBtn:hover {
  background: #b6e3da;
}

#result {
  font-size: 22px;
  margin-top: 16px;
  font-weight: bold;
}

.c-history-content {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .c-history-content {
    margin-top: 6.25rem;
  }
}

.c-history .c-title img {
  width: 11.25rem;
  top: -6.25rem;
}
@media screen and (min-width: 768px) {
  .c-history .c-title img {
    width: 14.375rem;
    top: -7.5rem;
  }
}

.c-history-lists li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #373737;
  border: 1px solid #727272;
  -webkit-box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
  border-radius: 0.5rem;
}

.c-history-lists li + li {
  margin-top: 0.75rem;
}

.c-history-list__status {
  font-family: "Inria Serif", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  width: 4.375rem;
  padding: 2rem 0.5rem;
  background-color: #2B2B2B;
  border-radius: 0.5rem 0 0 0.5rem;
  text-align: center;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="2" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, .25));
          filter: drop-shadow(0 0 2px rgba(0, 0, 0, .25));
}
@media screen and (min-width: 768px) {
  .c-history-list__status {
    padding: 1.25rem 0.5rem;
  }
}

.c-history-list__status.is-win {
  color: #D9CD6F;
}

.c-history-list__status.is-lose {
  color: #adadad;
}

.c-history-list__info {
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .c-history-list__info {
    margin-left: 1.5rem;
  }
}

.c-history-list__info-head p {
  font-size: 0.875rem;
  color: #fff;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="2" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, .25));
          filter: drop-shadow(0 0 2px rgba(0, 0, 0, .25));
}

.c-history-list__info-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="2" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, .25));
          filter: drop-shadow(0 0 2px rgba(0, 0, 0, .25));
}
@media screen and (min-width: 768px) {
  .c-history-list__info-body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
    margin-top: 0.25rem;
  }
}

.c-history-list__info-body p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-history-list__info-body p span:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.75rem;
  border-radius: 100%;
}

.c-history-list__info-body p span:nth-child(1).is-first {
  background-color: #8FE2EB;
}

.c-history-list__info-body p span:nth-child(1).is-second {
  background-color: #EB928F;
}

.c-history-list__info-body p span:nth-child(2) {
  font-size: 0.875rem;
  margin-left: 0.1875rem;
  color: #fff;
}

/* 個人戦績
--------------------------*/
.c-history-select {
  position: relative;
  display: inline-block;
}

.c-history-select::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.4375rem;
  border-style: solid;
  border-right: 0.3125rem solid transparent;
  border-left: 0.3125rem solid transparent;
  border-top: 0.4375rem solid #555;
  border-bottom: 0;
  pointer-events: none;
}

.c-history-select select {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  padding: 0.25rem 1.5rem 0.25rem 0.75rem;
  color: #193A40;
  background: linear-gradient(135deg, #fefefe 0%, #bebebe 100%);
  -webkit-box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
  border-radius: 6.25rem;
}
@media screen and (min-width: 768px) {
  .c-history-select select {
    font-size: 1rem;
  }
}

.c-history-tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1rem;
}

.c-history-tab button {
  padding: 0.3125rem 0.625rem;
  color: #fff;
  background-color: #9b9b9b;
}

.c-history-tab button:nth-child(1) {
  border-radius: 0.5rem 0 0 0;
}

.c-history-tab button:nth-child(2) {
  border-radius: 0 0.5rem 0 0;
}

.c-history-tab button.is-active {
  background-color: #707070;
}

.c-history-tab__content {
  display: none;
}

.c-history-tab__content.is-active {
  display: block;
}

.c-history-tab__content .c-history-lists li:first-child {
  border-radius: 0 0 0.5rem 0.5rem;
}

/* 統計
--------------------------*/
.c-history-record__wrap {
  padding-top: 0.75rem;
  padding-bottom: 1.25rem;
  background-color: #373737;
  border: 1px solid #727272;
  -webkit-box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
  border-radius: 0 0 0.5rem 0.5rem;
}

@media screen and (max-width: 767px) {
  .c-history-record {
    overflow-x: scroll;
    white-space: nowrap;
  }
}

.c-history-record__head,
.c-history-record__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 541px) {
  .c-history-record__body p {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-top: 1px solid #727272;
  }
}

.c-history-record p {
  color: #fff;
  text-align: center;
}

.c-history-record ul {
  margin-top: 0.75rem;
}

@media screen and (min-width: 542px) {
  .c-history-record li {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-top: 1px solid #727272;
  }
}

.c-history-record li:last-child {
  padding-bottom: 0;
}

.c-history-record__head p {
  font-size: 1rem;
  color: #D9CD6F;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="2" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, .25));
          filter: drop-shadow(0 0 2px rgba(0, 0, 0, .25));
}

.c-history-record__body p {
  font-size: 0.875rem;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="2" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, .25));
          filter: drop-shadow(0 0 2px rgba(0, 0, 0, .25));
}

.c-history-record p:nth-child(1) {
  width: 12.5rem;
}

@media screen and (max-width: 767px) {
  .c-history-record p:nth-child(2) {
    width: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .c-history-record p:nth-child(3) {
    width: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .c-history-record p:nth-child(4) {
    width: 6.25rem;
  }
}

.c-history-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  margin-top: 1rem;
}

.c-history-total p {
  font-size: 0.875rem;
  color: #fff;
}

.c-history-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.c-history-btn button {
  display: inline-block;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.125rem 1rem;
  color: #fff;
  background-color: #a4aaab;
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, .25);
  letter-spacing: 0.05rem;
  border-radius: 0.25rem;
}

.c-history-btn:nth-child(1) button:hover,
.c-history-btn:nth-child(1) button.is-active {
  background-color: rgba(217, 205, 111, .7019607843);
}

.c-history-btn:nth-child(2) button:hover,
.c-history-btn:nth-child(2) button.is-active {
  background-color: #EB928F;
}

.c-history-btn:nth-child(3) button:hover,
.c-history-btn:nth-child(3) button.is-active {
  background-color: #8FE2EB;
}

.c-ranking {
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .c-ranking {
    padding-top: 5rem;
  }
}

.c-ranking-border {
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-ranking-border {
    border-radius: 0.5rem;
  }
}

.c-ranking-content {
  padding: 1.5rem 1rem;
  background-color: #efefef;
  -webkit-box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.4375rem 0 rgba(0, 0, 0, .25);
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-ranking-content {
    padding: 2.5rem;
    border-radius: 0.5rem;
  }
}

.c-ranking-lists {
  margin-top: 2rem;
}

.c-ranking-lists li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 0.75rem 0.75rem 3.5rem;
}
@media screen and (min-width: 768px) {
  .c-ranking-lists li {
    padding: 0.5rem 0.75rem 0.5rem 4rem;
  }
}

.c-ranking-lists li + li {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-ranking-lists li + li {
    margin-top: 1.5rem;
  }
}

.c-ranking-lists li img {
  position: absolute;
  width: 4.6875rem;
  left: -0.625rem;
}
@media screen and (min-width: 768px) {
  .c-ranking-lists li img {
    width: 5rem;
  }
}

.c-ranking-list__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="2" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, .25));
          filter: drop-shadow(0 0 2px rgba(0, 0, 0, .25));
}

.c-ranking-list__text p:nth-child(1) {
  font-size: 1rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-ranking-list__text p:nth-child(1) {
    font-size: 1.5rem;
  }
}

.c-ranking-list__text p:nth-child(2) {
  font-size: 0.875rem;
  color: #fff;
  text-align: right;
}

/* ===== グローバルランキング 専用スタイル ===== */
.c-ranking--rate .c-ranking-content {
  background: linear-gradient(135deg, #fefefe 0%, #979797 100%);
}

.c-ranking--rate .c-ranking-lists li:nth-child(1) {
  background: linear-gradient(135deg, #faea59 0%, #9f842d 100%);
  -webkit-box-shadow: 0 0 0.5rem rgba(212, 175, 55, .6);
          box-shadow: 0 0 0.5rem rgba(212, 175, 55, .6);
}

.c-ranking--rate .c-ranking-lists li:nth-child(2) {
  background: linear-gradient(135deg, #e2e2e2 0%, #736d6d 100%);
  -webkit-box-shadow: 0 0 0.5rem rgba(192, 192, 192, .6);
          box-shadow: 0 0 0.5rem rgba(192, 192, 192, .6);
}

.c-ranking--rate .c-ranking-lists li:nth-child(3) {
  background: linear-gradient(135deg, #e1a264 0%, #754c23 100%);
  -webkit-box-shadow: 0 0 0.5rem rgba(205, 127, 50, .6);
          box-shadow: 0 0 0.5rem rgba(205, 127, 50, .6);
}

.c-ranking--rate .c-ranking-lists li:nth-child(4) {
  background: linear-gradient(135deg, #555 0%, #333 100%);
  -webkit-box-shadow: 0 0 0.5rem rgba(80, 80, 80, .6);
          box-shadow: 0 0 0.5rem rgba(80, 80, 80, .6);
}

/* ===== c-ranking--bond 専用スタイル ===== */
.c-ranking--bond .c-ranking-content {
  background: linear-gradient(135deg, #ffd1d1 0%, #ededed 100%);
}

.c-ranking--bond .c-ranking-lists li:nth-child(1) {
  background: linear-gradient(135deg, #f7b5c3 0%, #c87a8a 100%);
  -webkit-box-shadow: 0 0 0.5rem rgba(240, 145, 165, .6);
          box-shadow: 0 0 0.5rem rgba(240, 145, 165, .6);
}

.c-ranking--bond .c-ranking-lists li:nth-child(2) {
  background: linear-gradient(135deg, #d5a9d7 0%, #9b6aa4 100%);
  -webkit-box-shadow: 0 0 0.5rem rgba(190, 130, 200, .5);
          box-shadow: 0 0 0.5rem rgba(190, 130, 200, .5);
}

.c-ranking--bond .c-ranking-lists li:nth-child(3) {
  background: linear-gradient(135deg, #dca47a 0%, #8b5637 100%);
  -webkit-box-shadow: 0 0 0.5rem rgba(190, 120, 70, .5);
          box-shadow: 0 0 0.5rem rgba(190, 120, 70, .5);
}

.c-ranking--bond .c-ranking-list__text p:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-ranking--bond .c-ranking-list__text span {
  display: block;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-ranking--bond .c-ranking-list__text span {
    font-size: 1.25rem;
  }
}

.c-ranking--bond .c-ranking-list__text p:nth-child(1) {
  width: calc(100% - 6.375rem);
  gap: 0 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-ranking--bond .c-ranking-list__text p:nth-child(1) {
    width: calc(100% - 7.625rem);
  }
}

.c-ranking--bond .c-ranking-list__text p:nth-child(2) {
  width: 5.625rem;
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-ranking--bond .c-ranking-list__text p:nth-child(2) {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .c-ranking--bond .c-ranking-list__text p:nth-child(2) {
    width: 6.875rem;
  }
}

.c-title {
  position: relative;
}

.c-title p {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.95rem;
  letter-spacing: 0.075rem;
}
@media screen and (min-width: 768px) {
  .c-title p {
    font-size: 2.5rem;
    line-height: 3.25rem;
    letter-spacing: 0.125rem;
  }
}

.c-title img {
  position: absolute;
  width: 12.5rem;
  top: -4.6875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-title img {
    width: 15.625rem;
    top: -7.5rem;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
