@charset "UTF-8";
html {
  box-sizing: border-box;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
html * {
  box-sizing: border-box;
}

body {
  overflow: hidden;
}

p, span, li {
  font-size: 1.6rem;
}

img {
  max-width: 100%;
}

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

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

button {
  outline: none;
}

@keyframes effect-cover-anime-01 {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes effect-cover-anime-02 {
  0% {
    width: 100%;
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes effect-cover-anime-03 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes effect-cover-anime-04 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes effect-cover-frame-hidden {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
#js-cover-bg-animation.is-on:after {
  animation: both 0.75s ease-out;
  animation-name: effect-fadain-shadow;
}
#js-cover-bg-animation.is-off:after {
  animation: both 0.75s ease-out;
  animation-name: effect-fadain-shadow-off;
}

@keyframes effect-fadain-shadow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes effect-fadain-shadow-off {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#globalMenu.is-visible {
  animation: both 1s ease-out;
  animation-name: effect-fadain-gnav;
}
#globalMenu.is-hidden {
  animation: both 0.5s ease-out;
  animation-name: effect-fadain-gnav-hidden;
}

@keyframes effect-fadain-gnav {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes effect-fadain-gnav-hidden {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.js-scroll-animation {
  animation: both 0.75s ease-out;
  visibility: hidden;
}
.js-scroll-animation.is-on {
  visibility: visible !important;
}

.js-scroll-animation.js-fadain-to-top.is-on {
  animation-name: effect-fadain-to-top;
}

@keyframes effect-fadain-to-top {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-scroll-animation.js-fadain-to-left.is-on {
  animation-name: effect-fadain-to-left;
}

@keyframes effect-fadain-to-left {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.js-scroll-animation.js-fadain-to-right.is-on {
  animation-name: effect-fadain-to-right;
}

@keyframes effect-fadain-to-right {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-buttonGroup {
  text-align: center;
}

.c-button-seemore {
  display: inline-block;
  width: 176px;
}
@media screen and (max-width: 480px) {
  .c-button-seemore {
    width: 131.25px;
  }
}
.c-button-seemore:hover {
  opacity: 0.75;
}

.u-text-center {
  text-align: center;
}

.u-font-bold {
  font-weight: bold;
}

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

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

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

@media screen and (min-width: 480px) {
  .u-br-sp {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .u-w100vw-sp {
    width: 100vw !important;
    margin-left: -40px !important;
  }
}

.u-w-content100 {
  width: calc(100% + 80px);
  margin-left: -40px;
}
@media screen and (max-width: 480px) {
  .u-w-content100 {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}

@media screen and (max-width: 480px) {
  .u-w-content100-sp {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}

.u-br-tb {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-br-tb {
    display: inline-block;
  }
}

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

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

/* --------------------- */
/* modal   ------------- */
/* --------------------- */
.c-modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
}
.c-modal a {
  word-break: break-all;
}

/* モーダル背景 */
.c-modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* モーダル本体 */
.c-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90%;
  width: auto;
  background: white;
  padding: 20px 20px 40px;
}
@media screen and (max-width: 768px) {
  .c-modal-content {
    top: 45%;
    transform: translate(-50%, -50%);
    width: 88%;
    height: auto;
    padding: 30px 5% 50px;
  }
}

.c-modal-content__inner {
  height: auto;
}
.c-modal-content__inner img {
  height: auto;
  width: auto;
}

.c-btn-modal-close {
  position: absolute;
  padding: 10px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  font-weight: bold;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.js-modal-fixed {
  position: fixed;
  left: 0;
}

.l-inner {
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 100%;
    padding: 0 20px;
  }
}

.l-content-box:not(:last-of-type) {
  margin-bottom: 200px;
}
.l-content-box .l-inner {
  background: url(../img/bg-02.jpg) repeat-y top left/100% auto;
}
@media screen and (max-width: 768px) {
  .l-content-box:not(:last-of-type) {
    margin-bottom: 135px;
  }
}

.is-body-fixed {
  position: fixed;
  width: 100%;
}

.spMenu-logo-rurouniYoshinoya {
  max-width: 203px;
  width: 70%;
  text-align: center;
  margin: 0 auto 60px;
}

.l-header {
  position: fixed;
  padding: 24px 0 24px;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 100;
}
.l-header.has-bg {
  background: rgba(255, 255, 255, 0.75);
  transition: all 0.75s;
}
.l-header .l-inner {
  padding: 0 20px;
}
@media screen and (max-width: 1040px) {
  .l-header .l-inner {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 0;
  }
  .l-header .l-inner {
    padding: 0;
  }
  .l-header.has-bg {
    background: inherit;
  }
}

.nav-group {
  display: flex;
  justify-content: space-between;
}

.c-navBar {
  display: flex;
  align-items: center;
}
.c-navBar a:hover {
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  .c-navBar {
    flex-direction: column;
  }
}

.nav-main li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 900;
  padding: 13px 20px;
  color: #470000;
  border-left: 1px solid #470000;
}
.nav-main li .shadow {
  text-shadow: #EBFF00 0 0 4px;
}
@media screen and (max-width: 1080px) {
  .nav-main li a {
    font-size: 14px;
    padding: 13px 10px;
  }
}
@media screen and (max-width: 768px) {
  .nav-main {
    width: 100%;
  }
  .nav-main li {
    margin-bottom: 5px;
  }
  .nav-main li a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 14px;
    padding: 0 10px;
    height: 55px;
    color: #fff;
    text-decoration: underline;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    border: none !important;
  }
  .nav-main li a:hover {
    opacity: 0.75;
  }
}

.nav-sns li a {
  padding: 0 7px;
}
.nav-sns li img {
  width: 30px;
}
@media screen and (max-width: 1040px) {
  .nav-sns li a {
    padding: 0 5px;
  }
}

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

.nav-sns.nav-sns-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .nav-sns.nav-sns-sp {
    display: flex;
    position: fixed;
    right: calc(5.5vw + 32px + 20px);
    top: calc(5.5vw - 2px);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
  }
}

.hamburger.active ~ .nav-sns.nav-sns-sp {
  display: none;
}

.hamburger {
  position: fixed;
  display: block;
  z-index: 1000;
  right: 5.5vw;
  top: 5.5vw;
  width: 32px;
  height: 23px;
  cursor: pointer;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  position: absolute;
  width: 32px;
  height: 4px;
  left: 0px;
  background: #470000;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}
.hamburger.active span:nth-child(1) {
  top: 10px;
  left: 0px;
  transform: rotate(-35deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 10px;
  left: 0px;
  transform: rotate(35deg);
}

/* ナビ開いてる時のボタン */
.globalMenu {
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.globalMenu-inner {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .globalMenu {
    display: none;
    visibility: hidden;
    pointer-events: none;
    padding: 60px 0 0;
    opacity: 0;
    left: 0;
    background: #B81C25;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
  }
  .globalMenu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .globalMenu ul {
    padding: 0 22px 100px;
  }
}

.cover-animation {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}
.cover-animation.is-hidden {
  animation: both 1s cubic-bezier(0.65, 0.05, 0.36, 1);
  animation-fill-mode: forwards;
  animation-name: effect-cover-frame-hidden;
}
.cover-animation-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.cover-animation-content {
  position: absolute;
  width: 311px;
  height: 215px;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cover-animation .animation {
  position: absolute;
  top: 0;
  left: 0;
}
.cover-animation .animation-01 {
  z-index: 30;
}
.cover-animation .animation-01:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  transform-origin: right top;
}
.cover-animation .animation-01.is-on:after {
  animation: both 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
  animation-name: effect-cover-anime-01;
}
.cover-animation .animation-02 {
  z-index: 20;
}
.cover-animation .animation-02:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
}
.cover-animation .animation-02.is-on:after {
  animation: both 0.15s cubic-bezier(0.65, 0.05, 0.36, 1);
  animation-name: effect-cover-anime-02;
}
.cover-animation .animation-03 {
  z-index: 50;
  opacity: 0;
}
.cover-animation .animation-03.is-on {
  animation: both 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  animation-name: effect-cover-anime-03;
}
.cover-animation .animation-04 {
  z-index: 50;
  opacity: 0;
}
.cover-animation .animation-04.is-on {
  animation: both 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  animation-name: effect-cover-anime-04;
}
.cover-animation-frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/cover-frame-top.jpg) no-repeat top left/100% auto, url(../img/cover-frame-bottom.jpg) no-repeat bottom left/100% auto, url(../img/cover-frame-side.png) repeat-y top left/100% auto;
}
@media screen and (max-width: 768px) {
  .cover-animation-content {
    top: 48%;
    width: 186.6px;
    height: 129px;
  }
  .cover-animation-frame {
    background: url(../img/cover-frame-top-sp.jpg) no-repeat top left/100% auto, url(../img/cover-frame-bottom-sp.jpg) no-repeat bottom left/100% auto, url(../img/cover-frame-side-sp.png) repeat-y top left/100% auto;
  }
}

.cover {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.cover-bg {
  position: relative;
  z-index: -1;
}
.cover-bottom {
  width: 100%;
  position: absolute;
  bottom: 5%;
  z-index: 10;
}
.cover .img-01 {
  width: 68.5714285714%;
  margin: 0 auto 30px;
}
.cover .text-01 {
  width: 68.5714285714%;
  margin: 0 auto 30px;
}
.cover .text-02 {
  width: 68.5714285714%;
  margin: 0 auto 10px;
}
.cover .text-03 {
  font-size: 22px;
}
.cover .link-list {
  margin-top: 20px;
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 65px;
}
.cover .link-list a {
  font-size: 20px;
  line-height: 1;
  color: #231815;
  font-weight: bold;
}
.cover .link-list a:hover {
  opacity: 0.7;
}
.cover-floatLink {
  position: absolute;
  width: 20vw;
  top: 120px;
  right: 80px;
  z-index: 20;
}
.cover-floatLink:hover {
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .cover-bottom {
    bottom: 2%;
  }
  .cover .img-01 {
    width: 100%;
    margin-bottom: 10px;
  }
  .cover .text-01 {
    width: 100%;
    margin-bottom: 3px;
  }
  .cover .text-02 {
    width: 100%;
    margin-bottom: 0px;
  }
  .cover .text-03 {
    font-size: 12px;
  }
  .cover .link-list {
    margin-top: 10px;
    gap: 40px;
  }
  .cover .link-list a {
    font-size: 14px;
  }
  .cover-floatLink {
    position: absolute;
    width: 97px;
    top: 80px;
    right: 10px;
  }
}

.kv-animation-character .kv-character {
  position: absolute;
  opacity: 0;
  mask-image: linear-gradient(to top, transparent, white 100px);
  -webkit-mask-image: linear-gradient(to top, transparent, white 100px);
  bottom: 27.7%;
}
.kv-animation-character .kv-character-kenshin {
  left: 34.5%;
  width: 29.7857142857%;
  z-index: 5;
}
.kv-animation-character .kv-character-kaoru {
  right: 23.4%;
  width: 25.2142857143%;
  z-index: 4;
}
.kv-animation-character .kv-character-yahiko {
  left: 24.5%;
  width: 20%;
  z-index: 3;
}
.kv-animation-character .kv-character-megumi {
  left: 32.7%;
  width: 16.7142857143%;
  z-index: 2;
}
.kv-animation-character .kv-character-sanosuke {
  right: 28.6%;
  width: 22.8571428571%;
  bottom: 49.6%;
  z-index: 1;
}
.kv-animation-character.is-on .kv-character {
  animation: both 1s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.kv-animation-character.is-on .kv-character-kenshin, .kv-animation-character.is-on .kv-character-kaoru, .kv-animation-character.is-on .kv-character-sanosuke {
  animation-name: effect-fadain-to-right;
}
.kv-animation-character.is-on .kv-character-yahiko, .kv-animation-character.is-on .kv-character-megumi {
  animation-name: effect-fadain-to-left;
}

.kv-animation-ttl {
  opacity: 0;
}
.kv-animation-ttl.is-on {
  animation: both 1.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  animation-name: effect-fadain-to-top;
}

@media screen and (max-width: 768px) {
  .kv-animation-character .kv-character {
    mask-image: linear-gradient(to top, transparent, white 50px);
    -webkit-mask-image: linear-gradient(to top, transparent, white 50px);
    bottom: 32.9%;
  }
  .kv-animation-character .kv-character-kenshin {
    left: 25%;
    width: 49.3333333333%;
    z-index: 5;
  }
  .kv-animation-character .kv-character-kaoru {
    right: 5%;
    width: 42%;
    z-index: 4;
  }
  .kv-animation-character .kv-character-yahiko {
    left: 8%;
    width: 33.2%;
    z-index: 3;
  }
  .kv-animation-character .kv-character-megumi {
    left: 22%;
    width: 27.8666666667%;
    z-index: 2;
  }
  .kv-animation-character .kv-character-sanosuke {
    right: 13.9%;
    width: 37.8666666667%;
    bottom: 52.2%;
    z-index: 1;
  }
}
#prologue {
  padding: 49px 0 73px;
  background: url(../img/bg-01.png) repeat center/59px auto;
}
#prologue .l-inner {
  position: relative;
}
#prologue .illustration-01 {
  position: absolute;
  width: 23.3653846154%;
  right: 4.2%;
  bottom: -118px;
}
@media screen and (max-width: 768px) {
  #prologue {
    padding: 30px 0 25px;
    position: relative;
  }
  #prologue .l-inner {
    padding: 0;
    position: inherit;
  }
  #prologue .illustration-01 {
    position: absolute;
    width: 19.0666666667%;
    right: 0;
    bottom: -42px;
  }
}

.main-content {
  background: #B81C25;
  padding: 30px 0 160px;
}
@media screen and (max-width: 768px) {
  .main-content {
    padding: 0 20px 100px;
  }
}

#collaboration-02 {
  background: #B81C25;
  padding-top: 120px;
}
#collaboration-02 .l-inner {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #collaboration-02 {
    padding-top: 75px;
  }
  #collaboration-02 .l-inner {
    padding-bottom: 40px;
  }
}

