@charset "euc-jp";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  --c-primary: #E60012;
  /* --c-secondary: #9792ae; */
  --c-white: #ffffff;
  --c-crimsonred: #bf0000;
}

/* ===========================================================
base
============================================================== */
#template,
#template *,
#template *:before,
#template *:after {
  box-sizing: border-box;
}

#templateFlame {
  width: 100%;
  padding: 0;
  background: #fff;
  color: #333;
  /* overflow: visible; */
}

/* ===========================================================
general
============================================================== */
#template #templateWrap #templateFlame .text-left { text-align: left; }
#template #templateWrap #templateFlame .text-center { text-align: center; }
#template #templateWrap #templateFlame .text-right { text-align: right; }

#template #templateWrap #templateFlame .d-block { display: block; }
#template #templateWrap #templateFlame .d-inline { display: inline; }
#template #templateWrap #templateFlame .d-inline-block { display: inline-block; }

#templateWrap #templateFlame .mb00  { margin-bottom: 0 !important; }
#templateWrap #templateFlame .mb04 { margin-bottom: 4px !important; }
#templateWrap #templateFlame .mb08 { margin-bottom: 8px !important; }
#templateWrap #templateFlame .mb16 { margin-bottom: 16px !important; }
#templateWrap #templateFlame .mb24 { margin-bottom: 24px !important; }
#templateWrap #templateFlame .mb32 { margin-bottom: 32px !important; }
#templateWrap #templateFlame .mb48 { margin-bottom: 48px !important; }
#templateWrap #templateFlame .mb56 { margin-bottom: 56px !important; }
#templateWrap #templateFlame .mb64 { margin-bottom: 64px !important; }
#templateWrap #templateFlame .mb72 { margin-bottom: 72px !important; }
#templateWrap #templateFlame .mb80 { margin-bottom: 80px !important; }
#templateWrap #templateFlame .mb96 { margin-bottom: 96px !important; }
#templateWrap #templateFlame .mb104 { margin-bottom: 104px !important; }
#templateWrap #templateFlame .mb112 { margin-bottom: 112px !important; }
#templateWrap #templateFlame .mb120 { margin-bottom: 120px !important; }
#templateWrap #templateFlame .mt00  { margin-top: 0 !important; }
#templateWrap #templateFlame .mt04 { margin-top: 4px !important; }
#templateWrap #templateFlame .mt08 { margin-top: 8px !important; }
#templateWrap #templateFlame .mt16 { margin-top: 16px !important; }
#templateWrap #templateFlame .mt24 { margin-top: 24px !important; }
#templateWrap #templateFlame .mt32 { margin-top: 32px !important; }
#templateWrap #templateFlame .mt48 { margin-top: 48px !important; }
#templateWrap #templateFlame .mt56 { margin-top: 56px !important; }
#templateWrap #templateFlame .mt64 { margin-top: 64px !important; }
#templateWrap #templateFlame .mt72 { margin-top: 72px !important; }
#templateWrap #templateFlame .mt80 { margin-top: 80px !important; }
#templateWrap #templateFlame .mt96 { margin-top: 96px !important; }
#templateWrap #templateFlame .mt104 { margin-top: 104px !important; }
#templateWrap #templateFlame .mt112 { margin-top: 112px !important; }
#templateWrap #templateFlame .mt120 { margin-top: 120px !important; }

#templateWrap #templateFlame .text-red {
  color: var(--c-crimsonred, #BF0000);
}
#templateWrap #templateFlame .text-size-s {
  font-size: .8em;
  color: inherit;
}
#templateWrap #templateFlame .text-size-l {
  font-size: 1.12em;
  color: inherit;
}

/* SP用（PCで非表示） */
#templateWrap #templateFlame .spOnly {
  display: none !important;
}

/* ===========================================================
#headline
============================================================== */
#template #headline .typeB {
  margin-bottom: 0;
}
#template .main-visual img {
  max-width: 100%;
}

