@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=border-left: 2px solid #000;&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  word-break: break-all;
  text-decoration: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.global_head {
  margin: 0;
}

footer {
  position: relative;
  z-index: 10;
}

.wrap {
  font-family: "Noto Sans JP";
}
@media only screen and (max-width: 767px) {
  .wrap {
    font-size: 0.95rem;
  }
}

.hero {
  background-color: #111;
  border-bottom: 2px solid #000;
  display: flex;
  height: calc(100vh - 37px);
  overflow: hidden;
  position: fixed;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .hero {
    flex-direction: column;
  }
}
.hero__visual {
  width: 35%;
  height: 100%;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
@media only screen and (max-width: 767px) {
  .hero__visual {
    width: 100%;
    height: 32.5%;
    order: 3;
  }
}
.hero__visual .splide {
  width: 100%;
  height: 100%;
}
.hero__visual .splide .splide__track {
  width: 100%;
  height: 100%;
}
.hero__visual .splide .splide__list {
  width: 100%;
  height: 100%;
}
.hero__visual .splide .splide__slide {
  width: 100%;
  height: 100%;
}
.hero__visual .splide .splide__slide.is-active img {
  animation: zoomIn 3s ease-out forwards;
}
.hero__visual .splide .splide__slide.is-prev img, .hero__visual .splide .splide__slide.is-next img {
  transform: scale(1.1);
}
.hero__visual .splide .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  transition: none;
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero__ttl {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}
@media only screen and (max-width: 767px) {
  .hero__ttl {
    width: 100%;
    height: 35%;
    order: 2;
  }
}
.hero h1 {
  width: 68%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  .hero h1 {
    width: 180px;
  }
}
.hero h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ccc;
  animation: borderTop 0.5s ease 0.5s forwards;
}
.hero h1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 0;
  background-color: #ccc;
  animation: borderRight 0.5s ease 1s forwards;
}
.hero h1 span {
  display: block;
  position: relative;
}
.hero h1 span::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 0;
  height: 1px;
  background-color: #ccc;
  animation: borderBottom 0.5s ease 1.5s forwards;
}
.hero h1 span::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 1px;
  height: 0;
  background-color: #ccc;
  animation: borderLeft 0.5s ease 2s forwards;
}
.hero h1 img {
  display: block;
  position: relative;
}
@keyframes borderTop {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes borderRight {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes borderBottom {
  from {
    width: 0;
  }
  to {
    width: calc(100% + 40px);
  }
}
@keyframes borderLeft {
  from {
    height: 0;
  }
  to {
    height: calc(100% + 40px);
  }
}
.hero__pic {
  width: 35%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 15px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
@media only screen and (max-width: 767px) {
  .hero__pic {
    width: 100%;
    height: 32.5%;
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    overflow: hidden;
  }
}
.hero__pic-col {
  overflow: hidden;
}
.hero__pic-marquee {
  list-style: none;
  margin: 0;
  padding: 0;
  will-change: transform;
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
@media only screen and (max-width: 767px) {
  .hero__pic-marquee {
    flex-direction: row;
    gap: 0 10px;
  }
}
.hero__pic-marquee li {
  line-height: 0;
}
@media only screen and (max-width: 767px) {
  .hero__pic-marquee li {
    flex: 0 0 auto;
  }
}
.hero__pic-marquee img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .hero__pic-marquee img {
    width: 200px;
  }
}
.hero__pic-marquee--down {
  animation: heroMarqueeDown 50s linear infinite;
}
@media only screen and (max-width: 767px) {
  .hero__pic-marquee--down {
    animation: heroLeft 40s linear infinite;
  }
}
.hero__pic-marquee--up {
  animation: heroMarqueeUp 50s linear infinite;
}
@media only screen and (max-width: 767px) {
  .hero__pic-marquee--up {
    animation: heroRight 40s linear infinite;
  }
}
@keyframes heroLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes heroRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes heroMarqueeDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes heroMarqueeUp {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__pic .hero__pic-marquee--down,
  .hero__pic .hero__pic-marquee--up {
    animation: none;
  }
}

.content {
  background-color: #e50a2b;
  position: relative;
  z-index: 11;
  margin-top: 100vh;
  transition: background-color 0.6s ease;
}
.content::after {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/bg-texture.jpg) repeat top left/250px 250px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.intro__content {
  border-right: 2px solid #000;
  border-left: 2px solid #000;
  display: grid;
  grid-template-columns: 450px 1fr;
  align-items: flex-start;
  gap: 0 60px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 150px 90px 200px;
}
@media only screen and (max-width: 767px) {
  .intro__content {
    border-right: none;
    border-left: none;
    grid-template-columns: auto;
    padding: 80px 40px;
  }
}
.intro__lead {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 2.6rem;
  letter-spacing: 0.2rem;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  border: 1px solid #ccc;
  padding: 30px;
  margin: 0 60px;
}
@media only screen and (max-width: 767px) {
  .intro__lead {
    max-width: 180px;
    margin: 0 auto 30px;
    padding: 20px;
  }
}
.intro__lead.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.intro__txt {
  font-weight: 600;
  display: grid;
  gap: 30px 0;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
.intro__txt.is-visible {
  opacity: 1;
  transform: translateX(0);
}
@media only screen and (max-width: 767px) {
  .intro__txt {
    gap: 23px 0;
  }
}
.intro__txt p {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.15rem;
  line-height: 2.3;
}
@media only screen and (max-width: 767px) {
  .intro__txt p {
    font-size: 0.9rem;
    letter-spacing: 0.07rem;
    line-height: 1.9;
  }
}
.intro__txt img {
  transition: 0.3s;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .intro__txt img {
    width: 100%;
  }
}
.intro__txt img:hover {
  opacity: 0.8;
}

.visual {
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  .visual {
    padding: 60px 0;
  }
}
.visual__block {
  display: flex;
  gap: 0 30px;
  margin-bottom: 30px;
  opacity: 0;
  transition: opacity 1s ease;
}
.visual__block.is-visible {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .visual__block {
    margin-bottom: 20px;
  }
}
.visual__block:last-of-type {
  margin: 0;
}
.visual__item {
  width: 75%;
}
@media only screen and (max-width: 767px) {
  .visual__item {
    width: 80%;
  }
}
.visual .splide__slide {
  width: 550px;
}
@media only screen and (max-width: 767px) {
  .visual .splide__slide {
    width: 280px;
  }
}

.prod {
  color: #000;
  padding: 100px 0 0;
}
@media only screen and (max-width: 767px) {
  .prod {
    padding: 60px 0 0;
  }
}
.prod__wrap {
  border-top: 2px solid #000;
}
@media only screen and (max-width: 767px) {
  .prod__wrap {
    border-bottom: none;
  }
}
.prod__content {
  border-right: 2px solid #000;
  border-left: 2px solid #000;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 767px) {
  .prod__content {
    border-right: none;
    border-left: none;
    grid-template-columns: auto;
  }
}
.prod__item {
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 8%;
}
@media only screen and (max-width: 767px) {
  .prod__item {
    border-right: none;
    padding: 10%;
  }
  .prod__item:nth-of-type(8) {
    border-bottom: none;
  }
}
@media only screen and (min-width: 768px) {
  .prod__item:nth-of-type(3), .prod__item:nth-of-type(6) {
    border-right: none;
  }
  .prod__item:nth-of-type(7), .prod__item:nth-of-type(8) {
    border-bottom: none;
  }
}
.prod__ttl {
  text-align: center;
  font-family: "Bebas Neue";
  line-height: 1;
  font-size: 5.5rem;
  margin: 0 0 35px;
}
@media only screen and (max-width: 767px) {
  .prod__ttl {
    font-size: 4rem;
    margin: 0 0 25px;
  }
}
.prod__pic {
  margin-bottom: 30px;
  background-color: #fafafa;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
}
@media only screen and (max-width: 767px) {
  .prod__pic {
    aspect-ratio: 1/1;
    margin: 0 auto 15px;
    padding: 7%;
  }
}
.prod__pic img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.prod__txt {
  font-family: "Poppins";
  margin: 0 auto;
  max-width: 400px;
}
@media only screen and (max-width: 767px) {
  .prod__txt {
    max-width: 300px;
  }
}
.prod__name {
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .prod__name {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
}
.prod__comment {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .prod__comment {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
.prod__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.prod__price p {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .prod__price p {
    font-size: 1.2rem;
  }
}
.prod__price p span {
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 5px;
}
@media only screen and (max-width: 767px) {
  .prod__price p span {
    font-size: 0.7rem;
  }
}
.prod__price:hover .prod__order-btn {
  transform: scale(1.1);
}
.prod__order {
  display: grid;
  gap: 13px 0;
  margin-top: 15px;
}
.prod__order-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  cursor: pointer;
}
.prod__order-item p {
  margin: 0;
  width: 90px;
  font-weight: 600;
}
.prod__order-item:hover .prod__order-btn {
  transform: scale(1.1);
}
.prod__order-btn {
  background-color: #000;
  color: #fff;
  display: block;
  font-weight: bold;
  border-radius: 99px;
  line-height: 1;
  padding: 11px 20px;
  transition: 0.3s;
}
.prod__order-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.frame {
  background-color: #111;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .frame {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    height: 35px;
  }
}
@media only screen and (min-width: 768px) {
  .frame {
    border-top: 1.5px solid #222;
    border-bottom: 1.5px solid #222;
    height: 45px;
  }
}
.frame::after {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/bg-texture.jpg) repeat top left/250px 250px;
  mix-blend-mode: overlay;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.frame__content {
  font-family: "Poppins";
  font-weight: 900;
  list-style: none;
  margin: 0;
  padding: 0;
  transform: translateX(100%);
  display: flex;
  white-space: nowrap;
  animation: ttlLoopAnime 150s infinite linear;
  color: #333;
  -webkit-text-stroke: 2.5px #222;
  text-stroke: 2.5px #222;
  paint-order: stroke;
}
@media only screen and (max-width: 767px) {
  .frame__content {
    font-size: 3.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .frame__content {
    font-size: 4.7rem;
  }
}
@keyframes ttlLoopAnime {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.frame__content li {
  display: inline-block;
  position: relative;
  padding-right: 35px;
}
@media only screen and (max-width: 767px) {
  .frame__content li {
    padding-right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .sale {
    padding: 80px 40px;
  }
}
@media only screen and (min-width: 768px) {
  .sale {
    padding: 150px 0;
  }
}
.sale__ttl {
  font-family: "Bebas Neue";
  font-size: 5.5rem;
  line-height: 1;
  text-align: center;
  margin: 0 0 45px;
}
@media only screen and (max-width: 767px) {
  .sale__ttl {
    font-size: 4rem;
    margin: 0 0 25px;
  }
}
.sale__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  gap: 0 40px;
}
@media only screen and (max-width: 767px) {
  .sale__content {
    grid-template-columns: auto;
    gap: 20px 0;
  }
}
.sale__item {
  border: 2px solid #000;
  padding: 30px 15px;
}
.sale__item-ttl {
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sale__item-ttl {
    font-size: 1.25rem;
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__item-ttl {
    font-size: 1.7rem;
    margin: 0 0 20px;
  }
}
.sale__date {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05rem;
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .sale__date {
    font-size: 1rem;
  }
}
.sale__date span {
  font-family: "Bebas Neue";
  font-size: 2.7rem;
  margin: 0 5px 0 2px;
}
@media only screen and (max-width: 767px) {
  .sale__date span {
    font-size: 1.9rem;
    margin: 0 3px 0 1px;
  }
}
.sale__txt {
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .sale__txt {
    font-size: 0.9rem;
  }
}
.sale__txt a {
  color: #fff;
  text-decoration: underline;
}
.sale__txt a:hover {
  text-decoration: none;
}

.prof {
  background: url(../img/visual-img.jpg) no-repeat top center/cover fixed;
  position: relative;
  z-index: 0;
  padding: 120px 0;
}
@media only screen and (max-width: 767px) {
  .prof {
    padding: 70px 40px;
  }
}
.prof::before {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/bg-texture.jpg) repeat top left/250px 250px;
  mix-blend-mode: overlay;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.prof::after {
  content: "";
  background: rgba(204, 10, 39, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.prof__content {
  background-color: #111;
  max-width: 500px;
  margin: 0 auto;
  padding: 70px 100px;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .prof__content {
    padding: 60px 40px;
  }
}
.prof__content::after {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/bg-texture.jpg) repeat top left/250px 250px;
  mix-blend-mode: overlay;
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.prof__thumb {
  background-color: #ccc;
  width: 250px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  margin: 0 auto 40px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .prof__thumb {
    width: 180px;
    margin: 0 auto 30px;
  }
}
.prof__name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 15px;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  line-height: 1;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .prof__name {
    gap: 0 10px;
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}
.prof__name span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .prof__name span {
    font-size: 0.65rem;
  }
}
.prof__text {
  margin: 0;
  text-align: justify;
  letter-spacing: 0.1rem;
  font-size: 0.9rem;
  line-height: 2.2;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .prof__text {
    font-size: 0.85rem;
    letter-spacing: 0.05rem;
  }
}

.contact {
  text-align: center;
  padding: 150px 0;
}
@media only screen and (max-width: 767px) {
  .contact {
    padding: 70px 0;
  }
}
.contact__ttl {
  font-family: "Bebas Neue";
  line-height: 1;
  font-size: 5.5rem;
  margin: 0 0 35px;
}
@media only screen and (max-width: 767px) {
  .contact__ttl {
    font-size: 4rem;
    margin: 0 0 25px;
  }
}
.contact__shop {
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .contact__shop {
    font-size: 1.05rem;
    margin: 0 0 15px;
  }
}
.contact__tel {
  font-family: "Bebas Neue";
  line-height: 1;
  font-weight: 600;
  font-size: 2.9rem;
  margin: 0 0 15px;
}
@media only screen and (max-width: 767px) {
  .contact__tel {
    font-size: 2rem;
  }
}
.contact__tel span {
  font-size: 2.2rem;
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .contact__tel span {
    font-size: 1.5rem;
  }
}
.contact__txt {
  font-size: 1.1rem;
  letter-spacing: 0.05rem;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .contact__txt {
    font-size: 0.9rem;
  }
}
.contact__txt a {
  color: #fff;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .contact__sns {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .contact__sns {
    margin-top: 80px;
  }
}
.contact__sns-ttl {
  font-family: "Poppins";
  letter-spacing: 0.05rem;
  font-size: 1.8rem;
  margin: 0 0 15px;
}
@media only screen and (max-width: 767px) {
  .contact__sns-ttl {
    font-size: 1.1rem;
    margin: 0 0 10px;
  }
}
.contact__sns-content {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
.contact__sns-item a {
  color: #fff;
}
.contact__sns-item a::before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 900;
  display: block;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact__sns-item a::before {
    font-size: 1.5rem;
  }
}
.contact__sns-item a.sns-x::before {
  content: "\e61b";
}
.contact__sns-item a.sns-insta::before {
  content: "\f16d";
}
.contact a:hover {
  transition: 0.3s;
  color: #999;
}

.foot {
  padding: 0 0 50px;
}
@media only screen and (max-width: 767px) {
  .foot {
    padding: 0 0 40px;
  }
}
.foot p {
  text-align: center;
  margin: 0;
  font-size: 0.9rem;
}
@media only screen and (max-width: 767px) {
  .foot p {
    font-size: 0.8rem;
  }
}

@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */