@charset "UTF-8";
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: #231916;
  text-decoration: none;
  transition: all 0.4s;
}

*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #231916;
  background-color: #010101;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

.container,
.container-sm {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container,
  .container-sm {
    width: 94.5%;
  }
}

.container {
  max-width: 1000px;
}

.container-sm {
  max-width: 700px;
}

/* --------------------------------------------
共通 
---------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.siteHeader {
  display: flex;
  align-items: center;
  height: 120px;
}
@media screen and (max-width: 768px) {
  .siteHeader {
    height: 100px;
  }
}
@media screen and (max-width: 500px) {
  .siteHeader {
    height: 75px;
  }
}

.siteHeader_logo {
  position: relative;
  display: inline-block;
  left: 18%;
}
@media screen and (max-width: 768px) {
  .siteHeader_logo {
    left: 3%;
  }
}
@media screen and (max-width: 500px) {
  .siteHeader_logo {
    left: -8%;
  }
}
.siteHeader_logo::before {
  content: "";
  position: absolute;
  top: -75%;
  bottom: -75%;
  left: -50%;
  right: -52%;
  background-image: url("../../../assets/images/header_bg.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .siteHeader_logo::before {
    top: -80%;
    bottom: -80%;
    left: -60%;
    right: -62%;
    background-image: url("../../../assets/images/header_bg-sp.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 500px) {
  .siteHeader_logo::before {
    top: -80%;
    bottom: -80%;
    left: -27%;
    right: -29%;
  }
}
.siteHeader_logo img {
  display: block;
  max-width: 350px;
  width: 60%;
  transform: translateY(-55%);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .siteHeader_logo img {
    width: 55%;
    transform: translateY(-65%);
  }
}
@media screen and (max-width: 500px) {
  .siteHeader_logo img {
    width: 40%;
    transform: translateY(-60%);
  }
}

.section_padding {
  padding-top: 200px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .section_padding {
    padding: 40px 0 40px;
  }
}

.small {
  font-size: 1.5rem;
}
@media screen and (max-width: 1220px) {
  .small {
    font-size: 1.4rem;
    letter-spacing: -0.1em;
  }
}
@media screen and (max-width: 1090px) {
  .small {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 820px) {
  .small {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 500px) {
  .small {
    font-size: 1.3rem;
  }
}

.font_weight_500 {
  font-weight: 500;
}

/* --------------------------------------------
KV 
---------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 1100px;
  padding: 0 5vw;
}
@media screen and (max-width: 1024px) {
  #hero {
    height: 135vw;
    min-height: unset;
    max-height: unset;
    overflow: hidden;
  }
}
#hero .container {
  max-width: 1200px;
}

/* アニメーション */
#hero picture img {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0s;
}

#hero.is-loaded picture img {
  opacity: 1;
  transform: translateY(0);
}

/* delay
-------------------------------- */
#hero picture.delay-1 img {
  transition-delay: 0.4s;
}

.hero_bg_video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}

.hero_content {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  height: calc(100% - 100px);
}
@media screen and (max-width: 768px) {
  .hero_content {
    height: 100%;
  }
}

.hero_copy {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  transform: translateY(-40%);
  width: 83%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .hero_copy {
    transform: translateY(-60%);
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hero_copy {
    transform: translateY(-55%);
  }
}

.hero_deco_fukidashi {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  width: 1100px;
  max-width: 90%;
  transform: translateY(4%);
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .hero_deco_fukidashi {
    transform: translateY(30%);
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hero_deco_fukidashi {
    transform: translateY(35%);
  }
}

.hero_deco_item {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  transform: translateY(20%);
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .hero_deco_item {
    transform: translateY(33%);
  }
}
@media screen and (max-width: 768px) {
  .hero_deco_item {
    transform: translateY(38%);
  }
}

.hero_deco_fukidashi,
.hero_deco_item {
  grid-area: 1/1;
}

/* --------------------------------------------
激辛企画
---------------------------------------------*/
#intro {
  background-color: #010101;
  background-image: url(../../../assets/images/intro_bg_item.png);
  background-position: top 0 right 25%;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  z-index: 99;
}
#intro .section_padding {
  padding-top: 0px;
  padding-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #intro .section_padding {
    padding: 40px 0;
  }
}

