@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: #c83b27;
  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: 920px;
}

.container-sm {
  max-width: 700px;
}

/* --------------------------------------------
共通 
---------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fffdfa;
}

.siteHeader {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1800px;
  width: 78%;
  height: 8rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .siteHeader {
    width: calc(100% - 4rem);
    height: 5.5rem;
  }
}

.siteHeader_logo {
  display: block;
}
.siteHeader_logo img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .siteHeader_logo img {
    max-width: 180px;
  }
}

.section_padding {
  padding: clamp(2rem, 2rem + 4 * (100vw - 37.5rem) / 82.5, 6rem) 0 clamp(4rem, 4rem + 6 * (100vw - 37.5rem) / 82.5, 10rem);
}

/* --------------------------------------------
KV 
---------------------------------------------*/
#hero {
  width: 100%;
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  #hero {
    padding-top: 5.5rem;
  }
}

#lottie-animation {
  width: 100%;
}

#lottie-animation svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------
名古屋コラボ飯 
---------------------------------------------*/
#intro {
  background-color: #c83b27;
}

.intro_slider {
  overflow: hidden;
  width: 100%;
}

.intro_slider_track {
  display: flex;
  width: max-content;
  animation: introLoop 30s linear infinite;
}
.intro_slider_track img {
  display: block;
  width: 2250px;
  height: auto;
  flex-shrink: 0;
}
@keyframes introLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .intro_slider_track img {
    width: 75%;
    max-width: 1690px;
  }
}
@media screen and (max-width: 500px) {
  .intro_slider_track img {
    width: 50%;
    max-width: 1125px;
  }
}

/* --------------------------------------------
キャンペーン
---------------------------------------------*/
#campaign {
  padding-bottom: clamp(4rem, 1.2727rem + 7.2727vw, 10rem);
  background-color: #c83b27;
}
#campaign .container {
  position: relative;
}
#campaign .entry_btn {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  z-index: 10;
  width: clamp(33.5rem, 33.5rem + 38.5 * (100vw - 37.5rem) / 82.5, 72rem);
}
@media screen and (max-width: 768px) {
  #campaign .entry_btn {
    bottom: 6%;
  }
}
@media (max-width: 420px) {
  #campaign .entry_btn {
    width: 30rem;
  }
}
#campaign .entry_btn img {
  display: block;
  width: 100%;
  filter: drop-shadow(5px 5px 5px rgba(38, 31, 28, 0.5));
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  #campaign .entry_btn img {
    filter: drop-shadow(3px 3px 3px rgba(38, 31, 28, 0.5));
  }
}
/*#campaign .entry_btn:hover img {
  opacity: 0.8;
}*/

/* --------------------------------------------
商品一覧 
---------------------------------------------*/
#products {
  padding-bottom: 15rem;
}
@media screen and (max-width: 768px) {
  #products {
    padding-bottom: 7rem;
  }
}
#products .ttl_img {
  position: relative;
  top: -2px;
}
@media screen and (max-width: 1024px) {
  #products .container {
    width: 95%;
  }
}

