@charset "utf-8";
/* CSS Document */
html {
  padding: 0;
  margin: 0;
  font-size: 62.5%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

div,
dl,
dt,
dd,
form,
input,
ul,
ol,
li,
p,
select,
textarea,
span,
th,
td {
  margin: 0;
  padding: 0;
}

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

ul {
  list-style-type: none;
}
p {
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  font-style: normal;
  background: #f6f7f7;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  margin: 0 auto;
  padding: 0;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* ----表示----------------- */
.center {
  width: 100%;
  margin: 0 auto;
}
/* ----mv----------------- */
header {
  width: 100%;
  height: 100%;
  position: relative;
}
.fv_img {
  width: 100%;
}
.fv_img img {
  width: 100%;
}
/*------------------------- */

.campaign_button {
  display: block; /* ←ここも変更 */
  width: 100%;
  padding: 2rem;
  text-decoration: none;
  background: #ffff00;
  color: #000;
  transform: scale(1);
  transition: transform 0.3s ease;
  will-change: transform;
}

.campaign_button:hover {
  transform: scale(1.05);
}
.campaign_button + p {
  font-size: 2.8rem;
}

.explain {
  width: 100%;
  margin: 0 auto;
}

.explain .txt_wrap {
  text-align: center;
  font-size: 1.6rem;
}

.explain .txt_wrap .txt {
  font-family: "Noto Serif JP", serif;
  margin-top: 2rem;
  line-height: 1.6;
  font-weight: 500;
}

.explain .txt_wrap .txt span {
  font-weight: bold;
  font-size: 2rem;
}

.explain h2 {
  text-align: center;
  background: #000;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 3rem;
  padding: 0.2rem 0;
}

.explain .name {
  text-align: center;
  margin-block: 2rem;
  font-size: 2.8rem;
  font-weight: bold;
}

.explain .comment_wrap {
  text-align: center;
  background: #f6f7f7;
  padding: 2rem;
  width: 90%;
  margin: 2rem auto;
}

.explain .btn_wrap {
  display: grid;
  width: 90%;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 2rem;
  text-align: center;
  margin: 2rem auto;
  z-index: 10;
}

.explain .btn + .btn {
  padding-top: 2rem;
}

.explain .btn a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  padding: 2rem;
  color: #fff;
  transform: scale(1);
  transition: transform 0.3s ease;
  will-change: transform;
}

.explain .jyonetsu.btn a {
  background: #e60013;
}

.explain .voice.btn a {
  background: #3da7e4;
}

.explain .btn a:hover {
  transform: scale(1.05);
}

.other {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
  z-index: 9;
}

.other .ttl {
  font-weight: bold;
  font-size: 2.4rem;
}

.other .product_wrap {
  margin: 2rem auto;
}

.other .product_wrap ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 2rem;
}

.other .product_wrap ul + p {
  margin-block: 1rem;
  font-size: 1.4rem;
  color: #e60013;
  font-weight: bold;
}

.other .explain_box + p {
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 2rem;
}

.footer {
  background: #000;
  padding: 2rem 0;
  position: relative;
  z-index: 9;
  text-align: center;
}

.copyright {
  width: 95%;
  display: block;
  font-size: 13px;
  text-align: center;
  font-weight: 300;
  margin: auto;
  color: #fff;
}
/* ----section----------------- */
.explain {
  position: relative;
  z-index: 100;
}