.intro_txt_img {
  display: block;
  width: 750px;
}
@media screen and (max-width: 1024px) {
  .intro_txt_img {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .intro_txt_img {
    width: 80%;
    margin: 0 auto;
  }
}
.intro_txt_img img {
  width: 100%;
}

/* --------------------------------------------
商品一覧 
---------------------------------------------*/
/*　背景色 */
.bg_color_umakara,
.bg_color_chuukara,
.bg_color_karakuchi,
.bg_color_gekikara,
.bg_color_gokukara {
  background-repeat: repeat-y;
  background-position: top left, top right;
  background-size: 15vw auto;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .bg_color_umakara,
  .bg_color_chuukara,
  .bg_color_karakuchi,
  .bg_color_gekikara,
  .bg_color_gokukara {
    background-image: none !important;
  }
}

.bg_color_umakara {
  background-color: #eabd00;
  background-image: url("../../images/fire_bg_yellow_l.png"), url("../../images/fire_bg_yellow_r.png");
}

.bg_color_chuukara {
  background-color: #d78214;
  background-image: url("../../images/fire_bg_orange_l.png"), url("../../images/fire_bg_orange_r.png");
}

.bg_color_karakuchi {
  background-color: #c83b19;
  background-image: url("../../images/fire_bg_red_l.png"), url("../../images/fire_bg_red_r.png");
}
.bg_color_karakuchi .products_item_copy {
  color: #fff000;
}

.bg_color_gekikara {
  background-color: #9e2227;
  background-image: url("../../images/fire_bg_darkred_l.png"), url("../../images/fire_bg_darkred_r.png");
}
.bg_color_gekikara .products_item_copy {
  color: #fff000;
}
.bg_color_gekikara .products_item_txt {
  color: #fffdfa;
}

.bg_color_gokukara {
  background-color: #311a1c;
  background-image: url("../../images/fire_bg_black_l.png"), url("../../images/fire_bg_black_r.png");
}
.bg_color_gokukara .products_item_copy {
  color: #fff000;
}
.bg_color_gokukara .products_item_txt {
  color: #fffdfa;
}

.products_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 30px + 20 * (100vw - 769px) / 431, 60px) 50px;
}
@media screen and (max-width: 1090px) {
  .products_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .products_list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.products_item_wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .products_item_wrap img {
    width: 80%;
    max-height: 40vw;
    margin: auto;
    aspect-ratio: unset;
    object-fit: contain;
  }
}
@media screen and (max-width: 768px) {
  .products_item_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: end;
  }
}
@media screen and (max-width: 500px) {
  .products_item_wrap {
    grid-template-columns: 1fr 55%;
  }
}

.products_item_copy {
  padding: 20px 0 15px;
  color: #c50219;
}
@media screen and (max-width: 768px) {
  .products_item_copy {
    padding: 0 0 15px;
  }
}

.products_item_txt {
  font-size: clamp(1.7rem, 1.8vw, 1.8rem);
}
@media screen and (max-width: 768px) {
  .products_item_txt {
    font-size: clamp(1.4rem, 2.6vw, 1.6rem);
  }
}
@media screen and (max-width: 600px) {
  .products_item_txt {
    font-size: 1.3rem;
  }
}

.products_item_copy,
.products_item_txt {
  font-weight: 800;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .products_item_copy,
  .products_item_txt {
    padding-bottom: 1vw;
  }
}
@media screen and (max-width: 500px) {
  .products_item_copy,
  .products_item_txt {
    line-height: 1.4;
  }
}

/* --------------------------------------------
取り扱い店舗
---------------------------------------------*/
#info {
  position: relative;
  padding: 100px 0 10px;
  background-color: #c50219;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 40px 0;
  }
}
#info .ttl_img {
  display: block;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #info .ttl_img {
    width: 75%;
  }
}
#info .ttl_img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #info .container {
    width: 83%;
  }
}

/* アコーディオン */
.accordion {
  padding: 13rem 0 5.5rem;
  padding-top: 7rem;
}
@media screen and (max-width: 768px) {
  .accordion {
    padding: 40px 0 0;
  }
}

.option {
  position: relative;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .option {
    font-size: 1.6rem;
  }
}

.toggle {
  display: none;
}

.title {
  display: block;
  font-weight: 500;
  line-height: 1.7;
  background-color: #fffdfa;
  border: solid 2px #231916;
  padding: 1.5rem 3rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .title {
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
  }
}

/* トグル+-　*/
.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 4rem;
  top: 2.2rem;
  width: 0.2rem;
  height: 2rem;
  background-color: #231916;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .title::after,
  .title::before {
    right: 3rem;
    width: 0.2rem;
    height: 1.4rem;
  }
}

/* ▶︎エリア名　*/
.area_ttl {
  padding: 3rem 2rem 2rem;
  font-weight: 700;
  border-bottom: solid 2px #fffdfa;
}
@media screen and (max-width: 768px) {
  .area_ttl {
    padding: 2rem 0.4rem;
    font-size: 1.6rem;
  }
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media screen and (max-width: 950px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 650px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.area {
  display: grid;
  font-size: clamp(1.6rem, 0.0723rem + 1.6064vw, 2rem);
  background-color: #f3d97c;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 950px) {
  .area {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .area {
    font-size: 1.6rem;
  }
}
.area:hover {
  opacity: 0.8;
}
.area a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 1.5rem 0;
  color: #231916;
  line-height: 2;
  text-align: center;
  text-decoration: none;
}

/* 動作　*/
.title::after {
  transform: rotate(90deg);
}

.toggle:checked + .title + .content {
  max-height: 10000px;
  transition: all 1.5s;
}

.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  color: #fffdfa;
}

/*---------------------------------------------
majica_ucs
---------------------------------------------*/
.promotion {
  padding: clamp(4rem, 4rem + 6 * (100vw - 37.5rem) / 82.5, 10rem) 0;
  position: relative;
  font-size: 115%;
  overflow: hidden;
  background-color: #fffdfa;
  background-image: url("../../../assets/images/promotion_bg.png");
  background-size: contain;
}
.promotion > * {
  position: relative;
  z-index: 1;
}
.promotion section {
  padding: 0;
}

#majica_ucs ul {
  list-style: none !important;
}

#majica_ucs a {
  text-decoration: none;
  color: #fff;
}

body #majica_ucs {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  font-size: 1.8em;
}
@media screen and (max-width: 768px) {
  body #majica_ucs {
    font-size: 1.6em;
    overflow: hidden;
  }
}

#majica_ucs {
  color: #333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 62.5% !important;
  line-height: 1.5 !important;
}

/* hover */
#box_m a:hover,
#box_u a:hover {
  opacity: 0.5;
  transition: 0.3s;
}

/* majica */
#box_m {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  background: #fff;
  border: 7px solid #e60011;
  border-radius: 15px;
}

.title_m {
  display: flex;
  padding-top: 3.4em;
  width: calc(100% - 4em);
  margin: 0 auto;
}

.h2logo_m {
  width: calc(20% - 1em);
  margin: 0 1em 0 0;
}

.img_title_m {
  padding-top: 1em;
  width: 80%;
  height: 80%;
}

.h2logo_m img,
.img_title_m img {
  width: 100%;
  height: 100%;
}

.img_main_m img,
.img_main_m_smf img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img_main_m_smf {
  display: none;
}

.a_boxm01 {
  position: relative;
  display: block;
  width: 286px;
  margin: 1.7em auto 1em auto;
  padding: 15px 0;
  color: #fff;
  font-size: 1.6em;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgb(230, 0, 17);
  background: linear-gradient(40deg, rgb(230, 0, 17) 0%, rgb(231, 0, 49) 71%, rgb(255, 120, 127) 100%);
  border-radius: 50px;
}

.app_m {
  display: none;
}

.p_app_m {
  display: none;
  position: relative;
  background: #e60011;
  width: 33%;
  height: 190px;
  padding-top: 43em;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.p_app_m span {
  padding-top: 1em;
  font-size: 2.5em;
}

.p_app_m:before {
  position: absolute;
  content: "";
  top: 0;
  right: -40px;
  border-style: solid;
  border-width: 95px 0 95px 40px;
  border-color: transparent transparent transparent #e60011;
}

.app_inner_m {
  width: 67%;
  background: #f2f2f2;
  border-radius: 10px;
}

.app_inner_m ul {
  justify-content: center;
  align-items: center;
  padding: 3em 0 2em 0;
}

.app_inner_m ul li img {
  width: 100%;
  max-height: 70px;
}

.app_inner_m ul li:first-child {
  margin-right: 2em;
}

.p_note_m {
  justify-content: center;
  align-items: center;
  font-size: 1.4em;
  text-align: left;
}

.app_m02 {
  display: flex;
  grid-column: 1/3;
}

.p_app_m02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #e60011;
  width: 25%;
  height: 100%;
  min-height: 160px;
  padding: 4em 0;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.p_app_m02 span {
  width: 300px;
  display: block;
  padding-top: 0.5em;
  letter-spacing: 1px;
  font-size: 1.8em;
}

.p_app_m02:before {
  position: absolute;
  content: "";
  top: 0;
  right: -45px;
  border-style: solid;
  border-width: 85px 0 85px 45px;
  border-color: transparent transparent transparent #e60011;
}

.app_inner_m02 {
  width: 75%;
  background: #f2f2f2;
  border-radius: 0 0 10px 0;
}

.app_inner_m02 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.7em 0 1.5em 3em;
}

.app_inner_m02 ul li img {
  width: 100%;
  max-height: 60px;
}

.app_inner_m02 ul li:first-child {
  margin-right: 2em;
}

.p_note_m02 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  text-align: left;
}

/* majica tab */
@media screen and (max-width: 1040px) {
  .box_r_m {
    display: none;
  }
  #box_m {
    display: block;
    grid-template-columns: 0;
    width: calc(100% - 3em);
    max-width: 680px;
    margin: 0 auto 0.5em auto;
    border: 5px solid #e60011;
    border-radius: 15px;
    padding: 0 !important;
  }
  .title_m {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.3em;
    width: calc(100% - 4em);
    max-width: 650px;
    margin: 0 auto;
  }
  .h2logo_m {
    width: calc(20% - 1.1em);
    margin: 1.3em 1.1em 0.1em 0;
  }
  .img_title_m {
    padding-top: 2.3em;
  }
  .img_main_m {
    display: none;
  }
  .img_main_m_smf {
    display: block;
    width: 100%;
    height: 100%;
  }
  .a_boxm01 {
    width: 100%;
    max-width: 320px;
    margin: 1.8em auto;
    padding: 15px 0;
    font-size: 1.6em;
  }
  .a_boxm01:before {
    width: 20px;
    height: 20px;
    top: 20px;
    right: 20px;
  }
  .p_app_m {
    height: 190px;
    padding-top: 5.5em;
  }
  .p_app_m span {
    display: block;
    padding-top: 1em;
    font-size: 1.6em;
  }
  .p_app_m:before {
    top: 0;
    right: -30px;
    border-width: 95px 0 95px 30px;
  }
  .app_inner_m {
    padding: 0 1.5em 0 4.5em;
    border-radius: 0 0 10px 0;
  }
  .app_inner_m ul {
    padding: 30px 0 20px 0px;
  }
  .app_inner_m ul li img {
    width: 100%;
    max-height: 70px;
  }
  .app_inner_m ul li:first-child {
    margin-right: 1em;
  }
  .p_note_m {
    font-size: 1.4em;
  }
}
/* majica smf */
@media screen and (max-width: 750px) {
  .title_m {
    max-width: 520px;
    padding: 0.3em 0 0.3em 0;
    width: calc(100% - 3em);
  }
  .h2logo_m {
    width: calc(20% - 0.6em);
    margin: 0.7em 0.6em 0.1em 0;
  }
  .img_title_m {
    padding-top: 1.2em;
  }
  .a_boxm01 {
    width: calc(100% - 2em);
    max-width: 320px;
    margin: 1.5em auto;
    padding: 13px 0;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .a_boxm01:before {
    width: 14px;
    height: 14px;
    top: calc(50% - 7px);
    right: 10px;
  }
  .app_m02 {
    display: none;
  }
  .app_m {
    display: block;
  }
  .p_app_m {
    display: block;
    width: 100%;
    height: 45px;
    padding-top: 1.3em;
    text-align: center;
  }
  .p_app_m span {
    display: inline;
    padding-top: 0;
    font-size: 1.4em;
  }
  .p_app_m:before {
    content: none;
  }
  .app_inner_m {
    width: 100%;
    padding: 0.5em 1.5em 1.1em 1.5em;
    border-radius: 0 0 10px 10px;
  }
  .app_inner_m ul {
    display: flex;
    padding: 1em 0 1.1em 0px;
  }
  .app_inner_m ul li img {
    width: 100%;
    max-height: 70px;
  }
  .p_note_m {
    display: flex;
  }
  .p_note_m {
    font-size: 1.3em;
  }
}
/* ucs */
#box_u {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  width: 100%;
  max-width: 1020px;
  margin: 4em auto 0px auto;
  background: #fff;
  border: 7px solid #e85504;
  border-radius: 15px;
  padding: 0 !important;
}