/*　背景　*/
.products__bg {
  display: block;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../../../assets/images/main_bg.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -2;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .products__bg {
    background: url(../../../assets/images/main_bg_sp.png);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

/*　企業リスト */
.products__list {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .products__list {
    padding-top: 0;
    gap: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .products__list {
    gap: 1rem;
  }
}

/* 上部プレート内情報*/
.products_item__header {
  display: flex;
  position: relative;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .products_item__header {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .products_item__header {
    flex-direction: column;
    margin-bottom: 10px;
  }
}

/*　黄色のプレート */
.products_item__header::before {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 100%;
  background: url(../../../assets/images/products_bg_plate.png);
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(50px);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .products_item__header::before {
    width: 150vw;
  }
}
@media screen and (max-width: 768px) {
  .products_item__header::before {
    width: 100vw;
    background: url(../../../assets/images/products_bg_plate_sp.png);
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 500px) {
  .products_item__header::before {
    height: 90%;
  }
}

/* 企業ロゴ・説明 */
.products_item__company {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-left: clamp(4rem, 4rem + 6 * (100vw - 37.5rem) / 82.5, 10rem);
}
@media screen and (max-width: 1024px) {
  .products_item__company {
    padding-left: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .products_item__company {
    gap: 1.8rem;
    align-items: center;
    padding-top: 3rem;
    padding-left: 0;
  }
}
.products_item__company img {
  display: block;
  width: clamp(28.7rem, 28.7rem + 18.3 * (100vw - 37.5rem) / 82.5, 47rem);
  height: auto;
}
.products_item__company p {
  padding-top: 2rem;
  font-size: clamp(1.6rem, 1.6rem + 0.4 * (100vw - 102.5rem) / 17.5, 2rem);
  letter-spacing: -0.08em;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .products_item__company p {
    min-width: 390px;
    font-size: clamp(1.5rem, 1.5rem + 0.1 * (100vw - 78.7rem) / 23.7, 1.6rem);
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 768px) {
  .products_item__company p {
    padding: 0;
    text-align: center;
    font-size: max(1.3rem, 3vw);
  }
}

/*　会社画像　*/
.products_item__company_img {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .products_item__company_img {
    display: flex;
    justify-content: center;
    padding: 10px 0;
  }
}
.products_item__company_img img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .products_item__company_img img {
    width: 60%;
  }
}
@media screen and (max-width: 500px) {
  .products_item__company_img img {
    width: 18rem;
    height: auto;
  }
}

/* 偶数番目 */
.products_item:nth-child(even) .products_item__header {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .products_item:nth-child(even) .products_item__header {
    flex-direction: column;
  }
}
.products_item:nth-child(even) .products_item__header::before {
  background-position: right center;
}
@media screen and (max-width: 768px) {
  .products_item:nth-child(even) .products_item__header::before {
    left: -11%;
  }
}
.products_item:nth-child(even) .products_item__company {
  padding-left: 0;
  padding-right: clamp(4rem, 4rem + 6 * (100vw - 37.5rem) / 82.5, 10rem);
}
@media screen and (max-width: 1024px) {
  .products_item:nth-child(even) .products_item__company {
    padding-right: 0;
  }
}

/*　コラボ商品画像　*/
.products_item__product_img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .products_item__product_img {
    width: 85%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .products_item__product_img {
    width: 100%;
  }
}

/* 装飾（雲） */
.products_item__product {
  position: relative;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .products_item__product {
    margin-top: 0.5rem;
  }
}
.products_item__product::before, .products_item__product::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 5;
}
.products_item__product.products_item--oriental::before {
  top: -6%;
  right: -18%;
  width: 204px;
  height: 144px;
  background-image: url(../../../assets/images/cloud_right1.png);
}
@media screen and (max-width: 1024px) {
  .products_item__product.products_item--oriental::before {
    width: 30%;
    z-index: -1;
  }
}
@media screen and (max-width: 768px) {
  .products_item__product.products_item--oriental::before {
    top: -13%;
    right: -11%;
  }
}
@media screen and (max-width: 500px) {
  .products_item__product.products_item--oriental::before {
    top: -10%;
    right: -7%;
    width: 102px;
    height: 72px;
    z-index: 0;
  }
}
.products_item__product.products_item--oriental::after {
  bottom: -13%;
  left: -1%;
  width: 250px;
  height: 114px;
  background-image: url(../../../assets/images/cloud_left1.png);
}
@media screen and (max-width: 1024px) {
  .products_item__product.products_item--oriental::after {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .products_item__product.products_item--oriental::after {
    bottom: -13%;
    left: -1%;
  }
}
@media screen and (max-width: 500px) {
  .products_item__product.products_item--oriental::after {
    bottom: -5%;
    left: -3%;
    width: 125px;
    height: 57px;
  }
}
.products_item__product.products_item--komi::before {
  top: -34%;
  right: -14%;
  width: 279px;
  height: 178px;
  background-image: url(../../../assets/images/cloud_right2.png);
}
@media screen and (max-width: 1024px) {
  .products_item__product.products_item--komi::before {
    top: -20%;
    width: 30%;
  }
}
@media screen and (max-width: 500px) {
  .products_item__product.products_item--komi::before {
    top: -9%;
    right: -15%;
    width: 139px;
    height: 89px;
    z-index: 0;
  }
}
.products_item__product.products_item--komi::after {
  top: -5%;
  left: -37%;
  width: 414px;
  height: 121px;
  background-image: url(../../../assets/images/cloud_left2.png);
}
@media screen and (max-width: 1024px) {
  .products_item__product.products_item--komi::after {
    left: -20%;
    width: 40%;
    z-index: -1;
  }
}
@media screen and (max-width: 500px) {
  .products_item__product.products_item--komi::after {
    top: 0%;
    left: -35%;
    width: 207px;
    height: 60px;
    z-index: 0;
  }
}
.products_item__product.products_item--pokka::before {
  width: 223px;
  height: 165px;
  top: -16%;
  right: -23%;
  background-image: url(../../../assets/images/cloud_right3.png);
}
@media screen and (max-width: 1024px) {
  .products_item__product.products_item--pokka::before {
    width: 30%;
    z-index: -1;
  }
}
@media screen and (max-width: 500px) {
  .products_item__product.products_item--pokka::before {
    top: -7%;
    right: -15%;
    width: 112px;
    height: 83px;
    z-index: 0;
  }
}
.products_item__product.products_item--pokka::after {
  left: 7%;
  bottom: -15%;
  width: 251px;
  height: 114px;
  background-image: url(../../../assets/images/cloud_left3.png);
}
@media screen and (max-width: 1024px) {
  .products_item__product.products_item--pokka::after {
    left: 0%;
    width: 30%;
  }
}
@media screen and (max-width: 500px) {
  .products_item__product.products_item--pokka::after {
    width: 125px;
    height: 58px;
    left: 0%;
    bottom: -6%;
  }
}
.products_item__product.products_item--nakamo::before {
  right: -9%;
  bottom: -20%;
  width: 279px;
  height: 178px;
  background-image: url(../../../assets/images/cloud_right4.png);
}
@media screen and (max-width: 1024px) {
  .products_item__product.products_item--nakamo::before {
    width: 30%;
  }
}
@media screen and (max-width: 500px) {
  .products_item__product.products_item--nakamo::before {
    right: -14%;
    bottom: -6%;
    width: 139px;
    height: 89px;
    z-index: 0;
  }
}
.products_item__product.products_item--nakamo::after {
  width: 226px;
  height: 160px;
  top: -8%;
  left: -19%;
  background-image: url(../../../assets/images/cloud_left4.png);
}
@media screen and (max-width: 1024px) {
  .products_item__product.products_item--nakamo::after {
    width: 30%;
    z-index: -1;
  }
}
@media screen and (max-width: 500px) {
  .products_item__product.products_item--nakamo::after {
    top: -7%;
    left: -10%;
    width: 113px;
    height: 80px;
    z-index: 0;
  }
}

/* --------------------------------------------
取り扱い店舗
---------------------------------------------*/
#info {
  position: relative;
  background-color: #c83b27;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 2rem 0;
  }
}
#info .ttl_img {
  position: absolute;
  bottom: 100%;
  width: 100vw;
}
@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: 2rem 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: #f2d9c7;
  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: #edd653;
  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;
}

.footer_cloud {
  position: absolute;
  bottom: 0;
  width: 180px;
  z-index: 5;
}
.footer_cloud--left {
  left: 0;
}
.footer_cloud--right {
  right: 0;
}
@media screen and (max-width: 768px) {
  .footer_cloud {
    width: 20%;
  }
}
@media screen and (max-width: 500px) {
  .footer_cloud {
    width: 20%;
  }
}

/* コピーライト */
.copyright {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  font-size: clamp(1.1rem, 0.506rem + 0.77vw, 1.8rem);
  font-weight: 300;
  color: #fff;
  text-align: center;
  background: #c83b27;
}
@media screen and (max-width: 768px) {
  .copyright {
    padding: 2rem 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);
  }
}