#collaboration-02-summary {
  margin-bottom: 140px;
}
#collaboration-02-summary .ttl {
  position: relative;
  transform: translateY(-34%);
  margin-bottom: -48px;
}
#collaboration-02-summary .headline-01 {
  position: relative;
  transform: translateY(58%);
}
#collaboration-02-summary .headline-02 {
  position: relative;
  transform: translateY(39%);
}
#collaboration-02-summary .box {
  position: relative;
}
#collaboration-02-summary .box-01 {
  margin-bottom: 75px;
}
#collaboration-02-summary .c-buttonGroup {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -30%);
}
@media screen and (max-width: 768px) {
  #collaboration-02-summary {
    margin-bottom: 40px;
  }
  #collaboration-02-summary .ttl {
    margin-bottom: 0;
  }
  #collaboration-02-summary .headline-01 {
    position: relative;
  }
  #collaboration-02-summary .headline-02 {
    transform: translateY(58%);
  }
  #collaboration-02-summary .box-01 {
    margin-bottom: 42px;
  }
}

#collabo-set {
  padding-top: 60px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 50px;
  z-index: 2;
}
#collabo-set .ttl {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
#collabo-set .headline {
  margin-bottom: -10px;
}
#collabo-set .box {
  margin-bottom: 15px;
}
#collabo-set .box-ttl {
  position: relative;
  transform: translateY(44%);
}
#collabo-set .desc {
  margin-bottom: 25px;
}
#collabo-set .set-rurouni {
  margin-bottom: 10px;
}
#collabo-set .set-gyunabe {
  margin-bottom: 10px;
}
#collabo-set .set-tunagaru {
  margin-bottom: -20px;
}
#collabo-set .text-01 {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.75;
}
#collabo-set .detail {
  display: flex;
  align-items: center;
  justify-content: center;
}
#collabo-set .detail .img-arrow {
  padding-right: 20px;
  width: 80px;
  margin-left: -80px;
}
#collabo-set .detail > a {
  display: inline-block;
  line-height: 1;
  padding-bottom: 2px;
  color: #004EFF;
  font-size: 30px;
  font-weight: bold;
  border-bottom: 2px solid #004EFF;
}
#collabo-set .detail > a:hover {
  opacity: 0.75;
}
#collabo-set .detail-rurouniSet {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #collabo-set {
    padding-top: 60px;
    margin-bottom: 0px;
    padding-bottom: 0;
  }
  #collabo-set .ttl {
    margin-bottom: 17px;
  }
  #collabo-set .headline {
    margin-bottom: -5px;
  }
  #collabo-set .box {
    margin-bottom: 15px;
  }
  #collabo-set .box-ttl {
    position: relative;
    transform: translateY(44%);
  }
  #collabo-set .desc {
    margin-bottom: 25px;
  }
  #collabo-set .set-rurouni {
    margin-bottom: 10px;
  }
  #collabo-set .set-gyunabe {
    margin-bottom: 10px;
  }
  #collabo-set .set-tunagaru {
    margin-bottom: 0px;
  }
  #collabo-set .box {
    margin-bottom: 0;
  }
  #collabo-set .box-ttl {
    transform: translateY(50%);
  }
  #collabo-set .text-01 {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.4;
  }
  #collabo-set .detail {
    margin-top: 20px;
  }
  #collabo-set .detail .img-arrow {
    padding-right: 5px;
    width: 50px;
    margin-left: -50px;
  }
  #collabo-set .detail > a {
    line-height: 1.2;
    padding-bottom: 2px;
    font-size: 16px;
    border-bottom: 1px solid #004EFF;
  }
  #collabo-set .detail-rurouniSet {
    margin-bottom: 20px;
  }
}