.box_r_u {
  background: #f2f2f2;
  border-radius: 0 11px 11px 0;
}

.title_u {
  display: flex;
  width: calc(100% - 5em);
  margin: 0 auto 1.5em auto;
}

.h2logo_u {
  width: calc(17% - 1.3em);
  margin: 2.2em 1.3em 0px 0;
}

.img_title_u {
  padding-top: 4.5em;
  width: 82%;
  height: 82%;
}

.main_u {
  width: 100%;
}

.img_main_u {
  width: 100%;
  object-fit: contain;
}

.img_main_u_smf {
  display: none;
}

.a_boxu01,
.a_boxu02 {
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 1.6em auto 0 auto;
  padding: 15px 0;
  font-size: 1.3em;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgb(233, 85, 4);
  background: linear-gradient(40deg, rgb(233, 85, 4) 0%, rgb(233, 85, 4) 59%, rgb(239, 151, 0) 94%);
  border-radius: 50px;
}

.a_boxu01 {
  max-width: 300px;
}

.a_boxu02 {
  margin: 1.3em auto 2em auto;
}

.h3_campaign_u {
  position: relative;
  padding: 0.5em 0 0 0;
  font-weight: 700;
  font-size: 18px;
  color: #e85504;
}

.span01_h3u,
.span02_h3u {
  position: relative;
  display: inline-block;
  padding: 0.3em 0.2em 0.2em 1em;
  background: #f2f2f2;
  z-index: 999;
}

.span02_h3u {
  font-size: 0.7em;
  padding: 0.4em 1em 0.4em 0;
}

.h3_campaign_u:before {
  position: absolute;
  content: "";
  width: calc(100% + 2em);
  background: #e85504;
  height: 2px;
  top: 1.4em;
  left: -1em;
}

.campaign_u {
  width: 100%;
  padding: 1.5em 2em 0 2em;
}

.campaign_u ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.campaign_u ul li {
  width: calc(50% - 0.4em);
  margin-top: 1.5em;
  margin-right: 0.8em;
}

.campaign_u ul li:nth-child(2n) {
  margin-right: 0;
}

