@charset "euc-jp";

@font-face {
  font-family: "Rakuten Sans JP2";
  src: url(../fonts/RakutenSansJP2_W-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rakuten Sans JP2";
  src: url(../fonts/RakutenSansJP2_W-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rakuten Sans JP2";
  src: url(../fonts/RakutenSansJP2_W-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rakuten Sans JP2";
  src: url(../fonts/RakutenSansJP2_W-DemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rakuten Sans JP2";
  src: url(../fonts/RakutenSansJP2_W-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rakuten Sans JP2";
  src: url(../fonts/RakutenSansJP2_W-Heavy.woff2) format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@keyframes floatY-small-fast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatY-medium-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatY-large-irregular {
  0% { transform: translateY(0); }
  25% { transform: translateY(-17px); }
  50% { transform: translateY(-5px); }
  75% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

html {
  scroll-behavior: smooth;
}

:root {
  --max-width: 1490px;
  --main-color: #449493;
  --sub-color: #760000;
  --accent-color: #E8D689;
  --bg-color: linear-gradient(180deg, #F6F2CE, #FFFDEB);
  --box-shadow: 6px 6px 0 0 #C3D2A6;
  --detail-color: #333;
  --text-color: #222;
  --text-size-lll: 48px;
  --text-size-ll: 40px;
  --text-size-l: 24px;
  --text-size-n: 18px;
  --text-size-s: 14px;
  --mt-lll: 160px;
  --mt-ll: 120px;
  --mt-l: 80px;
  --mt-n: 40px;
  --mt-s: 24px;
}

/* ==============================================================================
  reset
============================================================================== */

ol { list-style: none;}

#templateWrap #templateFlame {
  font-family: "Rakuten Sans JP2", "Noto Sans JP", sans-serif;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#templateWrap #templateFlame * {
  box-sizing: border-box;
}

#templateWrap #templateFlame #headline,
#templateWrap #templateFlame #headline :is(div, p, h1),
#templateWrap #templateFlame #bodyClump,
#templateWrap #templateFlame #bodyClump :is(h2, h3, h4) {
  margin: 0;
  padding: 0;
  background: none;
}

#templateWrap #templateFlame * {
  box-sizing: border-box;
}

/* ==============================================================================
  common css
============================================================================== */

#template #templateWrap #templateFlame #bodyClump {
  background: url(../img/bg-pattern.png) repeat, var(--bg-color);
}
#template #templateWrap #templateFlame .area img {
  width: 100%;
  max-width: max-content;
}

#template #templateWrap #templateFlame .detail--text,
#template #templateWrap #templateFlame .c--text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1%;
  font-size: var(--text-size-s);
  color: var(--detail-color);
}
#template #templateWrap #templateFlame .entry--btn .detail--text {
  margin-top: var(--mt-s);
}

#template #templateWrap #templateFlame #bodyClump .service--btn a {
  position: relative;
  display: block;
  background: #bf0000;
  color: #fff;
  font-weight: 600;
  padding: 12px 0 12px;
  width: 88%;
  margin: 0 auto;
  border-radius: var(--mt-l);
  text-decoration: none;
  font-size: 1vw;
  font-size: 1vw;
  font-size: clamp(0.813rem, 0.756rem + 0.1vw, 0.875rem);
  height: 40px;
  transition-duration: 0.3s;
  transition-property: all;
}
#template #templateWrap #templateFlame #bodyClump .service--btn a:hover {
  filter: brightness(110%);
  animation: shadow 1s;
}

/* animation: shadow 1s;をbtn--lineと同じクラス内のクラスに記述してボタンアニメーションを起動 */
.btn--line:hover {
  --shadow-color: rgb(191 0 0 / 50%);
}
@keyframes shadow {
  0% {
    box-shadow: 0 0 0 0 var(--shadow-color);
  }
  100% {
    box-shadow: 0 0 0 1.2em rgb(0 0 0 / 0%);
  }
}

/* ==============================================================================
  エントリーボタン
============================================================================== */

#template #templateWrap #templateFlame [layout='pc'] .rcEntryButton-button {
    width: 36%;
    height: 72px;
    max-width: 480px;
}