#gentei {
  padding-top: 60px;
  margin-bottom: 170px;
  position: relative;
  padding-bottom: 50px;
  z-index: 2;
}
#gentei .ttl {
  margin-bottom: 65px;
}
#gentei .area-shop {
  margin: 0 7%;
}
#gentei .text-01 {
  margin-bottom: 27px;
  font-size: 16px;
  line-height: 1.75;
}
#gentei .text-02 {
  margin-bottom: 40px;
  line-height: 1.6;
  font-size: 24px;
  font-weight: 900;
  color: #470000;
}
#gentei .text-attention {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.75;
}
#gentei .detail {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#gentei .detail .img-arrow {
  padding-right: 20px;
  width: 80px;
  margin-left: -80px;
}
#gentei .detail > a {
  display: inline-block;
  line-height: 1;
  padding-bottom: 2px;
  color: #004EFF;
  font-size: 30px;
  font-weight: bold;
  border-bottom: 2px solid #004EFF;
}
#gentei .detail > a:hover {
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  #gentei {
    padding-top: 60px;
    margin-bottom: 0px;
    padding-bottom: 0;
  }
  #gentei .ttl {
    margin-bottom: 17px;
  }
  #gentei .area-shop {
    margin: 0;
  }
  #gentei .text-01 {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.4;
  }
  #gentei .text-02 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 13px;
  }
  #gentei .text-attention {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.4;
  }
  #gentei .detail {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #gentei .detail .img-arrow {
    padding-right: 5px;
    width: 50px;
    margin-left: -50px;
  }
  #gentei .detail > a {
    line-height: 1.2;
    padding-bottom: 2px;
    font-size: 16px;
    border-bottom: 1px solid #004EFF;
  }
  #gentei .text-03 {
    margin-left: 30px;
    font-size: 12px;
  }
}