/* ===========================================================
.mv-slide
============================================================== */
#template #bodyClump .mv-single img {
	width: 100%;
  height: auto;
}
#template #bodyClump .mv-slide {
	width: 100%;
	opacity: 0;
	visibility: hidden;
}
#template #bodyClump .mv-slide.slick-initialized {
	opacity: 1;
	visibility: visible;
}
#template #bodyClump .mv-slide.slick-slider {
  position: relative;
}
#template #bodyClump .mv-slide .slick-slide {
	pointer-events: none;
	cursor: default;
}
#template #bodyClump .mv-slide .slick-active {
	pointer-events: auto;
	cursor: default;
}
#template #bodyClump .mv-slide .slick-slide img {
	width: 100%;
}
#template #bodyClump .mv-slide .slick-prev,
#template #bodyClump .mv-slide .slick-next {
  position: absolute;
  width: 36px;
  height: 80px;
  top: 50%;
  left: -40px;
  margin-top: -40px;
  background: var(--c-primary, #E60012);
  cursor: pointer;
  z-index: 1;
  transition: all .3s;
}
#template #bodyClump .mv-slide .slick-next {
  left: auto;
  right: -40px;
}
#template #bodyClump .mv-slide .slick-prev:before,
#template #bodyClump .mv-slide .slick-next:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%) rotate(225deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--c-white, #FFF);
  border-right: 2px solid var(--c-white, #FFF);
  opacity: 1;
  transition: all .3s;
}
#template #bodyClump .mv-slide .slick-next:before {
  transform: translate(-70%, -50%) rotate(45deg);
}
#template #bodyClump .mv-slide:hover .slick-prev,
#template #bodyClump .mv-slide:hover .slick-next {
  left: 0;
}
#template #bodyClump .mv-slide:hover .slick-next {
  left: auto;
  right: 0;
}
#template #bodyClump .mv-slide .slick-prev:hover,
#template #bodyClump .mv-slide .slick-next:hover {
  width: 44px;
}

#template #bodyClump .mv-slide .slick-dots {
	display: block;
	width: 100%;
	position: absolute;
	bottom: 1.2vw;
	text-align: center;
}
#template #bodyClump .mv-slide .slick-dots li {
	display: inline-block;
	vertical-align: top;
  padding-left: min(.5vw, 8px);
  padding-right: min(.5vw, 8px);
}
#template #bodyClump .mv-slide .slick-dots li:only-child {
  display: none;
}
#template #bodyClump .mv-slide .slick-dots button {
  width: min(1vw, 14px);
  height: min(1vw, 14px);
	border: none;
	display: block;
	text-indent: -9999px;
	background: rgba(255, 255, 255, .5);
	cursor: pointer;
	padding: 0;
	display: block;
}
#template #bodyClump .mv-slide .slick-dots .slick-active button {
	background: rgba(255, 255, 255, 1);
}
#template #bodyClump .mv-slide .slick-slide a:focus,
#template #bodyClump .mv-slide .slick-dots button:focus {
	outline: none;
}

/* ===========================================================
#navArea
============================================================== */
#template #navArea {
  width: 100%;
}
#template .gheader {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  color: var(--c-white, #FFF);
  padding: 0 24px;
  background: var(--c-primary, #E60012);
}
#template .gheader.type-sw1 {
  background: #827E98;
}
#template .gheader a {
  color: inherit;
}
#template .gheader__logo {
  width: 220px;
  font-size: 24px;
  padding: 0 0 4px;
}
#template .gheader__nav {
  width: calc(100% - 582px);
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 18px;
}
#template .gheader__nav li a {
  display: inline-block;
  padding: 20px 1vw 24px;
  transition: 0.3s all;
  position: relative;
}
#template .gheader__nav li a::before {
  background: var(--c-white, #FFF);
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
#template .gheader__nav li a:hover {
  text-decoration: none;
}
#template .gheader__nav li a:hover::before,
#template .gheader__nav li a.link-current::before {
  transform: scale(1, 1);
}

#template .gheader__control {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background: #EEEEEE;
  padding: 4px;
  border-radius: 100px;
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.2) inset;
  transition: all .3s;
}
#template .gheader__control .control-btn {
  font-size: 16px;
  color: #999999;
  padding: 8px 16px 10px;
  border-radius: 100px;
}
#template .gheader__control .control-btn--active {
  color: var(--c-white, #FFF);
  padding: 8px 16px 10px 30px;
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.3);
  background: var(--c-primary, #E60012) url(https://image.books.rakuten.co.jp/books/img/bnr/event/game/switch2/img/icon-control.png) no-repeat left 16px center;
  background-size: 6px 10px;
  cursor: pointer;
}
#template .gheader__control a:hover {
  text-decoration: none;
}
#template .gheader__control:hover {
  background: #ffffff;
}
#template .gheader.type-sw1 .gheader__control .control-btn--active {
  background-color: #827E98;
}

#template .gheader__btn {
  width: 362px;
  font-size: 18px;
}
#template .gheader__btn a {
  display: block;
  font-size: 16px;
  text-align: center;
  color: var(--c-white, #FFF);
  padding: .5em 1.8em 0.6em 1em;
  border: 1px solid var(--c-white, #FFF);
  border-radius: 100px;
  position: relative;
  transition: 0.3s all;
}
#template .gheader__btn a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px var(--c-white, #FFF);
  border-right: solid 2px var(--c-white, #FFF);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0.875em;
  margin-top: -3px;
  z-index: 1;
}
#template .gheader__btn a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
}

#template #navArea.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
#template #navArea + .dummy {
  display: none;
}
#template .navHeight {
  padding-top: 60px;
  margin-top: -60px;
  display: block;
  line-height: 0;
}

/* ===========================================================
.cont-section
============================================================== */
#template #bodyClump .cont-section {
  background: #C8C7CD url(https://image.books.rakuten.co.jp/books/img/bnr/event/game/switch2/img/cont-bg-1.png) repeat top -6px left;
  background-size: 22px;
  background-attachment: fixed;
  padding: 104px 40px;
}

#template #bodyClump .cont-section-inner {
  max-width: 1458px;
  margin: 0 auto;
}

#template #bodyClump .cont-section--hard {
  background: #BBBFC4 url(https://image.books.rakuten.co.jp/books/img/bnr/event/game/switch2/img/cont-bg-3.jpg) no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
}

#template #bodyClump .cont-section--feature {
  background: #cf0001;
}

#template #bodyClump .cont-section--online {
  background: #BBBFC4 url(https://image.books.rakuten.co.jp/books/img/bnr/event/game/switch2/img/cont-bg-4.jpg) no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
}

#template #bodyClump .cont-section--ranking {
  background: #56526D url(https://image.books.rakuten.co.jp/books/img/bnr/event/game/switch2/img/cont-bg-2.jpg) no-repeat top left;
  background-size: cover;
  background-attachment: fixed;
  padding: 64px 40px 96px;
  position: relative;
  overflow: hidden;
}
#template #bodyClump .cont-section--ranking .bg-text {
  content: '';
  width: 100%;
  height: 236px;
  position: absolute;
  top: -32px;
  left: 0;
  z-index: 0;
  background: url(https://image.books.rakuten.co.jp/books/img/bnr/event/game/switch2/img/bg-ranking.png) no-repeat top center;
  background-size: contain;
}

#template #bodyClump .cont-section--chara {
  background-color: #EDEDF0;
}

/* ===========================================================
.cont-box
============================================================== */
#template #bodyClump .cont-box {
  background: #F5F5F5;
  padding: 56px 0 40px;
  border-radius: 24px;
}
#template #bodyClump .cont-box.type-pd1 {
  padding: 48px 40px 40px;
}
#template #bodyClump .cont-box.type-pd2 {
  padding: 16px;
}
#template #bodyClump .cont-box + .cont-box {
  margin: 64px 0 0;
}

/* ===========================================================
.pageTop
============================================================== */
#template #bodyClump .pageTop {
  bottom: 20px;
  right: 20px;
  position: fixed;
  z-index: 90;
}
#template #bodyClump .pageTop a {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  background: rgba(86, 82, 109, 0.5);
  transition: all .6s ease;
  border-radius: 50%;
}
#template #bodyClump .pageTop a::before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  content: '';
  transform: rotate(-45deg);
  border-top: 1px solid var(--c-white, #FFF);
  border-right: 1px solid var(--c-white, #FFF);
  transition: all .6s ease;
}
#template #bodyClump .pageTop a:hover {
  margin-bottom: 10px;
  background: rgba(86, 82, 109, 0.7);
}

/* ===========================================================
.cont-main-ttl
============================================================== */
#template #bodyClump .cont-main-ttl-wrap {
  margin: 0 auto 32px;
  padding: 0 40px;
  position: relative;
  font-size: 0;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  letter-spacing: .05em;
  border-bottom: 1px solid #DADADA;
}
#template #bodyClump .cont-main-ttl-wrap.type-full {
  margin-left: -40px;
  margin-right: -40px;
}
#template #bodyClump .cont-main-ttl-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 0 32px;
  position: relative;
}
#template #bodyClump .cont-main-ttl-inner::before {
  content: '';
  width: 80px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--c-primary, #E60012);
}
#template #bodyClump .cont-main-ttl {
  display: inline-block;
  font-size: 32px;
  font-weight: 900;
  color: #222;
  letter-spacing: .05em;
  margin: 0;
  padding: 0;
  background: transparent;
}

