@charset "UTF-8";
/* メディアクエリ */
/* //メディアクエリ */
/* position 中央寄せ */
/* //position 中央寄せ */
/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
  font-size: 0.625vw;
}

/* スクリーンサイズが1520px以上 */
@media screen and (min-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}
/* スクリーンサイズが1200px以下の場合に適用 */
@media screen and (max-width: 1100px) {
  html {
    font-size: 35.0625%;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 62.5%;
  }
}
/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* reset.css end */
/* base.css start */
html {
  font-size: 100%; /* ブラウザのデフォルトのフォントサイズ。大抵は16px */
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

main {
  overflow: hidden;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.container-980 {
  max-width: 77%;
  padding: 0 max(15px, 1.0980966325vw);
  margin: 0 auto;
}
@media screen and (max-width: 1365px) {
  .container-980 {
    max-width: 1010px;
    padding: 0 15px;
  }
}

.d-none {
  display: none;
}

.d-inline-block {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .d-md-block {
    display: block;
  }
}

@media screen and (max-width: 575px) {
  .d-sm-block {
    display: block;
  }
}

@media screen and (max-width: 575px) {
  .d-sm-none {
    display: none;
  }
}

/* Button styles */
/* ============================================ */

/*$5クレジットをマイページから申請するボタン*/
.btn-grad-blue {
  background: linear-gradient(to right, #1767ff 0%, #002190 100%);
  box-shadow: 0px 4px 0px #07f;
  transition: all 0.3s;
  display: block;
  padding: 11px 0 8px;
  position: relative;
  border-radius: 100vw;
  text-align: center;
}
.btn-grad-blue:hover {
  box-shadow: none;
  transform: translateY(4px);
  opacity: 1;
}

/*ボタンアロー*/
.btn-has-arrow-right-white-pink {
  position: relative;
}
.btn-has-arrow-right-white-pink::before {
  content: "";
  width: max(31px, 2.2693997072vw);
  height: max(27px, 1.9765739385vw);
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/icon-arrow-right-white-pink.png) no-repeat center center/contain;
  position: absolute;
  right: max(30px, 2.196193265vw);
  top: 50%;
  transform: translateY(-50%);
}

/*入金ボーナステーブル*/
.btn-grad-orange {
  background: linear-gradient(to right, #ffa244 0%, #ff853c 100%);
  box-shadow: 0px 4px 0px #de7626;
  transition: all 0.3s;
  display: block;
  padding: 18px 0 14px;
  position: relative;
  border-radius: 100vw;
  text-align: center;
}
.btn-grad-orange:hover {
  box-shadow: none;
  transform: translateY(4px);
  opacity: 1;
}
.btn-w380 {
  width: max(380px, 27.8184480234vw);
  max-width: 100%;
}

/*ボーナス計算機*/
.btn-grad-light-blue {
  background: linear-gradient(to right, #3a9cff 0%, #003bff 100%);
  box-shadow: 0px 4px 0px #0e40e3;
  transition: all 0.3s;
  display: block;
  padding: 11px 0 8px;
  position: relative;
  border-radius: 100vw;
  text-align: center;
}
.btn-grad-light-blue:hover {
  box-shadow: none;
  transform: translateY(4px);
  opacity: 1;
}

/*ボタンアロー*/
.btn-has-arrow-right-white {
  position: relative;
}
.btn-has-arrow-right-white::before {
  content: "";
  width: max(31px, 2.2693997072vw);
  height: max(27px, 1.9765739385vw);
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/icon-arrow-right-white.svg) no-repeat center center/contain;
  position: absolute;
  right: max(30px, 2.196193265vw);
  top: 50%;
  transform: translateY(-50%);
}

/*今すぐ口座開設するボタン*/
.btn-w400 {
  width: max(400px, 29.2825768668vw);
  max-width: 100%;
}
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: max(10px, 0.7320644217vw) 0;
  z-index: 999;
  width: 100%;
}
.fixed-cta::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}
.fixed-cta .btn-w400 {
  margin: 0 auto;
  max-width: 90%;
}
.fixed-cta .btn-w400 a {
  border-radius: max(10px, 0.7320644217vw);
  padding: max(20px, 1.4641288433vw) 0;
  box-shadow: 0px max(3px, 0.2196193265vw) 0px #0a0466;
}

/*ボーナスの詳細をチェックするボタン*/
.btn-w420 {
  width: max(420px, 30.7467057101vw);
  max-width: 100%;
}
.to-top-btn-wrapper {
  width: max(106px, 7.7598828697vw);
  position: fixed;
  bottom: max(7px, 0.5124450952vw);
  right: max(12px, 0.878477306vw);
  z-index: 1000;
}
@media screen and (max-width: 575px) {
  .to-top-btn-wrapper {
    bottom: max(90px, 6.588579795vw);
    right: 0px;
  }
}
.to-top-btn-wrapper::before {
  content: "";
  width: max(22px, 1.6105417277vw);
  height: max(14px, 1.0248901903vw);
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/icon-arrow-top-black.svg) no-repeat center center/contain;
  position: absolute;
  top: max(35px, 2.5622254758vw);
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.to-top-btn-wrapper:hover a {
  opacity: 1;
}
.to-top-btn-wrapper:hover::before {
  transform: translate(-50%, -10px);
}
.to-top-btn-wrapper a {
  display: block;
}

.btn-w520 {
  width: max(520px, 38.0673499268vw);
  max-width: 100%;
}
.fixed-cta .btn-w520 {
  margin: 0 auto;
  max-width: 90%;
}
.fixed-cta .btn-w520 a {
  border-radius: max(10px, 0.7320644217vw);
  padding: max(20px, 1.4641288433vw) 0;
  box-shadow: 0px max(3px, 0.2196193265vw) 0px #0a0466;
}
.fixed-cta .btn-w520 a img {
  width: max(457px, 33.4553440703vw);
}

@media screen and (max-width: 565px) {
  .fixed-cta .btn-w520 a img {
    width: 90%;
  }
}

/* ============================================ */
/* Button styles end */

@font-face {
  font-family: "vdl-logog", sans-serif;
  src: url("../fonts/LOGOG_BG.TTF") format(truetype);
}
.vdl-logog {
  font-family: "vdl-logog", sans-serif;
  font-style: normal;
}

/*X連携はこちら*/
.txt-blue {
  color: #1665FC;
}

.fw-500 {
  font-weight: 500;
}

.fv {
  position: relative;
}

/*ゲリライベント*/
.time-remaining-container {
  width: 157px;
  height: 53px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv__txt-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.fv__txt {
  background: linear-gradient(to right bottom, #fff 0%, #fefefe 100%);
  box-shadow: 0px 0px 15px #4471c7;
  text-align: center;
  padding: max(10px, 1.4275256223vw) 0;
  height: auto;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 1.635432vw;
  font-weight: 800;
}
.fv__txt::before, .fv__txt::after {
  content: "";
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #924325 0%, #924325 6.04%, #9f4f23 10.75%, #c2701e 19.5%, #e18d1b 26.12%, #f1c46b 36.4%, #fff2ae 45.43%, #fbe99e 47.41%, #edc659 56.67%, #e4b02e 63.37%, #e1a81e 66.78%, #a85e19 86.81%, #a45919 88.35%, #a45919 100%);
  position: absolute;
  left: 0;
}
.fv__txt::before {
  top: 0;
}
.fv__txt::after {
  bottom: 0;
}
.fv__txt img {
  width: 49.9267935578vw;
}
@media screen and (max-width: 1100px) {
  .fv__txt img {
    width: 60.2558139535vw;
  }
}
@media screen and (max-width: 767px) {
  .fv__txt img {
    width: 83.2558139535vw;
  }
}
@media screen and (max-width: 565px) {
  .fv__txt img {
    width: 95vw;
  }
}

/*ボーナスリンク*/
.fv-link-wrapper {
  display: flex;
  gap: 2.196193265vw;
  position: absolute;
  bottom: 3.516837vw;
  left: 50%;
  transform: translatex(-50%);
}
@media screen and (max-width: 767px) {
  .fv-link-wrapper {
    bottom: 18.3720930233vw;
    gap: 1.1627906977vw;
  }
}
.fv-link-item {
  width: 14.4216691069vw;
  height: 14.4216691069vw;
  position: relative;
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/fv-coin.png) no-repeat center center/cover;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .fv-link-item {
    width: 30.9302325581vw;
    height: 30.9302325581vw;
  }
}
.fv-link-item:first-of-type img {
  margin-top: -29px;
}
.fv-link-item:nth-of-type(2) img {
  margin-top: -20px;
  width: 8.78477306vw;
}
.fv-link-item:nth-of-type(3) img {
  margin-top: -28px;
  width: 10.980966325vw;
}
@media screen and (max-width: 767px) {
  .fv-link-item:first-of-type img {
    width: 19.556714472vw;
  }
}
@media screen and (min-width: 768px) {
  .fv-link-item:first-of-type img {
    width: 9.5168374817vw;
    margin-top: -20px;
  }
  .fv-link-item:nth-of-type(2) img {
    margin-top: -6px;
    width: 8.78477306vw;
  }
  .fv-link-item:nth-of-type(3) img {
    margin-top: -12px;
    width: 10.980966325vw;
  }
}
@media screen and (max-width: 767px) {
  .fv-link-item:nth-of-type(2) img {
    width: 17.8617992177vw;
  }
}
@media screen and (max-width: 767px) {
  .fv-link-item:nth-of-type(3) img {
    width: 22.1642764016vw;
  }
}
.fv-link-item a {
  display: block;
  height: 100%;
  position: relative;
}
.fv-link-item a::before {
  content: "";
  width: 1.6837481698vw;
  height: 2.7086383602vw;
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/icon-arrow-down-brown.svg) no-repeat center center/contain;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .fv-link-item a::before {
    width: 4.0417209909vw;
    height: 6.518904824vw;
    bottom: 2.998696219vw;
  }
}
.fv-link-item a:hover::before {
  transform: translate(-50%, 5px) rotate(90deg);
}
.fv-link-item img {
  width: max(116px, 9.621669vw);
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  margin-top: 41px;
}
@media screen and (max-width: 767px) {
  .fv-link-item img {
    width: 31.0299869622vw;
  }
}

/*ボーナス詳細*/
.bonuses {
  position: relative;
  padding-top: max(41px, 5.124451vw);
}
.bonuses.lazyloaded::before {
  content: "";
  width: 100%;
  height: max(698px, 51.0980966325vw);
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/bonuses-bg.png) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
.bonuses.lazyloaded::after {
  content: "";
  width: 100%;
  height: 90%;
  background: linear-gradient(#87e9ff 0%, #87e9ff 40.16%, #67c6ff 100%);
  position: absolute;
  top: max(614px, 44.9487554905vw);
  left: 0;
  z-index: -1;
}
.bonuses .container-980 {
  position: relative;
}
.bonuses-detail-item-wrapper {
  margin-top: max(8px, 0.5856515373vw);
  margin: max(8px, 0.5856515373vw) auto 0;
}
.bonuses-detail-item-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: max(50px, 3.6603221083vw);
}
.bonuses-detail-item-list-item {
  border-radius: max(30px, 2.196193265vw);
  position: relative;
  width: 100%;
}
.bonuses-detail-item-list-item::before {
  content: "";
  width: calc(100% - max(20px, 1.4641288433vw));
  height: calc(100% - max(20px, 1.4641288433vw));
  background-color: #FFFFFF;
  position: absolute;
  top: max(10px, 0.7320644217vw);
  left: max(10px, 0.7320644217vw);
  border-radius: max(20px, 1.4641288433vw);
}
.bonuses-detail-item-list-item::after {
  content: "";
  position: absolute;
}
.bonuses-detail-item-list-item:first-of-type {
  background: linear-gradient(to right, #6fff3c 0%, #fe0 100%);
}
.bonuses-detail-item-list-item:first-of-type::after {
  width: 107%;
  height: 114%;
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/bonuses-detail-item01-deco.png) no-repeat center center/contain;
  top: max(-32px, -2.3426061493vw);
  left: 50%;
  transform: translateX(-50%);
}
.bonuses-detail-item-list-item:first-of-type .bonuses-detail-item-list-item-inner {
  padding-top: max(111px, 8.1259150805vw);
  padding-bottom: max(46px, 3.3674963397vw);
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:first-of-type .bonuses-detail-item-list-item-inner {
    padding-top: 60px;
  }
}
@media screen and (max-width: 575px) {
  .bonuses-detail-item-list-item:first-of-type .bonuses-detail-item-list-item-inner {
    padding-top: 13.3333333333vw;
  }
}
.bonuses-detail-item-list-item:first-of-type .container-980::before {
  width: 60.4685212299vw;
  height: 47.7306002928vw;
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/character-detail-list-item01.webp) no-repeat center center/contain;
  top: 42%;
  right: -13.0307467057vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:first-of-type .container-980::before {
    content: none;
  }
}
.bonuses-detail-item-list-item:first-of-type .bonuses-detail-item-list-item-txt-wrapper {
  margin-bottom: max(38px, 2.7818448023vw);
}
@media screen and (max-width: 575px) {
  .bonuses-detail-item-list-item:first-of-type .bonuses-detail-item-list-item-txt-wrapper::before {
    width: 60.4685212299vw;
    height: 47.7306002928vw;
    background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/character-detail-list-item01.webp) no-repeat center center/contain;
    bottom: -32vw;
    right: -13.0307467057vw;
  }
}
.bonuses-detail-item-list-item:first-of-type .bonuses-detail-item-list-item__ttl img {
  width: max(366px, 26.7935578331vw);
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:first-of-type .bonuses-detail-item-list-item__ttl img {
    width: 66.6666666667vw;
  }
}
.bonuses-detail-item-list-item:first-of-type .bonuses-detail-item-list-item__txt {
  margin-top: max(30px, 2.196193265vw);
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:first-of-type .bonuses-detail-item-list-item__txt {
    margin-top: 0;
  }
}
.bonuses-detail-item-list-item:first-of-type .btn-grad-blue img {
  width: max(200px, 19.6925329429vw);
}
.bonuses-detail-item-list-item:first-of-type .bonuses-detail-item-list-item-btn-wrapper {
  margin: 0 auto;
}
.bonuses-detail-item-list-item:first-of-type .bonuses-detail-item-list-item-btn-wrapper p {
  font-size: max(21px, 1.5373352855vw);
  color: #FF0000;
  text-align: center;
  margin-top: max(15px, 1.0980966325vw);
  font-weight: 500;
}
.bonuses-detail-item-list-item:first-of-type .bonuses-detail-item-list-item__img {
  max-width: 600px;
}
.bonuses-detail-item-list-item:nth-of-type(2) {
  background: linear-gradient(to right, #3cffde 0%, #ffc400 100%);
}
.bonuses-detail-item-list-item:nth-of-type(2)::after {
  width: 108%;
  height: 114%;
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/bonuses-detail-item02-deco.png) no-repeat center center/contain;
  top: max(-42px, -3.074670571vw);
  left: 49%;
  transform: translateX(-50%);
  z-index: 1;
}
.bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item-inner {
  padding-top: max(93px, 6.8081991215vw);
  padding-bottom: max(71px, 5.1976573939vw);
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item-inner {
    padding-top: 60px;
  }
}
@media screen and (max-width: 575px) {
  .bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item-inner {
    padding-top: 13.3333333333vw;
  }
}
.bonuses-detail-item-list-item:nth-of-type(2) .container-980::before {
  width: 47.2181551977vw;
  height: 30.6002928258vw;
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/character-detail-list-item02.webp) no-repeat center center/contain;
  top: -6.0029282577vw;
  right: -6.9546120059vw;
}
@media screen and (max-width: 1199px) {
  .bonuses-detail-item-list-item:nth-of-type(2) .container-980::before {
    top: -4vw;
    right: 1vw;
  }
}
@media screen and (max-width: 980px) {
  .bonuses-detail-item-list-item:nth-of-type(2) .container-980::before {
    top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:nth-of-type(2) .container-980::before {
    content: none;
  }
}
.bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item-txt-wrapper {
  margin-bottom: max(60px, 4.39238653vw);
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item-txt-wrapper {
    margin-bottom: 38px;
  }
}
.bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item__ttl {
  margin-bottom: max(30px, 2.196193265vw);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item__ttl {
    margin-bottom: 0;
  }
}
.bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item__ttl img {
  width: max(489px, 35.7979502196vw);
}
.bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item__txt {
  margin-top: max(37px, 2.7086383602vw);
  line-height: 1.66;
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item__caution {
    position: relative;
  }
}
.bonuses-detail-item-list-item:nth-of-type(2) .btn-grad-blue img {
  width: max(200px, 21.0102489019vw);
}
.bonuses-detail-item-list-item:nth-of-type(2) .btn-grad-orange img {
  width: max(250px, 20.1317715959vw);
}
.bonuses-detail-item-list-item:nth-of-type(2) .btn-grad-light-blue img {
  width: max(280px, 24.3045387994vw);
}
.bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item-btn-wrapper {
  margin: 0 auto max(20px, 1.4641288433vw);
}
.bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item-btn-flex-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item-btn-flex-wrapper {
    flex-wrap: wrap;
  }
}
.bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item-btn-flex-wrapper a {
  min-height: max(60px, 4.39238653vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item-btn-flex-wrapper .btn-has-arrow-right-white::before {
  right: 1.0980966325vw;
}
.bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item__img {
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:nth-of-type(2) .bonuses-detail-item-list-item-btn-flex-wrapper .btn-has-arrow-right-white::before {
    content: none;
  }
}
.bonuses-detail-item-list-item:nth-of-type(3) {
  background: linear-gradient(to right, #3cffde 0%, #d7ff00 100%);
}
.bonuses-detail-item-list-item:nth-of-type(3)::before {
  background: linear-gradient(#fff 0%, #fff 42.26%, rgba(255, 255, 255, 0) 100%);
}
.bonuses-detail-item-list-item:nth-of-type(3)::after {
  width: 105%;
  height: 66%;
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/bonuses-detail-item03-deco.png) no-repeat center center/contain;
  top: max(-36px, -2.635431918vw);
  left: 50%;
  transform: translateX(-50%);
}
.bonuses-detail-item-list-item:nth-of-type(3) .bonuses-detail-item-list-item-inner {
  padding-top: max(116px, 8.4919472914vw);
  padding-bottom: max(186px, 19.325037vw);
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:nth-of-type(3) .bonuses-detail-item-list-item-inner {
    padding-top: 60px;
  }
}
@media screen and (max-width: 575px) {
  .bonuses-detail-item-list-item:nth-of-type(3) .bonuses-detail-item-list-item-inner {
    padding-top: 13.3333333333vw;
  }
}
.bonuses-detail-item-list-item:nth-of-type(3) .container-980::before {
  width: 34.5534407028vw;
  height: 24.6705710102vw;
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/character-detail-list-item03.webp) no-repeat center center/contain;
  top: -2.1229868228vw;
  right: -0.5124450952vw;
}
@media screen and (max-width: 1199px) {
  .bonuses-detail-item-list-item:nth-of-type(3) .container-980::before {
    top: 0;
    right: 6vw;
  }
}
@media screen and (max-width: 980px) {
  .bonuses-detail-item-list-item:nth-of-type(3) .container-980::before {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item:nth-of-type(3) .container-980::before {
    content: none;
  }
}
.bonuses-detail-item-list-item:nth-of-type(3) .bonuses-detail-item-list-item__ttl {
  margin-bottom: max(30px, 2.196193265vw);
}
.bonuses-detail-item-list-item:nth-of-type(3) .bonuses-detail-item-list-item__ttl img {
  width: max(542px, 39.6778916545vw);
}
@media screen and (max-width: 575px) {
  .bonuses-detail-item-list-item:nth-of-type(3) .bonuses-detail-item-list-item-txt-wrapper {
    position: relative;
  }
}
@media screen and (max-width: 575px) {
  .bonuses-detail-item-list-item:nth-of-type(3) .bonuses-detail-item-list-item-txt-wrapper::before {
    width: 34.5534407028vw;
    height: 24.6705710102vw;
    background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/character-detail-list-item03.webp) no-repeat center center/contain;
    bottom: -21vw;
    right: -0.5124450952vw;
  }
}
.bonuses-detail-item-list-item:nth-of-type(3) .bonuses-detail-item-list-item__txt {
  margin-top: max(37px, 2.7086383602vw);
  line-height: 1.66;
}
.bonuses-detail-item-list-item:nth-of-type(3) .capsule-toy-wrapper {
  margin-top: max(112px, 8.1991215227vw);
  position: relative;
}
.bonuses-detail-item-list-item:nth-of-type(3) .capsule-toy__ttl {
  text-align: center;
}
.bonuses-detail-item-list-item:nth-of-type(3) .capsule-toy__ttl img {
  width: max(562px, 41.1420204978vw);
}
.bonuses-detail-item-list-item:nth-of-type(3) .capsule-toy__img {
  text-align: center;
  margin-top: max(57px, 4.1727672035vw);
}
.bonuses-detail-item-list-item:nth-of-type(3) .capsule-toy__img img {
  width: max(956px, 69.9853587116vw);
}
.bonuses-detail-item-list-item:nth-of-type(3) .capsule-toy-about-ls-up-ticket {
  text-align: center;
  width: max(350px, 25.6222547584vw);
  margin: max(32px, 2.3426061493vw) auto max(17px, 1.2445095168vw);
  border-radius: 100vw;
  background-color: #fff;
  border: max(1px, 0.0732064422vw) solid #b7cbf2;
  padding: max(12.5px, 0.9150805271vw) 0;
}
.bonuses-detail-item-list-item:nth-of-type(3) .capsule-toy-about-ls-up-ticket img {
  width: max(288px, 21.0834553441vw);
}
.bonuses-detail-item-list-item:nth-of-type(3) .capsule-toy-about-ls-up-ticket__txt {
  font-size: max(16px, 1.1713030747vw);
  line-height: 1.625;
  text-align: center;
}
.bonuses-detail-item-list-item:nth-of-type(3) .capsule-toy-about-ls-up-ticket__link {
  text-align: center;
  margin-top: max(11px, 0.8052708638vw);
  font-size: max(14px, 1.0248901903vw);
}
.bonuses-detail-item-list-item:nth-of-type(3) .capsule-toy-about-ls-up-ticket__link a {
  text-decoration: underline;
}
.bonuses-detail-item-list-item:nth-of-type(3) .bonuses-detail-item-list-item__img {
  max-width: 600px;
  width: 70%;
}
.bonuses-detail-item-list-item .container-980 {
  position: relative;
  z-index: 2;
}
.bonuses-detail-item-list-item .container-980::before {
  content: "";
  position: absolute;
}
.bonuses-detail-item-list-item-inner {
  padding-left: max(30px, 2.196193265vw);
  padding-right: max(30px, 2.196193265vw);
}
@media screen and (max-width: 575px) {
  .bonuses-detail-item-list-item-inner {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.bonuses-detail-item-list-item__img {
  margin: 0 auto;
  text-align: center;
}
.bonuses-detail-item-list-item-txt-wrapper {
  padding-left: max(10px, 0.7320644217vw);
}
@media screen and (max-width: 575px) {
  .bonuses-detail-item-list-item-txt-wrapper {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .bonuses-detail-item-list-item-txt-wrapper::before {
    content: none;
  }
}
.bonuses-detail-item-list-item__txt {
  font-weight: 500;
  font-size: max(16px, 1.1713030747vw);
  line-height: 1.875;
}
@media screen and (max-width: 575px) {
  .bonuses-detail-item-list-item__txt {
    font-size: 15px;
  }
}
.bonuses-detail-item-list-item__caution {
  line-height: 1.7142857143;
  margin-top: max(16px, 1.1713030747vw);
  font-size: max(14px, 1.0248901903vw);
}
.bonuses-detail-item-list-item__caution a {
  text-decoration: underline;
}

/*スケジュール*/
.event {
  position: relative;
  margin-top: max(-137px, -10.0292825769vw);
  padding-top: max(100px, 13.6398vw);
  padding-bottom: max(76px, 10.14934vw);
  border-radius: 0 0 max(30px, 2.196193265vw) max(30px, 2.196193265vw);
}
@media screen and (max-width: 575px) {
  .event {
    margin-top: -120px;
    padding-top: 85px;
    padding-bottom: 64px;
  }
}
.event::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/event-bg.webp) no-repeat top center/cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.event .container-980 {
  position: relative;
}
.event__ttl {
  text-align: center;
}
.event__ttl img {
  width: max(684px, 50.0732064422vw);
}
.event__txt {
  font-size: max(16px, 1.1713030747vw);
  line-height: 1.625;
  text-align: center;
  margin-top: max(17px, 1.2445095168vw);
}
@media screen and (max-width: 399px) {
  .event__txt {
    font-size: 16px;
  }
}
.event__txt a {
  text-decoration: underline;
}
.event-date-wrapper {
  margin-top: max(57px, 4.1727672035vw);
}
.event-date__ttl {
  font-weight: bold;
  font-size: max(28px, 2.0497803807vw);
  text-align: center;
  color: #03289B;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 399px) {
  .event-date__ttl {
    font-size: 20px;
  }
}
.event-date-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: max(20px, 1.4641288433vw);
  margin-left: max(-10px, -0.7320644217vw);
  margin-right: max(-10px, -0.7320644217vw);
  margin-top: max(31px, 2.2693997072vw);
}
.event-date-list-item {
  width: 50%;
  padding: 0 max(10px, 0.7320644217vw);
  min-height: max(81px, 5.9297218155vw);
}
@media screen and (max-width: 575px) {
  .event-date-list-item {
    min-height: 50px;
  }
}
.event-date-list-item--finished {
  position: relative;
}
.event-date-list-item--finished::before {
  content: "";
  width: max(242px, 17.7159590044vw);
  height: max(89px, 6.5153733529vw);
  background: url(../../../../../../resources_source/images/campaign/summer_bonus_trio_campaign/en/label-finished.png) no-repeat center center/contain;
  position: absolute;
  top: max(-3px, -0.2196193265vw);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 575px) {
  .event-date-list-item--finished::before {
    width: 40.086957vw;
    height: 13.478261vw;
    top: -2.521739vw;
  }
}
.event-date-list-item--finished .event-date-list-item-inner {
  border: max(1px, 0.0732064422vw) solid #ccc;
}
.event-date-list-item--coming-soon .event-date-list-item-inner img {
  width: max(280px, 20.4978038067vw);
}
@media screen and (max-width: 767px) {
  .event-date-list-item--coming-soon .event-date-list-item-inner img {
    width: 36.4583333333vw;
  }
}
.event-date-list-item-inner {
  border-radius: max(15px, 1.0980966325vw);
  background-color: #fff;
  border: max(1px, 0.0732064422vw) solid #003bff;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-date-list-item img {
  width: max(151px, 11.0541727672vw);
}
@media screen and (max-width: 575px) {
  .event-date-list-item img {
    width: 24.6414602347vw;
  }
}

/* スケジュール日付・日 */
.event-date-text {
  font-size: 47px;
  font-weight: 650;
  font-family: "Noto Sans JP", sans-serif;
  background: white;
  padding: 0px 20px;
  border-radius: 10px;
  display: inline-block;
}

.event-date-text .day-of-week {
  font-size: 32px;
}

/* Responsive event date text sizes */
@media screen and (max-width: 783px) {
  .event-date-text {
    font-size: 37px;
  }
  .event-date-text .day-of-week {
    font-size: 28px;
  }
}

@media screen and (max-width: 650px) {
  .event-date-text {
    font-size: 24px;
  }
  .event-date-text .day-of-week {
    font-size: 24px;
  }
}

@media screen and (max-width: 500px) {
  .event-date-text {
    font-size: 19px;
    padding: 0px 15px;
  }
  .event-date-text .day-of-week {
    font-size: 20px;
  }
}

@media screen and (max-width: 400px) {
  .event-date-text {
    font-size: 16px;
    padding: 0px 10px;
  }
  .event-date-text .day-of-week {
    font-size: 16px;
  }
}

@media screen and (max-width: 350px) {
  .event-date-text {
    font-size: 12px;
  }
  .event-date-text .day-of-week {
    font-size: 14px;
  }
}

/*Xでポスト*/
.get-credit-wrapper {
  margin-top: max(42px, 3.074670571vw);
}
.get-credit__ttl {
  text-align: center;
}
.get-credit__ttl img {
  width: max(802px, 58.7115666179vw);
}
.get-credit__txt {
  text-align: center;
  margin-top: max(12px, 0.878477306vw);
  margin-bottom: max(42px, 3.074670571vw);
  font-family: "Inter", sans-serif;
  font-size: max(16px, 1.1713030747vw);
  line-height: 1.625;
}
@media screen and (max-width: 399px) {
  .get-credit__txt {
    font-size: 16px;
  }
}
.get-credit__txt img {
  width: max(588px, 43.0453879941vw);
}
.get-credit-list {
  display: flex;
  margin-left: max(-15px, -1.0980966325vw);
  margin-right: max(-15px, -1.0980966325vw);
}
@media screen and (max-width: 980px) {
  .get-credit-list {
    flex-wrap: wrap;
    row-gap: max(30px, 2.196193265vw);
    justify-content: center;
  }
}
.get-credit-list-item {
  width: 33.3333333%;
}
@media screen and (max-width: 980px) {
  .get-credit-list-item {
    width: 50%;
  }
}
@media screen and (max-width: 399px) {
  .get-credit-list-item {
    width: 100%;
  }
}
.get-credit-list-item:first-of-type {
  padding: 0 max(21px, 1.5373352855vw) 0 max(15px, 1.0980966325vw);
}
.get-credit-list-item:first-of-type .get-credit-list-item__img img {
  width: max(200px, 14.6412884334vw);
}
.get-credit-list-item:nth-of-type(2) {
  padding: 0 max(10px, 0.7320644217vw) 0 max(11px, 0.8052708638vw);
}
.get-credit-list-item:nth-of-type(2) .get-credit-list-item__img img {
  width: max(90px, 6.588579795vw);
}
.get-credit-list-item:nth-of-type(3) {
  padding: 0 max(15px, 1.0980966325vw) 0 max(24px, 1.756954612vw);
}
.get-credit-list-item:nth-of-type(3) .get-credit-list-item__img img {
  width: max(141px, 10.3221083455vw);
}
.get-credit-list-item__num {
  font-size: max(24px, 1.756954612vw);
  text-align: center;
  position: relative;
}
.get-credit-list-item__num::before, .get-credit-list-item__num::after {
  content: "";
  width: max(90px, 6.588579795vw);
  height: max(1px, 0.0732064422vw);
  background-color: #222222;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .get-credit-list-item__num::before, .get-credit-list-item__num::after {
    width: 11.7340286832vw;
  }
}
@media screen and (max-width: 575px) {
  .get-credit-list-item__num::before, .get-credit-list-item__num::after {
    width: 7.5vw;
  }
}
@media screen and (max-width: 399px) {
  .get-credit-list-item__num::before, .get-credit-list-item__num::after {
    width: 90px;
  }
}
.get-credit-list-item__num::before {
  left: 0;
}
.get-credit-list-item__num::after {
  right: 0;
}
.get-credit-list-item__img {
  text-align: center;
  margin-top: max(23px, 1.6837481698vw);
}
.get-credit-list-item__txt {
  font-size: max(16px, 1.1713030747vw);
  line-height: 1.625;
  text-align: center;
  margin-top: max(18px, 1.317715959vw);
}
@media screen and (max-width: 575px) {
  .get-credit-list-item__txt {
    font-size: 15px;
  }
}
.get-credit-list-item__txt a {
  text-decoration: underline;
}
.get-credit-btn-wrapper {
  margin: max(35px, 2.5622254758vw) auto 0;
  width: max(420px, 30.7467057101vw);
}
.get-credit-btn-wrapper .btn-grad-blue {
  padding: max(11px, 0.8052708638vw) 0 max(8px, 0.5856515373vw);
}
.get-credit-btn-wrapper .btn-grad-blue img {
  width: max(256px, 18.7408491947vw);
  padding-right: 2.1229868228vw;
}
@media screen and (max-width: 399px) {
  .get-credit-btn-wrapper .btn-grad-blue img {
    width: 200px;
  }
}

/*キャンペーン*/
.campaign-detail {
  position: relative;
  padding-top: max(104px, 7.6134699854vw);
  padding-bottom: max(89px, 6.5153733529vw);
  color: #FFFFFF;
}
@media screen and (max-width: 575px) {
  .campaign-detail {
    padding-top: 18.0869565217vw;
    padding-top: 15.4782608696vw;
  }
}
.campaign-detail::before {
  content: "";
  width: 100%;
  height: 110%;
  background-color: #222222;
  position: absolute;
  top: max(-27px, -1.9765739385vw);
  left: 0;
  z-index: -1;
}
.campaign-detail .container-980 {
  position: relative;
}
.campaign-detail-inner,
.campaign-detail .notice-wrapper {
  position: relative;
}
.campaign-detail-inner::before, .campaign-detail-inner::after,
.campaign-detail .notice-wrapper::before,
.campaign-detail .notice-wrapper::after {
  content: "";
  width: calc(100% - 4px);
  height: 100%;
  background-color: transparent;
  position: absolute;
  z-index: -1;
}
.campaign-detail-inner::before,
.campaign-detail .notice-wrapper::before {
  border: max(1px, 0.0732064422vw) solid #40C4FF;
  top: max(11px, 0.8052708638vw);
  left: 0;
}
.campaign-detail-inner::after,
.campaign-detail .notice-wrapper::after {
  border: max(1px, 0.0732064422vw) solid #83E9FD;
  top: max(16px, 1.1713030747vw);
  left: max(5px, 0.3660322108vw);
}
.campaign-detail__ttl,
.campaign-detail .notice__ttl {
  background-color: #222222;
  width: fit-content;
  margin: 0 auto;
  padding: 0 max(11px, 0.8052708638vw);
  position: relative;
}
.campaign-detail__ttl img {
  width: max(624px, 45.6808199122vw);
}
@media screen and (max-width: 575px) {
  .campaign-detail__ttl img {
    width: 72.6956521739vw;
  }
}
.campaign-detail .notice__ttl img {
  width: max(99px, 7.2474377745vw);
}
.campaign-detail-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: max(13px, 0.9516837482vw);
}
.campaign-detail-list-wrapper {
  padding: max(40px, 2.9282576867vw) max(53px, 3.8799414348vw) max(32px, 2.3426061493vw) max(50px, 3.6603221083vw);
}
@media screen and (max-width: 575px) {
  .campaign-detail-list-wrapper {
    padding: 6.9565217391vw 9.2173913043vw 5.5652173913vw 8.6956521739vw;
  }
}
.campaign-detail-list__num {
  color: #83E9FD;
  font-weight: 700;
  font-size: max(20px, 1.4641288433vw);
  margin-bottom: max(5px, 0.3660322108vw);
}
@media screen and (max-width: 575px) {
  .campaign-detail-list__num {
    font-size: 17px;
  }
}
.campaign-detail-list__num:not(:first-of-type) {
  padding-top: max(25px, 1.8301610542vw);
}
.campaign-detail-list__num .txt-large {
  font-size: max(24px, 1.756954612vw);
}
@media screen and (max-width: 575px) {
  .campaign-detail-list__num .txt-large {
    font-size: 21px;
  }
}
.campaign-detail-list-item {
  font-size: max(13px, 0.9516837482vw);
  line-height: 1.8461538462;
  padding-left: max(16px, 1.1713030747vw);
  position: relative;
  width: 100%;
}
.campaign-detail-list-item::before {
  content: "";
  width: max(6px, 0.439238653vw);
  height: max(6px, 0.439238653vw);
  background-color: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: max(9px, 0.6588579795vw);
  left: 0;
}
.campaign-detail-list-item__ttl {
  line-height: 1.7142857143;
  display: block;
  font-weight: 500;
}
.campaign-detail .notice-wrapper {
  margin-top: max(76px, 5.5636896047vw);
}
.campaign-detail .notice-txt-wrapper {
  padding: max(32px, 2.3426061493vw) max(37px, 2.7086383602vw) max(37px, 2.7086383602vw) max(50px, 3.6603221083vw);
}
@media screen and (max-width: 575px) {
  .campaign-detail .notice-txt-wrapper {
    padding: 5.5652173913vw 6.4347826087vw 6.4347826087vw 8.6956521739vw;
  }
}
.campaign-detail .notice-txt-inner {
  max-height: max(312px, 22.8404099561vw);
  overflow-y: auto;
  padding-top: max(6px, 0.439238653vw);
  padding-right: max(21px, 1.5373352855vw);
}
.campaign-detail .notice-txt-inner::-webkit-scrollbar {
  width: max(8px, 0.5856515373vw);
}
.campaign-detail .notice-txt-inner::-webkit-scrollbar-track {
  background-color: #333333;
}
.campaign-detail .notice-txt-inner::-webkit-scrollbar-thumb {
  background-color: #40C4FF;
  border-radius: 100vw;
}
.campaign-detail .notice__txt {
  font-size: max(13px, 0.9516837482vw);
  line-height: 1.8461538462;
}

/*カウントダウンタイマー*/
.countdown-timer {
  margin: 0 auto;
  text-align: center;
}
.countdown-timer .wrap {
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.countdown {
  width: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.countdown .bloc-time {
  text-align: center;    
}
.countdown .count-title {
  display: block;
  margin-bottom: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #fff;
}
.countdown .figure {
  position: relative;
  float: left;
  height: 55px;
  width: 50px;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 8px; 
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .2), inset 2px 4px 0 0 rgba(255, 255, 255, .08);
}
.countdown .figure:last-child {
  margin-right: 0;
}
.countdown .figure > span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 53px;
  color: #d02e26;
}
.countdown .figure .top:after, 
.countdown .figure .bottom-back:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.countdown .figure .top {
  z-index: 3;
  background-color: #f7f7f7;
  transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transform: perspective(200px);
}
.countdown .figure .bottom {  
  z-index: 1;
}
.countdown .figure .bottom:before {
  content: "";
  position: absolute;
  display: block; 
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(0, 0, 0, .02);
}
.countdown .figure .bottom-back {
  z-index: 2;
  top: 0;
  height: 50%;
  overflow: hidden;    
  background-color: #f7f7f7;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.countdown .figure .bottom-back span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.countdown .figure .top, 
.countdown .figure .top-back {
  height: 50%;
  overflow: hidden;
  backface-visibility: hidden;
}
.countdown .figure .top-back {
  z-index: 4;
  bottom: 0;
  background-color: #fff;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  transform: perspective(200px) rotateX(180deg);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.countdown .figure .top-back span {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  margin: auto;
}
.time-separator {
  float: left;
  margin: 0 5px;
  font-weight: bold;
  color: #d02e26;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 55px;
}
.time-separator .dot {
  width: 6px;
  height: 6px;
  background-color: #d02e26;
  border-radius: 50%;
  margin: 8px auto;
}
@media (max-width: 767px) {
  .countdown .figure {
    width: 35px;
    height: 40px;
  }
  .countdown .figure > span {
    font-size: 30px;
    line-height: 40px;
  }
  .time-separator {
    height: 40px;
  }
  .time-separator .dot {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    margin: 4px auto;
  }
  .time-remaining-container {
    width: 125px;
    height: 47px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 565px) {
  .countdown .figure {
    width: 25px;
    height: 30px;
  }
  .countdown .figure > span {
    font-size: 20px;
    line-height: 30px;
  }
  .time-separator {
    height: 30px;
  }
  .time-separator .dot {
    width: 3px;
    height: 3px;
    border-radius: 100%;
    margin: 4px auto;
  }
  .time-remaining-container {
    width: 100px;
    height: 30px;
    margin: 0 5x;
    display: flex;
    align-items: center;
    justify-content: center;
  }