#point {
  padding-top: 60px;
  margin-bottom: 120px;
  position: relative;
  padding-bottom: 50px;
  z-index: 2;
}
#point .illustration-02 {
  position: absolute;
  width: 37.7884615385%;
  left: -6.5%;
  top: 50%;
  transform: translateY(-100%);
  font-size: 0;
  z-index: -1;
}
#point .ttl {
  width: calc(100% + 80px);
  margin-left: -40px;
  position: relative;
  z-index: 2;
}
#point .headline {
  margin-bottom: 15px;
}
#point .box {
  margin-bottom: 15px;
}
#point .box-ttl {
  position: relative;
  transform: translateY(44%);
}
#point .text-01 {
  margin-bottom: 27px;
  font-size: 16px;
  line-height: 1.75;
}
#point .limit {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #231815;
}
#point .link-list {
  margin: 50px auto 85px;
  display: flex;
  text-align: center;
  justify-content: center;
  color: #470000;
}
#point .link-list > li {
  width: 240px;
  padding: 8px 0 0;
  border-left: 3px solid #470000;
}
#point .link-list > li:last-of-type {
  border-right: 3px solid #470000;
}
#point .link-list a {
  display: inline-block;
  padding: 0 30px;
  font-size: 24px;
  color: #231815;
  font-weight: bold;
  color: #470000;
  line-height: 1;
}
#point .link-list a:hover {
  opacity: 0.7;
}
#point .link-list .triangle {
  font-size: 13px;
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  #point {
    padding-top: 60px;
    margin-bottom: 0px;
    padding-bottom: 0;
  }
  #point .illustration-02 {
    position: inherit;
    width: 100%;
    left: inherit;
    top: inherit;
    transform: none;
  }
  #point .ttl {
    margin-bottom: 17px;
  }
  #point .headline {
    margin-bottom: 12px;
  }
  #point .box {
    margin-bottom: 0;
  }
  #point .box-ttl {
    transform: translateY(50%);
  }
  #point .text-01 {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.4;
  }
  #point .limit {
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #231815;
  }
  #point .link-list {
    margin: 25px auto 20px;
    display: flex;
    text-align: center;
    justify-content: center;
    color: #470000;
  }
  #point .link-list > li {
    width: 33%;
    padding: 5px 0 0;
    border-left: 2px solid #470000;
  }
  #point .link-list > li:last-of-type {
    border-right: 2px solid #470000;
  }
  #point .link-list a {
    display: inline-block;
    padding: 0;
    font-size: 12px;
  }
  #point .link-list .triangle {
    font-size: 10px;
    margin-top: 3px;
    transform: scale(80%);
  }
}