#template #bodyClump .cont-main-ttl-wrap.type-c-light {
  border-color: rgba(255, 255, 255, 0.4);
}
#template #bodyClump .cont-main-ttl-wrap.type-c-light .cont-main-ttl-inner::before {
  background: var(--c-white, #FFF);
}
#template #bodyClump .cont-main-ttl-wrap.type-c-light .cont-main-ttl {
  color: var(--c-white, #FFF);
}

/* ===========================================================
.cont-main-ttl-2
============================================================== */
#template #bodyClump .cont-main-ttl-2-wrap {
  margin: 0 auto 40px;
  padding: 0 24px 32px;
  position: relative;
  font-size: 0;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: .05em;
  text-align: center;
  border-bottom: 1px solid #B0B0B0;
  position: relative;
}
#template #bodyClump .cont-main-ttl-2-wrap::before {
  content: '';
  width: 80px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 40px);
  background: var(--c-primary, #E60012);
}
#template #bodyClump .cont-main-ttl-2 {
  display: inline-block;
  font-size: 32px;
  font-weight: 900;
  color: #222;
  letter-spacing: .05em;
  margin: 0;
  padding: 0;
  background: transparent;
}

/* ===========================================================
.cont-main-ttl-3
============================================================== */
#template #bodyClump .cont-main-ttl-3-wrap {
  margin: 0 auto 48px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: .05em;
  position: relative;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
}
#template #bodyClump .cont-main-ttl-3-catch {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin: 0 0 12px;
  padding: 0 0 0 20px;
  position: relative;
}
#template #bodyClump .cont-main-ttl-3-catch::before {
  content: '';
  width: 5px;
  height: .8em;
  background: var(--c-primary, #E60012);
  position: absolute;
  top: .2em;
  left: 0;
}
#template #bodyClump .cont-main-ttl-3 {
  display: inline-block;
  font-size: 40px;
  font-weight: 900;
  color: inherit;
  letter-spacing: .05em;
  margin: 0;
  padding: 0;
  background: transparent;
}

#template #bodyClump .cont-main-ttl-3-wrap.type-bg {
  aspect-ratio: 3.6 / 1;
}
#template #bodyClump .cont-main-ttl-3-wrap.type-bg .cont-main-ttl-3-inner {
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 56% 0 0;
}
#template #bodyClump .cont-main-ttl-3-wrap.type-bg .cont-main-ttl-3-bg {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
#template #bodyClump .cont-main-ttl-3-wrap.type-bg .cont-main-ttl-3-bg img {
  height: 100%;
  width: auto;
}

#template #bodyClump .cont-main-ttl-3-wrap.type-c-light {
  color: var(--c-white, #FFF);
  text-shadow: 0px 0px 10px rgba(52, 52, 52, 0.2);
}

/* ===========================================================
.cont-main-ttl-4
============================================================== */
#template #bodyClump .cont-main-ttl-4-wrap {
  margin: 0 auto 48px;
  color: var(--c-white, #FFF);
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: .05em;
  position: relative;
  aspect-ratio: 3.6 / 1;
  text-shadow: 0px 0px 10px rgba(52, 52, 52, 0.2);
}
#template #bodyClump .cont-main-ttl-4-wrap .cont-main-ttl-4-inner {
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 56% 0 0;
}
#template #bodyClump .cont-main-ttl-4 {
  display: inline-block;
  font-size: 40px;
  font-weight: 900;
  color: inherit;
  letter-spacing: .05em;
  margin: 0;
  padding: 0;
  background: transparent;
}
#template #bodyClump .cont-main-ttl-4-desc {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.5;
}
#template #bodyClump .cont-main-ttl-4-wrap .cont-main-ttl-4-bg {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
#template #bodyClump .cont-main-ttl-4-wrap .cont-main-ttl-4-bg img {
  height: 100%;
  width: auto;
}

/* ===========================================================
.cont-sub-ttl
============================================================== */
#template #bodyClump .cont-sub-ttl {
  margin: 0 auto 16px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 28px;
  font-weight: 900;
  font-style: normal;
}