/* ucs tab */
@media screen and (max-width: 1040px) {
  #box_u {
    display: block;
    grid-template-columns: 0;
    width: calc(100% - 3em);
    max-width: 680px;
    margin: 3.5em auto 0 auto;
    border: 5px solid #e85504;
    border-radius: 15px;
  }
  .box_r_u {
    border-radius: 0 0 11px 11px;
  }
  .title_u {
    justify-content: center;
    align-items: center;
    width: calc(100% - 4em);
    max-width: 740px;
    margin: 0 auto;
    padding: 1.5em 0 1em 0;
  }
  .h2logo_u {
    width: calc(19% - 2em);
    margin: 0 1em 0 0;
  }
  .h2logo_u img {
    max-height: 100px;
  }
  .img_title_u {
    padding-top: 2em;
    width: calc(81% - 1em);
    margin: 0 1em 1em 0;
  }
  .img_main_u {
    display: none;
  }
  .img_main_u_smf {
    display: block;
    width: 100%;
    height: 100%;
  }
  .a_boxu01,
  .a_boxu02 {
    width: calc(100% - 2em);
    max-width: 390px;
    margin: 1.8em auto;
    padding: 15px 0;
  }
  .a_boxu02 {
    max-width: 320px;
  }
  .a_boxu01:before,
  .a_boxu02:before {
    width: 18px;
    height: 18px;
    top: calc(50% - 9px);
    right: 13px;
  }
  .h3_campaign_u {
    padding: 0.7em 1em 0 1em;
  }
  .span01_h3u {
    padding: 0.1em 2em 0 2em;
  }
  .span02_h3u {
    display: block;
  }
  .h3_campaign_u:before {
    top: 1.5em;
    width: calc(100% + 2em);
    left: -1em;
  }
  .campaign_u {
    width: 100%;
    padding: 1em 1.5em 0.5em 1.5em;
  }
  .campaign_u ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
  }
  .campaign_u ul li {
    width: calc(50% - 0.3em);
    margin-top: 0.6em;
    margin-right: 0.6em;
  }
  .campaign_u ul li:nth-child(2n) {
    margin-right: 0;
  }
}
/* ucs smf */
@media screen and (max-width: 750px) {
  .title_u {
    justify-content: center;
    align-items: center;
    width: calc(100% - 3em);
    max-width: 540px;
    padding: 1em 0 0.7em 0;
  }
  .h2logo_u {
    width: calc(18% - 0.6em);
    margin: 0 0.6em 0 0;
  }
  .h2logo_u img {
    max-height: 70px;
  }
  .img_title_u {
    padding-top: 0.8em;
    width: 82%;
    margin: 0 0 0.3em 0;
  }
  .a_boxu01,
  .a_boxu02 {
    margin: 1.5em auto;
    padding: 13px 0;
    font-size: 1.3em;
    letter-spacing: 0;
  }
  .a_boxu01 {
    max-width: 320px;
    padding: 8px 0;
  }
  .a_boxu01 span {
    display: block;
  }
  .a_boxu01:before,
  .a_boxu02:before {
    width: 14px;
    height: 14px;
    top: calc(50% - 7px);
    right: 10px;
  }
  .a_boxu02 {
    margin: 1.1em auto 1.2em auto;
  }
  .h3_campaign_u {
    font-size: 1.6em;
    padding: 0.5em 0.5em 0 0.5em;
  }
  .span01_h3u {
    padding: 0 1em 0 1em;
  }
  .h3_campaign_u:before {
    top: 1.2em;
    width: calc(100% + 1.4em);
    left: -0.6em;
  }
  .campaign_u {
    padding: 0.6em 0.8em 0.1em 0.8em;
  }
  .campaign_u ul li {
    width: calc(50% - 0.4em);
    margin-top: 0.6em;
  }
  .campaign_u ul li:nth-child(2n) {
    margin-right: 0;
  }
}
/*---------------------------------------------
TOPへ戻る
---------------------------------------------*/
.page_top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  position: fixed;
  bottom: 10px;
  right: 30px;
  width: 20%;
  max-width: 120px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .page_top {
    max-width: 90px;
    width: 25%;
    right: 7px;
  }
}
.page_top a {
  z-index: 1000;
}
@media screen and (max-width: 500px) {
  .page_top a {
    width: 18%;
    right: 20px;
  }
}
.page_top.is-show {
  opacity: 1;
  visibility: visible;
}

/*---------------------------------------------
フッター
---------------------------------------------*/
/* コピーライト */
.footer {
  position: relative;
  background-color: #fffdfa;
}

.footer_top {
  display: block;
  transform: translateY(1px);
}
.footer_top img {
  display: block;
  width: 100%;
  height: auto;
}

.copyright {
  position: relative;
  z-index: 1;
  padding: 10px 0 40px;
  font-size: clamp(1.1rem, 0.506rem + 0.77vw, 1.8rem);
  font-weight: 300;
  color: #fffdfa;
  text-align: center;
  background: #231916;
}
@media screen and (max-width: 768px) {
  .copyright {
    padding: 10px 0;
  }
}

.fadeIn {
  animation-fill-mode: both;
  animation-duration: 2s;
  animation-name: fadeIn;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInLeft {
  animation-fill-mode: both;
  animation-duration: 1.25s;
  animation-name: fadeInLeft;
  visibility: visible !important;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.products_item__header.fadeInRight::before {
  animation-fill-mode: both;
  animation-duration: 1.25s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  animation-name: fadeInRight;
  visibility: visible !important;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInBottom {
  animation-fill-mode: both;
  animation-duration: 1.25s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  animation-name: fadeInBottom;
  visibility: visible !important;
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInTop {
  animation-fill-mode: both;
  animation-duration: 1.25s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  animation-name: fadeInTop;
  visibility: visible !important;
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.products_item__header.left.fadeIn::before {
  animation: productsPlateInLeft 1.25s ease both;
}

@keyframes productsPlateInLeft {
  0% {
    opacity: 0;
    transform: translate(40px, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 50px);
  }
}
.products_item__header.right.fadeIn::before {
  animation: productsPlateInRight 1.25s ease both;
}

@keyframes productsPlateInRight {
  0% {
    opacity: 0;
    transform: translate(-40px, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 50px);
  }
}
.header_rotate-left {
  transform: rotate(-5deg);
  background-position: center bottom;
  transform-origin: top right;
}

.header_rotate-right {
  transform: rotate(5deg);
  background-position: center bottom;
  transform-origin: top left;
}

.header_fire_wrap {
  --fixed-top: -80px;
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-color: #010101;
  z-index: 100;
  background-position: top left, top right;
  background-size: 15vw auto;
  background-attachment: fixed;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  .header_fire_wrap {
    --fixed-top: -20px;
    background-image: none !important;
  }
}
.header_fire_wrap:before {
  background-position: top left, top right;
  background-size: 15vw auto;
  background-attachment: fixed;
  background-repeat: repeat-y;
  content: "";
  position: absolute;
  display: block;
  top: 95%;
  width: 100%;
  height: calc(15% + 5vw);
  margin-top: -2px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .header_fire_wrap:before {
    display: none;
  }
}
.header_fire_wrap.is-fixed {
  position: fixed;
  height: fit-content;
  top: 0;
  left: 0;
  transition: all 0.3s;
  top: var(--fixed-top);
}
@media screen and (max-width: 768px) {
  .header_fire_wrap.is-fixed {
    top: -20px;
  }
}
.header_fire_wrap.is-fadeout {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.header_fire_wrap__black {
  background-color: #010101;
}
.header_fire_wrap__yellow {
  background-color: #eabd00;
  background-image: url("../../images/fire_bg_yellow_l.png"), url("../../images/fire_bg_yellow_r.png");
}
.header_fire_wrap__yellow:before {
  background-color: #eabd00;
  background-image: url("../../images/fire_bg_yellow_l.png"), url("../../images/fire_bg_yellow_r.png");
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0%);
}
.header_fire_wrap__orange {
  background-color: #d78214;
  background-image: url("../../images/fire_bg_orange_l.png"), url("../../images/fire_bg_orange_r.png");
}
.header_fire_wrap__orange:before {
  background-color: #d78214;
  background-image: url("../../images/fire_bg_orange_l.png"), url("../../images/fire_bg_orange_r.png");
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}
.header_fire_wrap__red {
  background-color: #c83b19;
  background-image: url("../../images/fire_bg_red_l.png"), url("../../images/fire_bg_red_r.png");
}
.header_fire_wrap__red:before {
  background-color: #c83b19;
  background-image: url("../../images/fire_bg_red_l.png"), url("../../images/fire_bg_red_r.png");
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0%);
}
.header_fire_wrap__darkred {
  background-color: #9e2227;
  background-image: url("../../images/fire_bg_darkred_l.png"), url("../../images/fire_bg_darkred_r.png");
}
.header_fire_wrap__darkred:before {
  background-color: #9e2227;
  background-image: url("../../images/fire_bg_darkred_l.png"), url("../../images/fire_bg_darkred_r.png");
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.header_fire_placeholder {
  display: block;
  width: 100%;
  height: 0;
}

.header_fire_placeholder.is-active {
  display: block;
}

.hero_fire {
  position: absolute !important;
  bottom: 0;
  transform-origin: top right !important;
  background-image: url("../../images/fire_hero_bottom.png");
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .hero_fire {
    background-size: 33.333%;
    transform: rotate(5deg) !important;
    transform-origin: top right !important;
    height: 30vw;
    margin-bottom: -18vw;
  }
}
.hero_fire:after {
  content: "";
  display: block;
  width: 110%;
  height: 200px;
  background: #010101;
  position: absolute;
  top: 99%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .hero_fire:after {
    top: 42%;
    height: 100px;
  }
}

.header_fire {
  position: relative;
  width: 110%;
  height: 158px;
  padding-bottom: 100px;
  left: -5%;
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: top;
}
@media screen and (max-width: 768px) {
  .header_fire {
    background-size: 33.333%;
    transform: rotate(-5deg);
    transform-origin: top right;
    height: 30vw;
    margin-bottom: -18vw;
  }
}
.header_fire__yellow {
  background-image: url("../../images/header_fire_yellow.png");
  background-color: #010101;
}
@media screen and (max-width: 768px) {
  .header_fire__yellow {
    background-image: url("../../images/header_fire_yellow.png"), linear-gradient(to bottom, transparent 0%, transparent 35%, #eabd00 35%, #eabd00 100%);
  }
}
.header_fire__orange {
  background-image: url("../../images/header_fire_orange.png");
}
@media screen and (max-width: 768px) {
  .header_fire__orange {
    background-image: url("../../images/header_fire_orange.png"), linear-gradient(to bottom, transparent 0%, transparent 35%, #d78214 35%, #d78214 100%);
  }
}
.header_fire__red {
  background-image: url("../../images/header_fire_red.png");
}
@media screen and (max-width: 768px) {
  .header_fire__red {
    background-image: url("../../images/header_fire_red.png"), linear-gradient(to bottom, transparent 0%, transparent 35%, #c83b19 35%, #c83b19 100%);
  }
}
.header_fire__darkred {
  background-image: url("../../images/header_fire_darkred.png");
}
@media screen and (max-width: 768px) {
  .header_fire__darkred {
    background-image: url("../../images/header_fire_darkred.png"), linear-gradient(to bottom, transparent 0%, transparent 35%, #9e2227 35%, #9e2227 100%);
  }
}
.header_fire__black {
  background-image: url("../../images/header_fire_black.png");
}
@media screen and (max-width: 768px) {
  .header_fire__black {
    background-image: url("../../images/header_fire_black.png"), linear-gradient(to bottom, transparent 0%, transparent 35%, #311a1c 35%, #311a1c 100%);
  }
}

.section_header {
  position: relative;
  width: 110%;
  left: -5%;
  height: 80px;
  background: url("../../images/header_bg-black.png");
  background-position: center;
  background-size: cover;
  background-repeat: repeat-x;
  display: flex;
  align-items: center;
  padding: 0 20%;
}
@media screen and (max-width: 768px) {
  .section_header {
    transform: rotate(0deg) !important;
    transform-origin: bottom right !important;
    background-position: bottom 0 left 0;
    background-size: 500% 70%;
    background-repeat: no-repeat !important;
    height: fit-content;
    width: 100%;
    left: 0%;
    padding: 1.5rem 6%;
  }
}
.section_header.section_header-white {
  background: url("../../images/header_bg-white.png");
}
@media screen and (max-width: 768px) {
  .section_header.section_header-white {
    background-position: bottom 0 left 0;
    background-size: 500% 70%;
  }
}
.section_header .section_ttl {
  position: absolute;
  inset: 0;
  width: 90vw;
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .section_header .section_ttl {
    width: 100%;
    position: relative;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .section_header .section_ttl .section_heading {
    height: 24vw;
  }
  .section_header .section_ttl .section_heading img {
    height: 100%;
  }
}
.section_header .section_ttl .section_level_wrap {
  display: contents;
}
@media screen and (max-width: 768px) {
  .section_header .section_ttl .section_level_wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 75%;
  }
}
.section_header .section_ttl .section_level {
  margin-left: auto;
  padding-left: 1rem;
}
.section_header .section_ttl .section_fire {
  display: flex;
  gap: 4%;
}

/* 光ってフェードイン */
.fade-bright {
  opacity: 0;
  filter: blur(6px) brightness(0.6);
}
.fade-bright.is-active {
  animation: fade-bright 0.7s ease-out forwards;
}

@keyframes fade-bright {
  0% {
    opacity: 0;
    filter: blur(6px) brightness(0.6);
  }
  50% {
    opacity: 1;
    filter: blur(2px) brightness(1.8);
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
  }
}
.fire {
  display: block;
  opacity: 0;
  transform: scale(0.2, 0.1);
  transform-origin: center bottom;
  filter: blur(6px) brightness(0.6);
  will-change: transform, opacity, filter;
}

.section_fire.is-active .fire-ignite {
  animation: fire-ignite 0.7s ease-out forwards, fire-shake 0.18s ease-in-out 0.5s infinite;
}

@keyframes fire-ignite {
  0% {
    opacity: 0;
    transform: scale(0.2, 0.1);
    filter: blur(6px) brightness(0.6);
  }
  50% {
    opacity: 1;
    transform: scale(1.2, 0.7);
    filter: blur(2px) brightness(1.8);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
    filter: blur(0) brightness(1);
  }
}
@keyframes fire-shake {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(-1px, -1px) rotate(-1.2deg) scale(1.02, 0.98);
  }
  40% {
    transform: translate(1px, 0) rotate(1deg) scale(0.99, 1.02);
  }
  60% {
    transform: translate(-1px, -2px) rotate(-0.8deg) scale(1.01, 0.99);
  }
  80% {
    transform: translate(1px, -1px) rotate(1.4deg) scale(0.98, 1.01);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}