#join {
  position: relative;
  padding-top: 60px;
  margin-bottom: 150px;
  z-index: 2;
}
#join .ttl {
  margin-bottom: 34px;
}
#join .box-list-wrap {
  position: relative;
  z-index: 2;
}
#join .illustration-03 {
  position: absolute;
  width: 25%;
  right: -4%;
  top: 0;
  transform: translateY(-100%);
  font-size: 0;
  z-index: -1;
}
#join .box-01,
#join .box-02 {
  margin-bottom: 18px;
}
#join .box-03 {
  margin-bottom: 4px;
}
#join .box-01 {
  position: relative;
}
#join .app {
  display: inline-block;
  position: absolute;
  width: 20%;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
#join .app:hover {
  opacity: 0.75;
}
#join .text-01 {
  font-size: 16px;
  line-height: 1.75;
}
#join .detail {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#join .detail .img-arrow {
  padding-right: 20px;
  width: 80px;
  margin-left: -80px;
}
#join .detail > a {
  display: inline-block;
  line-height: 1;
  padding-bottom: 2px;
  color: #004EFF;
  font-size: 30px;
  font-weight: bold;
  border-bottom: 2px solid #004EFF;
}
#join .detail > a:hover {
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  #join {
    padding-top: 10px;
    margin-bottom: 60px;
  }
  #join .illustration-03 {
    position: inherit;
    width: 100%;
    right: inherit;
    top: inherit;
    transform: none;
  }
  #join .ttl {
    margin-bottom: 22px;
  }
  #join .box-01,
  #join .box-02 {
    margin-bottom: 6px;
  }
  #join .box-03 {
    margin-bottom: 4px;
  }
  #join .box-01 {
    position: relative;
  }
  #join .app {
    display: inline-block;
    position: absolute;
    width: 28.6440677966%;
    top: 50%;
    right: 50%;
    transform: translateX(50%);
  }
  #join .text-01 {
    font-size: 12px;
    line-height: 1.4;
  }
  #join .detail {
    margin-top: 20px;
  }
  #join .detail .img-arrow {
    padding-right: 5px;
    width: 50px;
    margin-left: -50px;
  }
  #join .detail > a {
    line-height: 1;
    padding-bottom: 2px;
    font-size: 16px;
    border-bottom: 1px solid #004EFF;
  }
}