/* ===========================================================
.cont-sub-ttl-2
============================================================== */
#template #bodyClump .cont-sub-ttl-2 {
  margin: 0 auto 32px;
  padding: 0 0 0 28px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 32px;
  font-weight: 900;
  font-style: normal;
  position: relative;
}
#template #bodyClump .cont-sub-ttl-2::before {
  content: '';
  width: 8px;
  height: .8em;
  background: var(--c-primary, #E60012);
  position: absolute;
  top: .25em;
  left: 0;
}

/* ===========================================================
.btn-1
============================================================== */
#template #bodyClump .btn-1 {
  display: inline-block;
  margin: 0 0 0 32px;
  position: relative;
  top: -6px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
#template #bodyClump .btn-1 a {
  display: block;
  font-size: 16px;
  text-align: center;
  color: var(--c-primary, #E60012);
  padding: .5em 2.4em 0.6em 1.3em;
  border: 1px solid var(--c-primary, #E60012);
  border-radius: 100px;
  position: relative;
  transition: 0.3s all;
}
#template #bodyClump .btn-1 a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px var(--c-white, #FFF);
  border-right: solid 2px var(--c-white, #FFF);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 1.05em;
  margin-top: -3px;
  z-index: 1;
}
#template #bodyClump .btn-1 a::after {
  content: '';
  width: 1em;
  height: 1em;
  background: var(--c-primary, #E60012);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: .7em;
  margin-top: -.5em;
}
#template #bodyClump .btn-1 a:hover {
  text-decoration: none;
  background: var(--c-white, #FFF);
}

/* size-l */
#template #bodyClump .btn-1--size-l a {
  font-size: 20px;
}

/* c-light */
#template #bodyClump .btn-1--c-light a {
  color: var(--c-white, #FFF);
  border-color: var(--c-white, #FFF);
}
#template #bodyClump .btn-1--c-light a::before {
  border-color: rgba(86, 82, 109, 0.8);
}
#template #bodyClump .btn-1--c-light a::after {
  background: var(--c-white, #FFF);
}
#template #bodyClump .btn-1--c-light a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===========================================================
.cpn-list
============================================================== */
#template #templateWrap #templateFlame #bodyClump .cpn-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}
#template #templateWrap #templateFlame #bodyClump .cpn-list a {
  display: inline-block;
  color: #006497;
  font-size: 15px;
  font-weight: 700;
  transition: all .3s;
}
#template #templateWrap #templateFlame #bodyClump .cpn-list__item {
  max-width: 288px;
  padding: 0.6vw;
}
#template #templateWrap #templateFlame #bodyClump .cpn-list__item .img-1 {
  transition: all .3s;
}
#template #templateWrap #templateFlame #bodyClump .cpn-list__item .img-1 + p {
  margin-top: 12px;
}
#template #templateWrap #templateFlame #bodyClump .cpn-list__item .img-1 img {
  max-width: 100%;
}
#template #templateWrap #templateFlame #bodyClump .cpn-list a:hover {
  text-decoration: none;
}
#template #templateWrap #templateFlame #bodyClump .cpn-list a:hover .img-1 {
  scale: 1.04;
}

/* ===========================================================
.tab1
============================================================== */
#template #templateWrap #templateFlame #bodyClump [data-tab-content] {
  display: none
}
#template #templateWrap #templateFlame #bodyClump [data-tab-content].active {
  display: block;
}

#template #templateWrap #templateFlame #bodyClump .tab1__nav {
    display: -webkit-box;
    display: flex;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 24px;
}
#template #templateWrap #templateFlame #bodyClump a.tab1__nav__item {
    display: inline-block;
    max-width: 194px;
    text-align: center;
    transition: all 0.2s ease;
    padding: 12px;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
}
#template #templateWrap #templateFlame #bodyClump a.tab1__nav__item .img-1 {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: var(--c-white, #FFF);
  transition: all .3s;
}
#template #templateWrap #templateFlame #bodyClump a.tab1__nav__item .img-1 img {
  max-width: 100%;
}
#template #templateWrap #templateFlame #bodyClump a.tab1__nav__item .ttl-1 {
  font-size: 16px;
  margin-top: 12px;
  transition: all .3s;
}

#template #templateWrap #templateFlame #bodyClump a.tab1__nav__item.active .img-1,
#template #templateWrap #templateFlame #bodyClump a.tab1__nav__item:hover .img-1 {
  border: 4px solid var(--c-primary, #E60012);
}
#template #templateWrap #templateFlame #bodyClump a.tab1__nav__item.active .ttl-1{
  color: var(--c-primary, #E60012);
  font-size: 18px;
}