/* 基本サイズエントリーボタン */
#template #templateWrap #templateFlame .rcEntryButton-button {
  font-family: Hiragino Kaku Gothic ProN;
  background: url(../img/entry-deco.png) no-repeat center left 40px, url(../img/entry-deco.png) no-repeat center right 40px, #9A0000;
  border: 1px solid #9A0000;
  border-right: 8px solid #650000;
  border-left: 8px solid #650000;
  height: 72px;
  transition-duration: 0.3s;
  transition-property: all;
}
#template #templateWrap #templateFlame .rcEntryButton-button:hover {
  filter: brightness(110%);
  animation: shadow 1s;
}
#template #templateWrap #templateFlame .rcEntryButton-status--notfound .rcEntryButton-button:hover,
#template #templateWrap #templateFlame .rcEntryButton-status--entered .rcEntryButton-button:hover,
#template #templateWrap #templateFlame .rcEntryButton-status--before .rcEntryButton-button:hover,
#template #templateWrap #templateFlame .rcEntryButton-status--closed .rcEntryButton-button:hover {
  filter: brightness(100%);
  animation: none;
}
#template #templateWrap #templateFlame .rcEntryButton-status--entered .rcEntryButton-button,
#template #templateWrap #templateFlame .rcEntryButton-status--before .rcEntryButton-button,
#template #templateWrap #templateFlame .rcEntryButton-status--closed .rcEntryButton-button {
    font-family: Hiragino Kaku Gothic ProN;
    background: #f3f3f3;
    border-color: #f3f3f3;
    color: #717171;
    font-style: normal;
    font-weight: normal;
    height: 72px;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
}
#template #templateWrap #templateFlame .rcEntryButton-status--applied .rcEntryButton-button,
#template #templateWrap #templateFlame .rcEntryButton-status--selected .rcEntryButton-button {
    font-family: Hiragino Kaku Gothic ProN;
    font-style: normal;
    font-weight: normal;
    background: #ebf7ec;
    border-color: #069907;
    color: #069907;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
}
#template #templateWrap #templateFlame .rcEntryButton-status--applied .rcEntryButton-button span,
#template #templateWrap #templateFlame .rcEntryButton-status--selected .rcEntryButton-button span {
    color: #069907;
}

/* STEP内エントリーボタン */
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step .rcEntryButton-button {
  width: 88%;
  background: #bf0000;
  color: #fff;
  font-weight: 600;
  padding: 10px 0 12px;
  margin: 0 auto;
  border-radius: var(--mt-l);
  text-decoration: none;
  border: 1px solid #bf0000;
  box-shadow: none;
  height: 40px;
  font-size: 1vw;
  font-size: clamp(0.813rem, 0.756rem + 0.1vw, 0.875rem);
  line-height: inherit;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step .rcEntryButton-status--entered .rcEntryButton-button,
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step .rcEntryButton-status--before .rcEntryButton-button,
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step .rcEntryButton-status--closed .rcEntryButton-button {
    font-family: Hiragino Kaku Gothic ProN;
    background: #f3f3f3;
    border-color: #f3f3f3;
    color: #717171;
    font-style: normal;
    font-weight: normal;
    height: 40px;
    padding: 14px 16px 12px;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step .rcEntryButton-status--applied .rcEntryButton-button,
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step .rcEntryButton-status--selected .rcEntryButton-button {
    font-family: Hiragino Kaku Gothic ProN;
    font-style: normal;
    font-weight: normal;
    background: #ebf7ec;
    border-color: #069907;
    color: #069907;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step .rcEntryButton-status--applied .rcEntryButton-button span,
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step .rcEntryButton-status--selected .rcEntryButton-button span {
   color: #069907;
    width: 121px;
    white-space: normal;
    padding: 7px 8px 0 0;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step .rcEntryButton-status--applied .rcEntryButton-button .rcEntryButton-check-svg,
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step .rcEntryButton-status--selected .rcEntryButton-button .rcEntryButton-check-svg {
    width: 22px;
    margin: 0 0 0 12px;
}

/* ==============================================================================
  fixed nav
============================================================================== */

#templateWrap #templateFlame #bodyClump .pageTop {
  display: none;
  bottom: 1vw;
  right: 1vw;
  position: fixed;
  z-index: 90;
  transition-duration: 0.3s;
  transition-property: all;
  width: 3.5%;
}
#templateWrap #templateFlame #bodyClump .pageTop a {
  display: block;
}
#templateWrap #templateFlame #bodyClump .pageTop:hover {
  bottom: 1.2vw;
  filter: brightness(110%);
}

#templateWrap #templateFlame #bodyClump .anchor-02 {
display: none;
  bottom: 14vw;
  right: 0;
  position: fixed;
  z-index: 90;
  transition-duration: 0.3s;
  transition-property: all;
  width: 14%;
}
#templateWrap #templateFlame #bodyClump .anchor-02 a {
  display: block;
}
#templateWrap #templateFlame #bodyClump .anchor-02:hover {
  right: -0.2%;
  filter: brightness(110%);
}