#ranking {
  position: relative;
  padding-top: 60px;
  margin-bottom: 170px;
}
#ranking .illustration-04 {
  font-size: 0;
}
#ranking .ttl {
  margin-bottom: 36px;
}
#ranking .catch {
  margin-bottom: 5px;
}
#ranking .box {
  margin-bottom: 5px;
  position: relative;
  z-index: 10;
}
#ranking .box .illustration-04 {
  display: inline-block;
  position: absolute;
  width: 29.0625%;
  left: -0.5%;
  top: 0;
  transform: translateY(-83%);
  z-index: -1;
}
#ranking .button-app-dl {
  display: inline-block;
  width: 62.2916666667%;
}
#ranking .button-app-dl:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  #ranking {
    position: relative;
    padding-top: 0px;
    margin-bottom: 30px;
  }
  #ranking .ttl {
    margin-bottom: 12px;
  }
  #ranking .catch {
    margin-bottom: 0;
  }
  #ranking .box {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-bottom: 5px;
    position: relative;
    z-index: 10;
  }
  #ranking .box .illustration-04 {
    display: none;
  }
  #ranking .button-app-dl {
    width: 100%;
  }
}

#faq {
  padding-top: 60px;
}
#faq .ttl {
  position: relative;
  margin-bottom: 35px;
  z-index: 3;
}
#faq .faq-list-wrap {
  position: relative;
  z-index: 2;
}
#faq .illustration-05 {
  font-size: 0;
  position: absolute;
  width: 24.7916666667%;
  right: 1.5%;
  top: 0;
  transform: translateY(-100%);
  z-index: -1;
}
#faq .faq-list {
  color: #470000;
}
#faq .faq-list > li {
  margin-bottom: 13px;
  border: 6px solid #470000;
  border-radius: 30px;
  background: #fff;
  transition: all 0.3s;
}
#faq .faq-list > li dl {
  padding: 1.5rem 20px 1.5rem 42px;
}
#faq .faq-list > li dt {
  font-size: 20px;
  font-weight: 900;
  padding-right: 100px;
}
#faq .faq-list > li dd {
  margin-top: 30px;
  font-weight: 900;
  padding-right: 50px;
  padding-bottom: 20px;
}
#faq .faq-list > li dd > ul li:not(:last-of-type) {
  margin-bottom: 4rem;
}
#faq .faq-list > li a {
  text-decoration: underline;
  color: #470000;
}
#faq .faq-list > li a:hover {
  opacity: 0.7;
}
#faq .faq-list > li .question {
  margin-bottom: 1rem;
  font-weight: 900;
  font-size: 18px;
}
#faq .faq-list > li .answer {
  font-weight: bold;
  font-size: 18px;
}
#faq .accordion-toggleSwitch {
  cursor: pointer;
  position: relative;
}
#faq .accordion-toggleSwitch:hover {
  opacity: 0.75;
}
#faq .accordion-toggleSwitch:before, #faq .accordion-toggleSwitch:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 32px;
  height: 5px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #470000;
  transition: all 0.3s;
}
#faq .accordion-toggleSwitch:after {
  transform: translateY(-50%) rotate(90deg);
}
#faq .accordion-hiddenContent {
  display: none;
}
#faq .accordion-box.is-open {
  transition: all 0.3s;
}
#faq .accordion-box.is-open .accordion-toggleSwitch:after {
  transform: translateY(-50%) rotate(180deg);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #faq {
    position: relative;
    padding-top: 15px;
  }
  #faq .illustration-05 {
    font-size: 0;
    position: inherit;
    width: 100%;
    right: inherit;
    top: inherit;
    transform: none;
    z-index: inherit;
  }
  #faq .ttl {
    margin-bottom: 20px;
  }
  #faq .faq-list {
    color: #470000;
  }
  #faq .faq-list > li {
    border: 4px solid #470000;
    margin-bottom: 10px;
  }
  #faq .faq-list > li dl {
    padding: 1rem 10px 1rem 20px;
  }
  #faq .faq-list > li dt {
    font-size: 16px;
    padding-right: 30px;
  }
  #faq .faq-list > li dd {
    margin-top: 20px;
    font-size: 14px;
    padding-right: 0;
    padding-bottom: 10px;
  }
  #faq .faq-list > li dd > ul li:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  #faq .faq-list > li .question {
    margin-bottom: 1rem;
    font-size: 14px;
  }
  #faq .faq-list > li .answer {
    font-size: 14px;
  }
  #faq .accordion-toggleSwitch:before, #faq .accordion-toggleSwitch:after {
    width: 24px;
    height: 4px;
    top: 50%;
    right: 0;
  }
}