/* active animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
#template #templateWrap #templateFlame #bodyClump .tab1__body__content.active {
    animation: fadeIn 0.7s ease 0s 1 normal;
}

/* ===========================================================
.cont-section--hard
============================================================== */

/* ===========================================================
.cont-section--feature
============================================================== */

/* ===========================================================
.cont-section--online
============================================================== */
#template #templateWrap #templateFlame #bodyClump .cont-section--online .cont-box {
  padding: 16px;
}
#template #templateWrap #templateFlame #bodyClump .aboutbox {
  padding: 32px;
  background: var(--c-primary, #E60012);
  color: var(--c-white, #FFF);
  border-radius: 16px;
}
#template #templateWrap #templateFlame #bodyClump .aboutbox img {
  max-width: 100%;
}
#template #templateWrap #templateFlame #bodyClump .aboutbox-head {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  letter-spacing: .05em;
  line-height: 120%;
  margin: 0 0 24px;
  padding: 12px;
  background: #CF0001;
  border-radius: 16px;
}
#template #templateWrap #templateFlame #bodyClump .aboutbox-body {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
#template #templateWrap #templateFlame #bodyClump .aboutbox-body__figure {
  width: 240px;
  margin: 0 32px 0 0;
}
#template #templateWrap #templateFlame #bodyClump .aboutbox-body__caption {
  width: calc(100% - 272px);
  line-height: 1.5;
}
#template #templateWrap #templateFlame #bodyClump .aboutbox-body__caption .ttl-1 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

/* ===========================================================
.cont-section--chara
============================================================== */
#template #templateWrap #templateFlame #bodyClump .cont-section--chara {
  text-align: center;
}
#template #templateWrap #templateFlame #bodyClump .cont-section--chara .cont-box {
  padding: 40px;
}
#template #templateWrap #templateFlame #bodyClump .cont-section--chara .atn-1 {
  font-size: 14px;
  margin: 12px 0 24px;
}

@media (min-width: 1240px) {
  #template #templateWrap #templateFlame #bodyClump .cont-section--chara .rankingContents {
    width: 1110px;
  }
  #template #templateWrap #templateFlame #bodyClump .cont-section--chara .rankingContents .slick-slide {
    width: calc(1126px / 5) !important;
  }
}
@media (min-width: 1440px) {
  #template #templateWrap #templateFlame #bodyClump .cont-section--chara .rankingContents {
    width: 1270px;
  }
  #template #templateWrap #templateFlame #bodyClump .cont-section--chara .rankingContents .slick-slide {
    width: calc(1286px / 5) !important;
  }
}
@media (min-width: 1640px) {
  #template #templateWrap #templateFlame #bodyClump .cont-section--chara .rankingContents {
    width: 1500px;
  }
  #template #templateWrap #templateFlame #bodyClump .cont-section--chara .rankingContents .slick-slide {
    width: calc(1516px / 5) !important;
  }
}

/* ===========================================================
.charadesc
============================================================== */
#template #templateWrap #templateFlame #bodyClump .charadesc-wrapper {
  margin: 0 auto 32px;
  padding: 0 0 40px;
  border-bottom: 2px solid #DFDFDF;
}
#template #templateWrap #templateFlame #bodyClump .charadesc-wrapper img {
  max-width: 100%;
}
#template #templateWrap #templateFlame #bodyClump .charadesc {
    max-width: 1458px;
    margin: 0 auto;
    display: -webkit-box;
    display: flex;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}