#templateWrap #templateFlame #bodyClump .anchor-03 {
  display: none;
  bottom: 6.5vw;
  right: 0;
  position: fixed;
  z-index: 90;
  transition-duration: 0.3s;
  transition-property: all;
  width: 14%;
}
#templateWrap #templateFlame #bodyClump .anchor-03 a {
  display: block;
}
#templateWrap #templateFlame #bodyClump .anchor-03:hover {
  right: -0.2%;
  filter: brightness(110%);
}

#templateWrap #templateFlame #bodyClump .anchor-02 img,
#templateWrap #templateFlame #bodyClump .anchor-03 img,
#templateWrap #templateFlame #bodyClump .pageTop img {
  width: 100%;
}

/* =======================================================================
  kanban
======================================================================= */

#template #templateWrap #templateFlame #headline .area__main {
  animation-name: fade;
  animation-duration: 1s;
  animation-iteration-count: 1;
}
@keyframes fade {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
#template #templateWrap #templateFlame #headline .area__main--inner {
  position: relative;
  animation-name: fade02;
  animation-duration: 1s;
  animation-iteration-count: 1;
}
@keyframes fade {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

/* inner--tab */
#template #templateWrap #templateFlame #headline .area__main--inner .inner--tab ul {
  position: relative;
  margin: 0 auto;
  width: 88%;
  display: flex;
  justify-content: center;
  z-index: 2;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--tab li {
  width: 50%;
  border-radius: 64px 64px 0 0;
  height: 64px;
  padding: 0 64px;
  text-align: center;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--tab li.mediaLP {
  background: linear-gradient(180deg, #222, #583131, #222);
  padding: 0;
  transition-duration: 0.3s;
  transition-property: all;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--tab li.mediaLP img {
  margin: 0 auto;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--tab li.mediaLP a {
  display: block;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 32px;
  width: 100%;
  height: 100%;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--tab li.mediaLP:hover {
  filter: brightness(110%);
  transform: scale(0.95) translateY(1.5px);
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--tab li.ipLP {
  background: var(--main-color) url(../img/main-pattern.png) repeat 0 0 / 56px;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--tab li a {
  display: block;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--tab img {
  width: 100%;
  max-width: max-content;
}

/* inner--title */
#template #templateWrap #templateFlame #headline .area__main--inner .inner--title {
  position: relative;
  background: var(--main-color) url(../img/main-pattern.png) repeat 0 0 / 56px;
  padding: 2%;
  border-radius: 16px;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--title .title--wrap {
  display: flex;
  flex-flow: column;
  justify-content: center;
  background: url(../img/main-bg.png) no-repeat center / 100% 100%;
  padding: 4% 0;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--title .title--wrap h1 {
  position: relative;
  width: 28%;
  margin: 0 auto;
  z-index: 2;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--title .title--wrap .mainimg {
  width: 28%;
  margin: -1% auto 0;
  transform: rotate(-4deg);
  z-index: 1;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--title .title--wrap .maintext {
  width: 32%;
  margin: -4.5% auto 0;
  position: relative;
  z-index: 2;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--title .title--wrap .step--img {
  width: 32%;
  margin: 0 auto;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--title .title--wrap .entry--btn {
  margin: 2% 0;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--title .inner--servicelist {
  display: flex;
  background: #fff;
  padding: 1% 10%;
  border-radius: 16px;
  position: absolute;
  bottom: -4%;
  width: 88%;
  left: 0;
  right: 0;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
  z-index: 2;
}

/* inner--character */
#template #templateWrap #templateFlame #headline .area__main--inner .inner--character {
  position: absolute;
  top: 0;
  width: 22%;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--character.tomiokagiyu {
  top: 14%;
  right: 16%;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--character.okaimonopanda {
  top: 26%;
  right: 9%;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--character.kopanda {
  top: 40%;
  right: 11%;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--character.agatsumazunitsu {
  top: 26%;
  left: 9%;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--character.kamadotanjiro {
  top: 40%;
  left: 15%;
}
#template #templateWrap #templateFlame #headline .area__main--inner .inner--character.kochoshinobu {
  top: 10%;
  left: 17%;
}

/* ==============================================================================
area__con01
============================================================================== */

#template #templateWrap #templateFlame #bodyClump .area__con01 {
  padding: var(--mt-l);
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner {
  position: relative;
  width: 100%;
  max-width: 1490px;
  margin: 0 auto;
  background: url(../img/deco-02.png) no-repeat bottom right / 450px auto, url(../img/deco-03.png) no-repeat top left / 450px auto, url(../img/contents-pattern.png) repeat;
  box-shadow: var(--box-shadow);
  border-radius: var(--mt-n);
  padding: var(--mt-l);
  display: flex;
  flex-flow: column;
  gap: var(--mt-l);
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner > * {
  max-width: 1080px;
  margin: 0 auto;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step {
    display: flex;
    justify-content: space-between;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step li {
  width: calc(100% / 3 - 8px);
  background: url(../img/con01-step-bg.png) no-repeat 0 0 / 100% 100%;
  padding: var(--mt-n);
  text-align: center;
  display: flex;
  flex-flow: column;
  gap: var(--mt-s);
  min-height: 260px;
  max-width: 440px;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--step li .pouch--img {
  width: 64%;
  margin: 0 auto;
}

#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--present {
  display: flex;
  flex-flow: column;
  gap: var(--mt-n);
  width: 100%;
  text-align: center;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--present p {
  width: 480px;
  margin: 0 auto;
  font-size: var(--text-size-s);
  color: var(--detail-color);
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--present h2 {
  height: 122px;
  background: url(../img/deco-01.png) no-repeat 0 bottom / 100%;
  padding: 0 0 24px 0;
  width: 100%;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--present h2 img {
  width: auto;
  height: 100%;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--deco {
  position: absolute;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--deco.deco-04-01 {
  top: 2%;
  right: -16%;
  width: 40%;
  animation: floatY-small-fast 3.5s ease-in-out infinite alternate;
  animation-delay: 0.5s;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--deco.deco-04-02 {
  bottom: 24%;
  right: -16%;
  width: 40%;
  animation: floatY-small-fast 3.5s ease-in-out infinite alternate;
  animation-delay: 0.5s;
}
#template #templateWrap #templateFlame #bodyClump .area__con01--inner .inner--deco.deco-05 {
  bottom: 8%;
  left: -16%;
  width: 40%;
  animation: floatY-medium-slow 5.5s ease-in-out infinite alternate;
  animation-delay: 1s;
}

/* ==============================================================================
area__con02
============================================================================== */

#template #templateWrap #templateFlame #bodyClump .area__con02 {
  position: relative;
  background: url(../img/bg-img.png) no-repeat 0 0 / 100%;
  padding: var(--mt-l);
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner {
  position: relative;
  width: 100%;
  max-width: 1490px;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  gap: var(--mt-l);
  text-align: center;
  z-index: 1;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner > * {
  max-width: 1490px;
  margin: 0 auto;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner h2 {
  height: 122px;
  width: 100%;
  max-width: 1080px;
  background: url(../img/deco-01.png) no-repeat 0 bottom / 100%;
  padding: 0 0 24px 0;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner h2 img {
  width: auto;
  height: 100%;
}

/* inner--step */
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--step {
  display: flex;
  flex-flow: column;
  gap: var(--mt-l);
  width: 100%;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--step ol {
  display: flex;
  flex-flow: column;
  gap: var(--mt-l);
  width: 100%;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--step li {
  display: flex;
  flex-flow: column;
  gap: var(--mt-n);
  width: 100%;
}

/* detail--books */
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--step .detail--books {
  background: rgba(255,255,255,0.5);
  padding: var(--mt-n);
  border-radius: var(--mt-s);
  display: flex;
  flex-flow: column;
  gap: var(--mt-s);
  width: 100%;
  line-height: 1.6;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--step .detail--books h3 {
  font-size: var(--text-size-l);
  color: #bf0000;
  font-weight: 800;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--step .detail--books > p {
  font-size: var(--text-size-n);
  font-weight: 500;
}

/* inner--service */
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--service {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 24px;
  position: relative;
  z-index: 1;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--service li {
  position: relative;
  width: calc(100% / 3 - 16px);
  background: #fff;
  box-shadow: var(--box-shadow);
  border-radius: var(--mt-s);
  padding: var(--mt-n);
  margin-top: var(--mt-n);
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--service li:nth-child(-n+3) {
  margin-top: 0;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--service li .logo {
  width: 80%;
  margin: 0 auto var(--mt-s);
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--service li .terms {
  display: flex;
  flex-flow: column;
  gap: var(--mt-s);
  width: 100%;
  font-size: var(--text-size-n);
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--service li .terms p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-color);
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--service li .terms .icon {
  background: var(--main-color);
  color: #fff;
  font-weight: 600;
  padding: 6px 0 8px;
  width: 88px;
  margin: 0 auto;
  border-radius: var(--mt-l);
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--service li .terms .detail--text a {
  color: var(--main-color);
  font-size: var(--text-size-s);
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--service li .terms .total--text {
  border: 4px solid #DA6884;
  border-radius: 8px;
  background: #FFECF1;
  padding: 8px;
  font-size: 20px;
  font-weight: 800;
  color: #DA3860;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--service li .terms .service--btn a {
  font-size: var(--text-size-s);
  padding: 10px 0;
}

/* inner--appeal */
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--appeal {
  position: relative;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--mt-s);
  align-items: center;
  margin-top: var(--mt-n);
  z-index: 1;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--appeal .character--all {
  width: 56%;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--appeal .appeal--text {
  width: calc(44% - var(--mt-s));
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--appeal .detail--text {
  margin-top: var(--mt-n);
}

/* inner--deco */
#template #templateWrap #templateFlame #bodyClump .area__con02 .inner--deco {
  position: absolute;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--deco.deco-04 {
  bottom: 3%;
  right: -24%;
  animation: floatY-small-fast 3.5s ease-in-out infinite alternate;
  animation-delay: 0.5s;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--deco.deco-05 {
  bottom: 10%;
  left: -24%;
  animation: floatY-medium-slow 5.5s ease-in-out infinite;
  animation-delay: 1s;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--deco.deco-06 {
  bottom: 5%;
  right: -50%;
  left: 0;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--deco.deco-07-01 {
  bottom: 7%;
  left: 1%;
  animation: floatY-large-irregular 5.5s ease-in-out infinite alternate;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--deco.deco-07-02 {
  bottom: 11%;
  right: 3%;
  animation: floatY-large-irregular 7s ease-in-out infinite;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .inner--deco.deco-07-03 {
  bottom: 15%;
  left: 47%;
  animation: floatY-large-irregular 7s ease-in-out infinite alternate;
}
#template #templateWrap #templateFlame #bodyClump .area__con02 .inner--deco.deco-08 {
  top: -7%;
  left: 0;
  animation: floatY-small-fast 4.5s ease-in-out infinite alternate;
  animation-delay: 0.5s;
  width: 460px;
}
#template #templateWrap #templateFlame #bodyClump .area__con02 .inner--deco.deco-09 {
  top: 5%;
  right: 0;
  animation: floatY-large-irregular 5s ease-in-out infinite;
  width: 460px;
}

#template #templateWrap #templateFlame #bodyClump .area__con02--inner .lightBoxFrame {
  position: absolute;
  top: -34px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  transition-duration: 0.3s;
  transition-property: all;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .lightBoxFrame span {
    display: block;
}
#template #templateWrap #templateFlame #bodyClump .area__con02--inner .lightBoxFrame:hover {
  top: -30px;
  filter: brightness(110%);
}


.lb-data .lb-close {
  opacity: 1;
  background: url(../img/close.png) top right no-repeat;
}
.lb-dataContainer {
  padding-top: 0;
  z-index: 999;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
/* ==============================================================================
area__con03
============================================================================== */

#template #templateWrap #templateFlame #bodyClump .area__con03 {
  position: relative;
  background: url(../img/bg-img.png) no-repeat 0 0 / 100%;
  padding: var(--mt-l);
}
#template #templateWrap #templateFlame #bodyClump .area__con03--inner {
  position: relative;
  width: 100%;
  max-width: 1490px;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  gap: var(--mt-l);
  text-align: center;
  z-index: 1;
}
#template #templateWrap #templateFlame #bodyClump .area__con03--inner > * {
  max-width: 1490px;
  margin: 0 auto;
}
#template #templateWrap #templateFlame #bodyClump .area__con03--inner h2 {
  height: 122px;
  width: 100%;
  max-width: 1080px;
  background: url(../img/deco-01.png) no-repeat 0 bottom / 100%;
  padding: 0 0 24px 0;
}
#template #templateWrap #templateFlame #bodyClump .area__con03--inner h2 img {
  width: auto;
  height: 100%;
}
#template #templateWrap #templateFlame #bodyClump .area__con03--inner .inner-period {
  display: flex;
  flex-flow: column;
  gap: var(--mt-n);
  width: 100%;
}

/* inner--deco */
#template #templateWrap #templateFlame #bodyClump .area__con03 .inner--deco {
  position: absolute;
}
#template #templateWrap #templateFlame #bodyClump .area__con03 .inner--deco.deco-08 {
  top: -7%;
  left: 0;
  animation: floatY-small-fast 5.5s ease-in-out infinite alternate;
  animation-delay: 0.5s;
  width: 460px;
}
#template #templateWrap #templateFlame #bodyClump .area__con03 .inner--deco.deco-09 {
  bottom: -7%;
  right: 0;
  animation: floatY-large-irregular 6s ease-in-out infinite;
  width: 460px;
}

/* ==============================================================================
container
============================================================================== */

#template #templateWrap #templateFlame #bodyClump .cmn-container {
  max-width: 1490px;
  min-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item,
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item * {
  box-sizing: border-box;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item {
  margin-bottom: 16px;
  position: relative;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .js-api-cart {
  margin-top: 4px !important;
  position: absolute;
  width: calc(100% - 32px);
  bottom: 16px;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .item-main {
  text-align: center;
  
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .item-main .item-img {
  display: inline-block;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .item-main .item-img img {
  max-width: 100%;
  max-height: 220px;
}
#template #templateWrap #templateFlame #bodyClump .item-five .rbcomp__campaign__item .item-main .item-img img {
  max-width: 100%;
  max-height: 170px;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .item-main .item-img a {
  transition: all 0.3s;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .item-main .item-img a:hover {
  opacity: 0.7;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .item-detail {
  line-height: 1.5;
}

#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .title {
  margin: 0 0 8px;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .title a {
  color: var(--acc-color);
  text-decoration: none;
  transition: 0.3s all;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .title a span {
  color: inherit;
  font-weight: bold;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .title a:hover {
  opacity: 0.8;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .title .js-api-title {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  /* -webkit-line-clamp: 3; */
  font-size: 16px;
  font-weight: bold;
  color: inherit;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .js-api-person {
  color: var(--main-color);
  font-size: 13px;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .genre-label > span {
  display: inline-block;
  background: #BF0000;
  margin: 0 0 8px;
  padding: 3px 6px 2px;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  min-width: 64px;
  
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .genre-label span.blu-ray {
  background: #23b0eb;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .genre-label span.dvd {
  background: #bf0000;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .person,
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .author,
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .date {
  display: block;
  margin: 0 0 4px;
  font-size: 13px;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .person span {
  color: var(--main-color);
}

#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .pre-price,
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .pre-price * {
  font-size: 13px;
  color: #828282;
  text-decoration: line-through;
  margin: 0 0 4px;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .price {
  font-size: 16px;
  color: #BF0000;
  text-decoration: none;
  font-weight: bold;
  margin: 0 0 4px;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .price * {
  color: inherit;
  text-decoration: inherit;
  font-weight: inherit;
  padding-right: 0;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .price .js-api-itemPrice {
  font-size: 18px;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .price .tax {
  font-size: 11px;
  font-weight: normal;
  padding: 0 0.2em;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .price .percent {
  display: inline-block;
  font-size: 15px;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .js-api-ncp span {
  color: inherit;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .js-api-availability {
  font-size: 13px;
  display: inline-block;
  margin: 0 0 4px;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .item-txt  {
  font-size: 14px;
  margin: 0 0 4px;
}
/* 
#template #templateWrap #templateFlame #bodyClump .item-one .rbcomp__campaign__item {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 32px;
}
#template #templateWrap #templateFlame #bodyClump .item-one .rbcomp__campaign__item .item-main {
  width: 320px;
}
#template #templateWrap #templateFlame #bodyClump .item-one .rbcomp__campaign__item .item-detail {
  width: calc(100% - 344px);
} */

#template #templateWrap #templateFlame #bodyClump .item-two,
#template #templateWrap #templateFlame #bodyClump .item-three,
#template #templateWrap #templateFlame #bodyClump .item-four,
#template #templateWrap #templateFlame #bodyClump .item-five {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  max-width: 1490px;
  margin: 0 auto;
  padding: 0 8px;
}
#template #templateWrap #templateFlame #bodyClump .item-two .rbcomp__campaign__item .item-main,
#template #templateWrap #templateFlame #bodyClump .item-three .rbcomp__campaign__item .item-main,
#template #templateWrap #templateFlame #bodyClump .item-four .rbcomp__campaign__item .item-main,
#template #templateWrap #templateFlame #bodyClump .item-five .rbcomp__campaign__item .item-main {
  margin: 0 0 12px;
}
/* #template #templateWrap #templateFlame #bodyClump .item-three .rbcomp__campaign__item .item-main .item-img,
#template #templateWrap #templateFlame #bodyClump .item-four .rbcomp__campaign__item .item-main .item-img,
#template #templateWrap #templateFlame #bodyClump .item-five .rbcomp__campaign__item .item-main .item-img {
  max-width: 232px;
} */
/* 
#template #templateWrap #templateFlame #bodyClump .item-two {
  margin-left: -16px;
  margin-right: -16px;
}
#template #templateWrap #templateFlame #bodyClump .item-two .rbcomp__campaign__item {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
  width: 50%;
  padding: 8px 16px;
}
#template #templateWrap #templateFlame #bodyClump .item-two .rbcomp__campaign__item .item-main {
  width: 260px;
}
#template #templateWrap #templateFlame #bodyClump .item-two .rbcomp__campaign__item .item-main .item-img {
  margin-bottom: 0;
}
#template #templateWrap #templateFlame #bodyClump .item-two .rbcomp__campaign__item .item-detail {
  width: calc(100% - 276px);
}

#template #templateWrap #templateFlame #bodyClump .item-three .rbcomp__campaign__item {
  width: 33.33%;
  background-color: #fff;
  padding: 18px 16px 16px 16px;
  border-radius: 16px;
  margin: 8px;
  box-shadow: 0px 4px 8px 0 rgba(136, 136, 136, 0.1);
} */


#template #templateWrap #templateFlame #bodyClump .item-four {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 24px;
}
#template #templateWrap #templateFlame #bodyClump .item-four .rbcomp__campaign__item {
  position: relative;
  width: calc(100% / 4 - 18px);
  background: #fff;
  box-shadow: var(--box-shadow);
  border-radius: var(--mt-s);
  padding: var(--mt-s);
}
#template #templateWrap #templateFlame #bodyClump .item-four .rbcomp__campaign__item .item-main .item-img {
  width: 100%;
  height: 320px;
}
#template #templateWrap #templateFlame #bodyClump .item-four .rbcomp__campaign__item .item-main .item-img a,
#template #templateWrap #templateFlame #bodyClump .item-four .rbcomp__campaign__item .item-main .item-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}


/*
#template #templateWrap #templateFlame #bodyClump .item-five .rbcomp__campaign__item {
  width: calc(20% - 16px);
  background-color: #fff;
  padding: 16px 16px 56px 16px;
  border-radius: 16px;
  margin: 8px;
  box-shadow: 0px 4px 8px 0 rgba(136, 136, 136, 0.1);
}

#template #templateWrap #templateFlame #bodyClump .type-itemBg {
  margin-bottom: 32px;
}
#template #templateWrap #templateFlame #bodyClump .type-itemBg .rbcomp__campaign__item {
  background-color: #fff;
  padding: 16px;
  border-radius: 16px;
  margin: 8px;
  box-shadow: 0px 4px 8px 0 rgba(136, 136, 136, 0.1);
}
#template #templateWrap #templateFlame #bodyClump .item-one.type-itemBg .rbcomp__campaign__item {
  margin: 8px 0 16px;
}
#template #templateWrap #templateFlame #bodyClump .item-two.type-itemBg {
  margin-left: -8px;
  margin-right: -8px;
}
#template #templateWrap #templateFlame #bodyClump .item-two.type-itemBg .rbcomp__campaign__item {
  width: calc(50% - 16px);
}
#template #templateWrap #templateFlame #bodyClump .item-three.type-itemBg .rbcomp__campaign__item {
  width: calc(33.33% - 16px);
}
#template #templateWrap #templateFlame #bodyClump .item-four.type-itemBg .rbcomp__campaign__item {
  width: calc(25% - 16px);
}
#template #templateWrap #templateFlame #bodyClump .item-five.type-itemBg .rbcomp__campaign__item {
  width: calc(20% - 16px);
}

#template #templateWrap #templateFlame #bodyClump .type-thumbnailBg .rbcomp__campaign__item .item-main {
  height: 260px;
  background-color: #fff;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0px 4px 8px 0 rgba(136, 136, 136, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#template #templateWrap #templateFlame #bodyClump .item-five.type-thumbnailBg .rbcomp__campaign__item .item-main {
  height: 200px;
} */


.cartBlock__left {
  display: none;
}
.cartBlock__right {
  padding-left: 0 !important;
  width: 100% !important;
}
#templateFlame [class^="eventPageCartButton"] {
  max-width: unset;
}
#template #templateWrap #templateFlame #bodyClump ol.js-api-template-list {
  list-style: none;
}
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .title .js-api-title,
#template #templateWrap #templateFlame #bodyClump .rbcomp__campaign__item .title .js-api-originalTitle {
  color: #006497;
}

.genre-label {
  display: none;
}

/* =======================================================================
  area__campaign
======================================================================= */

#templateWrap #templateFlame #bodyClump .area__campaign {
  padding: var(--mt-l);
  margin: 0;
}
#templateWrap #templateFlame #bodyClump .area__campaign--inner {
  max-width: 1490px;
  margin: 0 auto;
  line-height: 1.6;
}
#templateWrap #templateFlame #bodyClump .area .area__comingsoon .area__comingsoon--inner p {
  font-size: 32px;
  line-height: 1.4;
}
#templateWrap #templateFlame #bodyClump .area__campaign--inner .rbcomp__campaign__h2.bw.reverse {
  padding: 24px;
  color: #fff;
  font-size: 100%;
  text-align: center;
  border: none;
  box-sizing: border-box;
  background: #418b8a;
  margin: 0;
  font-weight: 600;
  border-radius: 8px;
}
#templateWrap #templateFlame #bodyClump .area__campaign--inner .rbcomp__campaign__h2::after {
  display: none;
}
#templateWrap #templateFlame #bodyClump .area__campaign--inner .rbcomp__campaign__h3-accordion {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #aeaeae;
}
#templateWrap #templateFlame #bodyClump .area__campaign--inner .rbcomp-acc-title {
  width: 30%;
  background: none;
  color: #333333;
  font-weight: bold;
}
#templateWrap #templateFlame #bodyClump .area__campaign--inner .rbcomp-acc-title h3 {
  font-size: 14px;
  color: #333;
  padding: 0 32px;
    font-family: unset;
  text-align: left;
  margin: 0;
}
#templateWrap #templateFlame #bodyClump .area__campaign--inner .rbcomp-acc-content {
  width: 70%;
  color: #333333;
  padding: 0 32px;
  box-sizing: border-box;
}
#templateWrap #templateFlame #bodyClump .area__campaign--inner .rbcomp-acc-content .rbcomp__campaign__h3-accordion-txt {
  font-size: 14px;
  color: #333;
}