#special .l-inner {
  padding-bottom: 70px;
}
#special .ttl {
  transform: translateY(-65%);
  margin-bottom: -60px;
}
#special .desc {
  margin-bottom: 4px;
}
#special .text {
  margin-bottom: 12px;
  padding-left: 6%;
}
@media screen and (max-width: 768px) {
  #special .l-inner {
    padding-bottom: 20px;
  }
  #special .ttl {
    margin-bottom: -30px;
  }
  #special .desc {
    margin-bottom: 4px;
  }
  #special .text {
    display: inline-block;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 10px;
    position: relative;
    transform: translateY(-100%);
  }
}

#broadcast {
  margin-top: -100px;
  padding-top: 100px;
}
#broadcast .l-inner {
  padding-bottom: 60px;
}
#broadcast .ttl {
  transform: translateY(-50%);
}
#broadcast .lead {
  margin-bottom: 30px;
}
#broadcast .date {
  margin-bottom: 10px;
}
#broadcast .attention {
  margin-bottom: 40px;
  font-size: 16px;
}
#broadcast .detail > a {
  display: inline-block;
  line-height: 1;
  padding-bottom: 2px;
  color: #004EFF;
  font-size: 30px;
  font-weight: bold;
  border-bottom: 2px solid #004EFF;
}
#broadcast .detail > a:hover {
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  #broadcast .l-inner {
    padding-bottom: 40px;
  }
  #broadcast .lead {
    margin-bottom: 20px;
  }
  #broadcast .date {
    margin-bottom: 0px;
  }
  #broadcast .attention {
    margin-bottom: 25px;
    font-size: 12px;
  }
  #broadcast .detail > a {
    line-height: 1;
    padding-bottom: 2px;
    font-size: 16px;
    border-bottom: 1px solid #004EFF;
  }
}

