@charset "UTF-8";
/**
 * Created Date: 2023-03-27 14:51:17
 * Author: 奥冨 菜月
 * -----
 * Last Modified: 2023-12-07 01:41:59
 * Modified By: 奥冨 菜月
 * -----
 * Copyright (c) 2023 FAIRWAY Corp.
 * -----
 * HISTORY:
 * Date               	By        	Comments
 * -------------------	----------	---------------------------------------------------------
 * -------------------	----------	---------------------------------------------------------
 */
/**
 * Created Date: 2022-02-09 12:47:10
 * Author: 奥冨 菜月
 * -----
 * Last Modified: 2025-07-17 15:03:53
 * Modified By: 奥冨 菜月
 * -----
 * Copyright (c) 2022 FAIRWAY Corp.
 * -----
 * HISTORY:
 * Date               	By        	Comments
 * -------------------	----------	---------------------------------------------------------
 * -------------------	----------	---------------------------------------------------------
 */
/*---------------------------------
  Google font
---------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&family=DotGothic16&family=Yomogi&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sigmar&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Squada+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Handlee&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik+Glitch&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
@font-face {
  font-family: "anton";
  src: url("../font/anton-v23-latin-regular.woff") format("woff"), url("../font/anton-v23-latin-regular.ttf") format("truetype");
}
/*---------------------------------
  カラーパレット
---------------------------------*/
/*---------------------------------
  mq（メディアクエリを呼び出す）
  $name
  $value
---------------------------------*/
/*---------------------------------
  白黒画像背景
  $url
  $coverColor
---------------------------------*/
/*---------------------------------
  影
---------------------------------*/
.shadow00 {
  box-shadow: none !important;
}

.shadow01 {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}

.shadow02 {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/*---------------------------------
  top共通
---------------------------------*/
.sTitle {
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.sText {
  letter-spacing: 1px;
  line-height: 32px;
}

/*---------------------------------
  battle_daily
---------------------------------*/
#battle_daily {
  position: relative;
  text-align: center;
}
#battle_daily #page_fv {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#battle_daily #page_fv::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 110%;
  height: 100%;
  z-index: -2;
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
  -webkit-animation: bg-color 10s infinite;
          animation: bg-color 10s infinite;
}
@-webkit-keyframes bg-color {
  0% {
    -webkit-filter: brightness(80%);
            filter: brightness(80%);
  }
  20% {
    -webkit-filter: brightness(70%);
            filter: brightness(70%);
  }
  40% {
    -webkit-filter: brightness(50%);
            filter: brightness(50%);
  }
  60% {
    -webkit-filter: brightness(60%);
            filter: brightness(60%);
  }
  80% {
    -webkit-filter: brightness(70%);
            filter: brightness(70%);
  }
  100% {
    -webkit-filter: brightness(80%);
            filter: brightness(80%);
  }
}
@keyframes bg-color {
  0% {
    -webkit-filter: brightness(80%);
            filter: brightness(80%);
  }
  20% {
    -webkit-filter: brightness(70%);
            filter: brightness(70%);
  }
  40% {
    -webkit-filter: brightness(50%);
            filter: brightness(50%);
  }
  60% {
    -webkit-filter: brightness(60%);
            filter: brightness(60%);
  }
  80% {
    -webkit-filter: brightness(70%);
            filter: brightness(70%);
  }
  100% {
    -webkit-filter: brightness(80%);
            filter: brightness(80%);
  }
}
#battle_daily #page_fv::after {
  background: url(../img/_texture/concrete.png) no-repeat center center/cover;
}
#battle_daily #page_fv h1 {
  font-size: 8rem;
  letter-spacing: 0.2rem;
  font-family: "anton", sans-serif;
  color: rgba(227, 225, 225, 0.8);
  margin: 0 0 2rem;
}
@media screen and (max-width: 991px) {
  #battle_daily #page_fv h1 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  #battle_daily #page_fv h1 {
    font-size: 3.4rem;
  }
}
#battle_daily #page_fv span {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  padding: 0 40px;
  letter-spacing: 1px;
  font-family: "Big Shoulders Display", cursive;
  color: rgba(227, 225, 225, 0.8);
}
@media screen and (max-width: 767px) {
  #battle_daily #page_fv span {
    font-size: 1rem;
  }
}
#battle_daily #page_fv span::before, #battle_daily #page_fv span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: rgba(227, 225, 225, 0.8);
}
#battle_daily #page_fv span::before {
  left: 0px;
}
#battle_daily #page_fv span::after {
  right: 0px;
}
#battle_daily #point {
  position: relative;
  z-index: 1;
}
#battle_daily #point .sTitle {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}
#battle_daily #point .sTitle::before, #battle_daily #point .sTitle::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #171515;
}
#battle_daily #point .sTitle::before {
  margin-right: 15px;
}
#battle_daily #point .sTitle::after {
  margin-left: 15px;
}
#battle_daily #point .pointBox {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}
#battle_daily #point .pointBox p {
  color: #ACA5A6;
}
#battle_daily #point .pointBox p + h5 {
  margin-top: 32px;
}
#battle_daily #site #dailySite .card {
  border: 0;
  margin-bottom: 3rem;
  background-color: #E3E1E1;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
#battle_daily #site #dailySite .img {
  display: inline-block;
  text-align: center;
}
#battle_daily #site #dailySite .img img {
  width: 64px;
}
#battle_daily #site #dailySite .card-title {
  font-family: "anton", sans-serif;
}
#battle_daily #entry {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#battle_daily #entry::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(69, 7, 13, 0.7);
}
#battle_daily #entry::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 110%;
  height: 100%;
  z-index: -2;
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
  background: url(../img/_texture/concrete.png) no-repeat center center/cover;
}
#battle_daily #entry .sTitle {
  font-size: 4rem;
  color: #ACA5A6;
}
#battle_daily #match {
  position: relative;
  z-index: 1;
}
#battle_daily #match img {
  box-shadow: 0 0 8px rgba(13, 13, 13, 0.5);
}
#battle_daily #step .stepBox {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  gap: 8px;
  margin-top: 58px;
}
#battle_daily #step .stepBox .stepCont {
  position: relative;
  border: 1px solid #26292c;
  background-color: rgba(255, 255, 255, 0.9);
  width: calc(50% - 8px);
  padding: 16px 24px 16px 56px;
  margin-bottom: 8px;
  text-align: left;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #battle_daily #step .stepBox .stepCont {
    width: 100%;
  }
}
#battle_daily #step .stepBox .stepCont .stepNum {
  position: absolute;
  top: 4px;
  left: 8px;
  display: inline-block;
  line-height: 1;
  font-weight: bold;
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(13, 13, 13, 0);
  text-shadow: -2px -2px 0 #B62D41;
  -webkit-text-stroke: 1px #26292c;
  text-stroke: 1px #26292c;
}
#battle_daily #step .stepBox .stepCont small {
  color: #7f7f7f;
}
#battle_daily #banner img {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=battle_daily.css.map */