#template #templateWrap #templateFlame #bodyClump .charadesc__figure {
  width: 400px;
  margin: 0 32px 0 0;
  border-radius: 16px;
  overflow: hidden;
}
#template #templateWrap #templateFlame #bodyClump .charadesc__caption {
  width: calc(100% - 432px);
  text-align: left;
}
#template #templateWrap #templateFlame #bodyClump .charadesc__caption .sub-ttl-1 {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 120%;
  color: #888;
  margin: 0 0 4px;
}
#template #templateWrap #templateFlame #bodyClump .charadesc__caption .ttl-1 {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 32px;
  font-weight: 900;
  font-style: normal;
  line-height: 120%;
  position: relative;
  margin: 0 0 28px;
  padding: 0 0 16px;
}
#template #templateWrap #templateFlame #bodyClump .charadesc__caption .ttl-1::before {
  content: '';
  width: 48px;
  height: 3px;
  position: absolute;
  bottom: 0;
  background: var(--c-primary, #E60012);
}
#template #templateWrap #templateFlame #bodyClump .charadesc__caption .text-1 {
  font-size: 18px;
  line-height: 150%;
}
#template #templateWrap #templateFlame #bodyClump .charadesc__caption .text-1 > span + span {
  display: block;
  margin: .8em 0 0;
}
#template #templateWrap #templateFlame #bodyClump .charadesc__caption .outline-1 {
  background: #e6e7ea;
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 12px;
  overflow: hidden;
}
#template #templateWrap #templateFlame #bodyClump .charadesc__caption .outline-1 dt {
  display: inline-block;
  position: relative;
  background: rgba(130, 126, 152, 0.6);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  margin: -12px 0 8px -16px;
  padding: 8px 16px 6px;
  border-radius: 0 0 8px 0;
}
#template #templateWrap #templateFlame #bodyClump .charadesc__caption .outline-1 dd {
  font-size: 15px;
  line-height: 1.5;
}
#template #templateWrap #templateFlame #bodyClump .charadesc__caption .outline-1 dd > span + span {
  display: block;
  margin: .8em 0 0;
}

/* ===========================================================
.flbox
============================================================== */
#template #templateWrap #templateFlame #bodyClump .flbox {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
}
#template #templateWrap #templateFlame #bodyClump .flbox__figure {
  width: 40%;
  margin: 0 0 0 24px;
  border-radius: 12px;
  overflow: hidden;
}
#template #templateWrap #templateFlame #bodyClump .flbox__figure img {
  max-width: 100%;
  vertical-align: bottom;
}
#template #templateWrap #templateFlame #bodyClump .flbox__caption {
  flex-basis: 0;
  -webkit-box-flex: 1;
  flex-grow: 1;
  max-width: 100%;
  line-height: 1.5;
}
#template #templateWrap #templateFlame #bodyClump .flbox__caption p + p {
  margin-top: .5em;
}

/* ===========================================================
.figure-set
============================================================== */
#template #templateWrap #templateFlame #bodyClump .flbox + .figure-set {
  margin-top: 32px;
}
#template #templateWrap #templateFlame #bodyClump .figure-set {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 0 -4px;
}
#template #templateWrap #templateFlame #bodyClump .figure-set li {
  margin: 4px;
  border-radius: 12px;
  overflow: hidden;
}
#template #templateWrap #templateFlame #bodyClump .figure-set li img {
  max-width: 100%;
  vertical-align: bottom;
}

/* ===========================================================
.footcopy
============================================================== */
#template #templateWrap #templateFlame #bodyClump .footcopy {
  margin-top: 80px;
  font-size: 16px;
  color: #555;
}

/* ===========================================================
抽選販売
============================================================== */
#template #templateWrap #templateFlame #bodyClump .conditionCaution {
  background: var(--c-white, #FFF);
  margin: 0 0 24px;
  padding: 14px 16px 16px;
  color: var(--c-primary, #E60012);
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  text-align: center;
  border: 1px solid var(--c-primary, #E60012);
}
#template #templateWrap #templateFlame #bodyClump .conditionCaution > span {
  display: inline-block;
  background: url(https://image.books.rakuten.co.jp/books/img/bnr/event/game/switch2/img/icon-warning.svg) no-repeat left center;
  background-size: contain;
  padding: 3px 0 3px 52px;
  color: inherit;
}

#template #templateWrap #templateFlame #bodyClump .conditionArea .conditionsBox {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  align-items: stretch;
}
#template #templateWrap #templateFlame #bodyClump .conditionArea .conditionsBox + .conditionsBox {
  border-top: 1px solid #f5f5f5;
}
#template #templateWrap #templateFlame #bodyClump .conditionArea .conditionsBox dt {
  width: 35%;
  font-weight: 700;
  font-size: 16px;
  background: #cacaca;
  padding: 14px 12px;
  text-align: center;
  align-content: center;
}
#template #templateWrap #templateFlame #bodyClump .conditionArea .conditionsBox dd {
  width: 65%;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px;
  background: var(--c-white, #FFF);
  align-content: center;
}

#template #templateWrap #templateFlame #bodyClump .notesArea {
  margin: 56px auto 40px;
}
#template #templateWrap #templateFlame #bodyClump .notesArea h2 {
  background: var(--c-crimsonred, #BF0000);
  color: var(--c-white, #FFF);
  font-size: 22px;
  font-weight: 700;
  padding: 12px 12px 10px;
  text-align: center;
}
#template #templateWrap #templateFlame #bodyClump .notesArea p {
  background: var(--c-white, #FFF);
  padding: 20px 16px 24px;
  font-size: 15px;
  line-height: 1.6;
}

#template #templateWrap #templateFlame #bodyClump .heading01 {
  display: inline;
	background-image: linear-gradient(rgba(0,0,0,0) 70%, rgb(255,255,106) 70%);
  line-height: 1.5;
}
#template #templateWrap #templateFlame #bodyClump .heading01 > span {
  font-size: 20px;
  color: var(--c-primary, #E60012);
}

#template #templateWrap #templateFlame #bodyClump .detailArea .detailBox {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  align-items: stretch;
  border-bottom: 1px solid #ccc;
}
#template #templateWrap #templateFlame #bodyClump .detailArea .detailBox dt {
  width: 26%;
  font-size: 16px;
  font-weight: 700;
  padding: 40px 12px;
  text-align: center;
  align-content: center;
}
#template #templateWrap #templateFlame #bodyClump .detailArea .detailBox dd {
  width: 74%;
  font-size: 14px;
  line-height: 1.6;
  padding: 20px 0;
  align-content: center;
}
#template #templateWrap #templateFlame #bodyClump .detailArea .detailBox dd span.red {
  color: var(--c-crimsonred, #BF0000);
}
#template #templateWrap #templateFlame #bodyClump .detailArea .detailBox dd span.txt-bold {
  font-weight: 700;
}

#template #templateWrap #templateFlame #bodyClump .productArea {
  margin: 24px auto 0;
  text-align: center;
}
#template #templateWrap #templateFlame #bodyClump .productArea > ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; 
  margin: 0 -12px;
}
#template #templateWrap #templateFlame #bodyClump .productArea .product-item {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  width: 50%;
  margin-top: 16px;
  padding: 12px;
}
#template #templateWrap #templateFlame #bodyClump .productArea .product-item .img-1 {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  margin: 0 auto;
  background: var(--c-white, #FFF);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 8px 0 rgba(136, 136, 136, 0.1);
}
#template #templateWrap #templateFlame #bodyClump .productArea .product-item .img-1 img {
  width: 100%;
  max-width: 440px;
}
#template #templateWrap #templateFlame #bodyClump .productArea .product-item .ttl-1 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 0;
}
#template #templateWrap #templateFlame #bodyClump .productArea .product-item .price-1 {
  font-size: 16px;
  font-weight: 700;
  margin: 12px 0 20px;
}
#template #templateWrap #templateFlame #bodyClump .productArea .product-item .price-1 span {
  font-size: 13px;
}
#template #templateWrap #templateFlame #bodyClump .productArea .product-item .atn-1 {
  font-size: 12px;
}
#template #templateWrap #templateFlame #bodyClump .productArea .rcEntryButton-button {
  width: 400px;
}
#template #templateWrap #templateFlame #bodyClump .productArea .rcEntryButton-status--entered .rcEntryButton-button,
#template #templateWrap #templateFlame #bodyClump .productArea .rcEntryButton-status--before .rcEntryButton-button,
#template #templateWrap #templateFlame #bodyClump .productArea .rcEntryButton-status--closed .rcEntryButton-button {
  background: #e5e5e5;
  border-color: #e5e5e5;
}

#template #templateWrap #templateFlame #bodyClump .end-txt {
  margin: -48px auto 48px;
  padding: 40px 32px;
  font-size: 28px;
  text-align: center;
  color: var(--c-primary, #E60012);
  line-height: 1.5;
  background: #f5f5f5;
  border: 4px solid var(--c-primary, #E60012);
  border-radius: 24px;
  word-break: keep-all;
}
#template #templateWrap #templateFlame #bodyClump .end-txt > b {
  font-size: 40px;
}

/* ===========================================================
.figure-set
============================================================== */
#template #templateWrap #templateFlame #bodyClump .bnrlist {
  max-width: 1248px;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  justify-content: center;
}
#template #templateWrap #templateFlame #bodyClump .bnrlist__item {
  width: 50%;
  padding: 12px;
}
#template #templateWrap #templateFlame #bodyClump .bnrlist__item a {
  display: block;
  transition: all .3s;
}
#template #templateWrap #templateFlame #bodyClump .bnrlist__item a:hover {
  transform: scale(1.02);
}
#template #templateWrap #templateFlame #bodyClump .bnrlist__item img {
  width: 100%;
  vertical-align: bottom;
}