@media screen and (min-width: 650px) and (max-width: 767px) {
  /* ----fv----------------- */
  .fv_img {
    width: 100%;
    height: auto;
    min-height: auto;
    position: relative;
    display: block;
  }
  .center {
    width: 100%;
  }
  .campaign {
    width: 80%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  body {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }
  .center {
    width: 100%;
    z-index: 3;
  }
  /* ----PCサイド----------------- */
  .c-block-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
  }
  .c-block-bg__logo {
    position: absolute;
    width: calc((100% - 430px) / 2);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .c-block-bg__bg {
    position: absolute;
    inset: 0;
  }
  .c-block-bg__logo img {
    position: absolute;
    inset: 0;
    width: 60%;
    margin: auto;
    animation: move 4s ease-in-out infinite;
  }

  @keyframes move {
    0% {
      transform: translateY(0);
    }

    /* 小刻みに動くゾーン */
    10% {
      transform: translateY(-20px);
    }
    20% {
      transform: translateY(0);
    }
    30% {
      transform: translateY(-20px);
    }
    40% {
      transform: translateY(0);
    }

    /* 止まる */
    60% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(0);
    }
  }
  .c-block-bg__qr {
    position: absolute;
    width: calc((100% - 430px) / 2);
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .c-block-bg__qr img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 60%;
    animation: big 4s ease-in-out infinite;
  }
  .c-block-bg__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @keyframes big {
    0% {
      transform: scale(1);
    }

    /* 動いてる間はそのまま */
    40% {
      transform: scale(1);
    }

    /* 止まってる間に拡大 */
    50% {
      transform: scale(1.2);
    }
    70% {
      transform: scale(1.2);
    }

    /* 戻る */
    80% {
      transform: scale(1);
    }
    100% {
      transform: scale(1);
    }
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media screen and (min-width: 1281px) {
  body {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }
  .center {
    width: 100%;
    background: #fff;
  }
  .flowing-container {
    width: 2%;
    display: none;
  }
  .flowing-container-left {
    display: none;
  }
  /* ----fv----------------- */
  .fv_img {
    width: 100%;
    height: auto;
    min-height: auto;
    position: relative;
    display: block;
  }
  /* ----PCサイド----------------- */
  .c-block-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
  }
  .c-block-bg__logo {
    position: absolute;
    width: calc((100% - 430px) / 2);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .c-block-bg__bg {
    position: absolute;
    inset: 0;
  }
  .c-block-bg__logo img {
    position: absolute;
    inset: 0;
    width: 60%;
    margin: auto;
    display: inline-block;
    animation: move 4s ease-in-out infinite;
  }

  @keyframes move {
    0% {
      transform: translateY(0);
    }

    /* 小刻みに動くゾーン */
    10% {
      transform: translateY(-20px);
    }
    20% {
      transform: translateY(0);
    }
    30% {
      transform: translateY(-20px);
    }
    40% {
      transform: translateY(0);
    }

    /* 止まる */
    60% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(0);
    }
  }
  .c-block-bg__qr {
    position: absolute;
    width: calc((100% - 430px) / 2);
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .c-block-bg__qr img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 60%;
    animation: big 4s ease-in-out infinite;
  }

  .c-block-bg__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @keyframes big {
    0% {
      transform: scale(1);
    }

    /* 動いてる間はそのまま */
    40% {
      transform: scale(1);
    }

    /* 止まってる間に拡大 */
    50% {
      transform: scale(1.2);
    }
    70% {
      transform: scale(1.2);
    }

    /* 戻る */
    80% {
      transform: scale(1);
    }
    100% {
      transform: scale(1);
    }
  }
  .sp {
    display: block !important;
  }
}

/* swiper */

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

[class*="swiper"]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #ccc;
  border-width: 2px 2px 0 0;
}
.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.item_gallery {
  overflow: hidden;
}
.item_gallery .swiper {
  max-width: 100%;
  margin: auto;
  padding-top: 3rem;
}
.item_gallery .swiper-main {
  overflow: visible;
}

.item_gallery .swiper-fade .swiper-slide {
  -webkit-transition-property:
    opacity,
    -webkit-transform !important;
  transition-property:
    opacity,
    -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property:
    opacity,
    transform,
    -webkit-transform !important;
  pointer-events: none;
}
.item_gallery .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.item_gallery .swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 62.5%;
}
.item_gallery .swiper-button-prev,
.item_gallery .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.item_gallery .swiper-button-prev {
  left: 1rem;
}
.item_gallery .swiper-button-next {
  right: 1rem;
}
/* .item_gallery .swiper-scrollbar {
  position: relative;
  margin-top: 1.6rem;
}
.item_gallery .swiper-scrollbar::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  margin: auto;
  content: "";
  background-color: #eee;
} */
/* .item_gallery .swiper-scrollbar-drag {
  height: 20px;
  padding: 8px 0;
  cursor: pointer;
  background-color: var(--color-theme);
  background-clip: content-box;
}
.item_gallery .swiper-scrollbar-drag:active {
  background-color: var(--color-theme-darken);
} */
.item_gallery .slide {
  display: block;
  overflow: hidden;
}
.item_gallery .slide-media {
  padding-top: 62.5%;
}
.item_gallery .slide-media img {
  -o-object-fit: contain;
  object-fit: contain;
}

.item_gallery .thumb-media,
.item_gallery .thumb-media img {
  transition: all 0.3s;
}

.item_gallery .swiper-slide-thumb-active .thumb-media {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
.item_gallery .swiper-slide-thumb-active .thumb-media img {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.item_gallery .slide-title {
  line-height: 1.6;
  text-align: center;
}
.item_gallery .thumb-media {
  padding-top: 56%;
  border: 1px solid #eee;
  border-radius: 4px;
  width: 90%;
  margin: auto;
}

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

@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
}