#campaign {
  margin-top: -100px;
  padding-top: 100px;
}
#campaign .l-inner {
  padding-bottom: 75px;
}
#campaign .ttl {
  transform: translateY(-50%);
  margin-bottom: -50px;
}
#campaign .notice {
  width: 140px;
  margin: 40px auto 0px;
}
#campaign .catch {
  margin-bottom: 0px;
}
#campaign .image {
  margin-bottom: -10px;
}
#campaign .box-ttl {
  transform: translateY(60%);
}
#campaign .box-content {
  margin-bottom: 27px;
}
#campaign .button-submit {
  display: inline-block;
  margin-bottom: 39px;
  width: 26.25%;
}
#campaign .button-submit:hover {
  opacity: 0.8;
}
#campaign .limit {
  margin-bottom: 8px;
}
#campaign .text-01 {
  font-size: 16px;
  margin-bottom: 42px;
}
#campaign .detail button {
  line-height: 1;
  padding-bottom: 2px;
  color: #004EFF;
  font-size: 30px;
  font-weight: bold;
  border-bottom: 2px solid #004EFF;
}
#campaign .detail button:hover {
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  #campaign .l-inner {
    padding-bottom: 30px;
  }
  #campaign .ttl {
    transform: translateY(-50%);
    margin-bottom: 0px;
  }
  #campaign .notice {
    width: 60px;
    margin: -10px auto 15px;
  }
  #campaign .catch {
    margin-bottom: 10px;
  }
  #campaign .image {
    margin-bottom: 0px;
  }
  #campaign .box-ttl {
    transform: translateY(60%);
  }
  #campaign .box-content {
    margin-bottom: 15px;
  }
  #campaign .button-submit {
    display: inline-block;
    margin-bottom: 20px;
    width: 36.5217391304%;
  }
  #campaign .button-submit:hover {
    opacity: 0.8;
  }
  #campaign .limit {
    margin-bottom: 8px;
    font-size: 16px;
  }
  #campaign .text-01 {
    margin-bottom: 20px;
    font-size: 10px;
  }
  #campaign .detail button {
    line-height: 1;
    padding-bottom: 2px;
    font-size: 16px;
    border-bottom: 1px solid #004EFF;
  }
}

.footer {
  position: relative;
  padding: 66px 20px 40px;
  text-align: center;
  background: #470000;
  color: #fff;
}
.footer-gototop {
  position: absolute;
  width: 90px;
  top: 0;
  right: 45px;
  transform: translateY(-50%);
}
.footer-logo-rurouniYoshinoya {
  margin: 0 auto 31px;
  width: 433px;
}
.footer-copyright {
  margin-bottom: 31px;
  text-align: center;
  line-height: 1.25;
  font-size: 16px;
}
.footer-logo-brand {
  margin: 0 auto;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 51px 20px 16px;
  }
  .footer-gototop {
    width: 59px;
    right: 20px;
  }
  .footer-logo-rurouniYoshinoya {
    margin: 0 auto 12px;
    width: 283px;
  }
  .footer-copyright {
    margin-bottom: 15px;
    font-size: 10px;
  }
  .footer-logo-brand {
    width: 100px;
  }
  .footer-logo-brand a {
    display: block;
    width: 112px;
    margin: 0 auto;
  }
}

.c-modal-bg {
  background: #B81C25;
}

.c-btn-modal-close {
  top: -2px;
  left: inherit;
  right: -2px;
  width: 40px;
  height: 40px;
  padding: 0;
  transform: none;
}
.c-btn-modal-close:hover {
  opacity: 0.9;
}

.p-modal-content {
  width: 90%;
  max-width: 960px;
  padding: 0;
  border: 6px solid #470000;
  overflow-y: scroll;
  overflow-x: hidden;
}
.p-modal-content-inner {
  padding: 40px 30px 35px 30px;
}
.p-modal-content .ttl {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
  color: #470000;
}
.p-modal-content .list dl {
  color: #231815;
  font-size: 16px;
  margin-bottom: 30px;
}
.p-modal-content .list dt {
  margin-bottom: 1rem;
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  .c-btn-modal-close {
    top: -2px;
    left: inherit;
    right: -2px;
    width: 40px;
    height: 40px;
  }
  .p-modal-content {
    top: 0;
    transform: translateX(-50%);
    width: 85%;
    margin-top: 30px;
    height: calc(100vh - 100px);
    padding: 40px 20px;
    border: 6px solid #470000;
  }
  .p-modal-content-inner {
    padding: 0;
  }
  .p-modal-content .ttl {
    font-size: 30px;
    margin-bottom: 20px;
    color: #231815;
  }
  .p-modal-content .list dl {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .p-modal-content .list dt {
    margin-bottom: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */