@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.global_head {
  margin: 0;
  position: relative;
  z-index: 20;
}

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

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

.hero {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .hero {
    height: 700px;
  }
}
@media only screen and (min-width: 768px) {
  .hero {
    height: 1050px;
  }
}
.hero::before {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/bg-texture.jpg) repeat top left/350px 350px;
  mix-blend-mode: overlay;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.hero::after {
  content: "";
  width: 100%;
  height: 100%;
  background: radial-gradient(transparent, rgba(0, 0, 0, 0.3));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero h1 {
  font-family: "Bebas Neue";
  margin: 0;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
  width: 100%;
  line-height: 1;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease-out 0.5s forwards;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .hero h1 {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}
.hero h1 span {
  line-height: 1;
  font-family: "Poppins";
  font-weight: 200;
  position: relative;
  margin: 0 5px;
}
@media only screen and (max-width: 767px) {
  .hero h1 span {
    font-size: 3.8rem;
    top: 9px;
  }
}
@media only screen and (min-width: 768px) {
  .hero h1 span {
    font-size: 5.4rem;
    top: 13px;
  }
}
.hero__pic {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__pic.carousel .slick-slider,
.hero__pic.carousel .slick-list,
.hero__pic.carousel .slick-track {
  height: 100% !important;
}
.hero__pic.carousel .slick-slide {
  height: 100% !important;
}
.hero__pic.carousel .slick-slide > div {
  height: 100% !important;
}
.hero__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (min-width: 768px) {
  .hero__pic img {
    -o-object-position: top center;
       object-position: top center;
  }
}

@media only screen and (min-width: 768px) {
  .content {
    display: grid;
    grid-template-columns: 1fr 600px 1fr;
  }
}
.content .sub {
  background-color: #000;
  position: relative;
}
.content .sub::after {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/bg-texture.jpg) repeat top left/350px 350px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.content .sub-left {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: calc((100vw - 600px) / 2);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .content .sub-left {
    display: none;
  }
}
.content .sub-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .sub-right {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  width: calc((100vw - 600px) / 2);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .content .sub-right {
    display: none;
  }
}
.content .sub-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .sub-right::after {
  background-image: url(../img/despe-img.png);
  background-repeat: no-repeat;
  background-position: top -300px left 350px;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.main {
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.3);
  background-color: #2b2b2b;
  background-color: #111;
  background-image: url(../img/bg.png);
  background-size: 300px;
  background-repeat: repeat;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .main {
    margin-left: calc((100vw - 600px) / 2);
    width: 600px;
  }
}
.main .section {
  width: calc(100% - 80px);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.block {
  background-color: #222;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .block {
    padding: 30px 30px 40px;
  }
}
@media only screen and (min-width: 768px) {
  .block {
    max-width: 450px;
    width: 100%;
    padding: 40px 30px 50px;
  }
}

.intro {
  background: linear-gradient(transparent, #b30000);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .intro {
    padding: 100px 0 80px;
  }
}
@media only screen and (min-width: 768px) {
  .intro {
    padding: 150px 0 100px;
  }
}
.intro::after {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/bg-texture.jpg) repeat top left/350px 350px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.intro__lead {
  font-family: "Bebas Neue";
  text-align: center;
  font-weight: 600;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
@media only screen and (max-width: 767px) {
  .intro__lead {
    font-size: 2.2rem;
    line-height: 0.8;
    margin: 0 0 35px;
  }
}
@media only screen and (min-width: 768px) {
  .intro__lead {
    font-size: 2.9rem;
    line-height: 0.8;
    margin: 0 0 40px;
  }
}
.intro__lead.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.intro__lead span {
  font-family: "Poppins";
  font-weight: 200;
  line-height: 0.6;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .intro__lead span {
    font-size: 3.3rem;
    top: 4px;
  }
}
@media only screen and (min-width: 768px) {
  .intro__lead span {
    font-size: 4.5rem;
    top: 3.8px;
  }
}
.intro__txt {
  text-align: center;
  font-weight: 600;
  display: grid;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out 0.2s;
}
@media only screen and (max-width: 767px) {
  .intro__txt {
    gap: 23px 0;
  }
}
@media only screen and (min-width: 768px) {
  .intro__txt {
    gap: 30px 0;
  }
}
.intro__txt.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.intro__txt p {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .intro__txt p {
    font-size: 0.9rem;
    line-height: 1.75;
  }
}
@media only screen and (min-width: 768px) {
  .intro__txt p {
    font-size: 1.15rem;
    letter-spacing: 0.03rem;
    line-height: 1.8;
  }
}

.head-img {
  background: url(../img/visual_01.jpg) no-repeat top -50px center/cover;
  width: 100%;
  height: 300px;
  margin-bottom: 70px;
}

.prod {
  background: linear-gradient(#b30000 60%, transparent);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .prod {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 768px) {
  .prod {
    padding: 100px 0 130px;
  }
}
.prod::after {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/bg-texture.jpg) repeat top left/350px 350px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.prod__content {
  display: grid;
}
@media only screen and (max-width: 767px) {
  .prod__content {
    gap: 50px 0;
  }
}
@media only screen and (min-width: 768px) {
  .prod__content {
    gap: 80px 0;
  }
}
.prod__ttl {
  text-align: center;
  font-family: "Bebas Neue";
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .prod__ttl {
    font-size: 4rem;
    margin: 0 0 25px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__ttl {
    font-size: 5.5rem;
    margin: 0 0 35px;
  }
}
.prod__pic {
  margin-bottom: 40px;
}
.prod__txt {
  font-family: "Poppins";
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .prod__txt {
    max-width: 300px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__txt {
    max-width: 400px;
  }
}
.prod__name {
  font-weight: 600;
  word-break: break-all;
}
@media only screen and (max-width: 767px) {
  .prod__name {
    font-size: 1.4rem;
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__name {
    font-size: 2rem;
    line-height: 1.3;
    margin: 0 0 10px;
  }
}
.prod__detail {
  color: #f1f1f1;
}
@media only screen and (max-width: 767px) {
  .prod__detail {
    font-size: 0.95rem;
    margin: 0 0 10px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__detail {
    font-size: 1.1rem;
    margin: 0 0 10px;
  }
}
.prod__price {
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .prod__price {
    margin: 20px 0 0;
    font-size: 1.2rem;
  }
}
.prod__price .price-num {
  font-weight: 600;
  margin: 0 5px;
}
@media only screen and (max-width: 767px) {
  .prod__price .price-num {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .prod__price .price-num {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .prod__price .price-tax {
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 768px) {
  .prod__price .price-tax {
    font-size: 0.95rem;
  }
}
.prod__order {
  margin: 0 auto;
  border-top: 1px solid #fff;
  display: grid;
}
@media only screen and (max-width: 767px) {
  .prod__order {
    max-width: 300px;
    margin-top: 30px;
    padding-top: 30px;
    gap: 12px 0;
  }
}
@media only screen and (min-width: 768px) {
  .prod__order {
    max-width: 400px;
    margin-top: 40px;
    padding-top: 40px;
    gap: 15px 0;
  }
}
.prod__order-item {
  display: grid;
  align-items: center;
  grid-template-rows: 45px;
}
@media only screen and (max-width: 767px) {
  .prod__order-item {
    grid-template-columns: 1fr 200px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__order-item {
    grid-template-columns: 1fr 210px;
  }
}
.prod__order-txt {
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .prod__order-txt {
    font-size: 1.1rem;
  }
}
.prod__order-link {
  background-color: #222;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .prod__order-link {
    transition: 0.3s;
  }
  .prod__order-link:hover {
    filter: brightness(1.5);
  }
}
.prod__order-link a {
  font-weight: 600;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tokuten.block {
  background-color: transparent;
  border: 1px solid #fff;
  text-align: center;
}
.tokuten__ttl {
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .tokuten__ttl {
    font-size: 1.2rem;
    margin: 0 0 18px;
  }
}
@media only screen and (min-width: 768px) {
  .tokuten__ttl {
    font-size: 1.5rem;
    margin: 0 0 25px;
  }
}
.tokuten__txt {
  text-align: left;
  margin: 0;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .tokuten__txt {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .tokuten__txt {
    font-size: 1.1rem;
  }
}

.frame {
  background-color: #b30000;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  position: relative;
}
@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/350px 350px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.frame__content {
  font-family: "Poppins";
  font-weight: 700;
  list-style: none;
  margin: 0;
  padding: 0;
  transform: translateX(100%);
  display: flex;
  white-space: nowrap;
  animation: ttlLoopAnime 150s infinite linear;
  color: #b30000;
  -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;
}
@media only screen and (max-width: 767px) {
  .frame__content li {
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .frame__content li {
    padding-right: 35px;
  }
}

.visual {
  background: url(../img/bg-smoke-top.png) no-repeat, linear-gradient(#b30000, #800100, #b30000);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .visual {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 768px) {
  .visual {
    padding: 100px 0;
  }
}
.visual::after {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/bg-texture.jpg) repeat top left/350px 350px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
.visual__content {
  position: relative;
  z-index: 10;
}
.visual__block {
  display: grid;
}
@media only screen and (max-width: 767px) {
  .visual__block {
    gap: 45px 0;
  }
}
@media only screen and (min-width: 768px) {
  .visual__block {
    gap: 65px 0;
  }
}
@media only screen and (max-width: 767px) {
  .visual__block:first-child {
    margin: 0 0 45px;
  }
}
@media only screen and (min-width: 768px) {
  .visual__block:first-child {
    margin: 0 0 65px;
  }
}
.visual__item {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
@media only screen and (max-width: 767px) {
  .visual__item {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) {
  .visual__item {
    width: 75%;
  }
}
.visual__item:last-of-type {
  margin-left: auto;
}
.visual__item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.sale {
  position: relative;
  display: grid;
  gap: 50px 0;
}
@media only screen and (max-width: 767px) {
  .sale {
    padding: 150px 0 100px;
  }
}
@media only screen and (min-width: 768px) {
  .sale {
    padding: 200px 0 100px;
  }
}
.sale::before {
  content: "";
  background: linear-gradient(transparent, #111);
  width: 100%;
  height: 150px;
  position: absolute;
  top: 210px;
  left: 0;
  z-index: 1;
}
.sale::after {
  content: "";
  width: 100%;
  height: 350px;
  position: absolute;
  top: 10px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .sale::after {
    background: url(../img/bg-sale.jpg) no-repeat top -80px center/cover;
  }
}
@media only screen and (min-width: 768px) {
  .sale::after {
    background: url(../img/bg-sale.jpg) no-repeat top -120px center/cover;
  }
}
.sale__item {
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
}
.sale__item:last-child {
  margin-bottom: 0;
}
.sale__ttl {
  color: #a3a3a3;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sale__ttl {
    font-size: 1.25rem;
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__ttl {
    font-size: 1.7rem;
    margin: 0 0 20px;
  }
}
.sale__date {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
@media only screen and (min-width: 768px) {
  .sale__date {
    font-size: 1.2rem;
  }
}
.sale__date span {
  font-family: "Bebas Neue";
}
@media only screen and (max-width: 767px) {
  .sale__date span {
    font-size: 1.9rem;
    margin: 0 3px 0 1px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__date span {
    font-size: 2.7rem;
    margin: 0 5px 0 2px;
  }
}
.sale__txt {
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .sale__txt {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .sale__txt {
    font-size: 1.05rem;
  }
}
.sale__attention {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  display: grid;
  gap: 8px 0;
}
@media only screen and (max-width: 767px) {
  .sale__attention {
    font-size: 0.85rem;
  }
}
.sale__attention li {
  padding-left: 1.2rem;
  text-indent: -1.4rem;
}
.sale__attention li::before {
  content: "※";
  margin-right: 0.5rem;
}
.sale__ship {
  text-align: center;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .sale__ship {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 768px) {
  .sale__ship {
    font-size: 1.3rem;
  }
}
.sale__ship span {
  font-family: "Bebas Neue";
}
@media only screen and (max-width: 767px) {
  .sale__ship span {
    font-size: 1.9rem;
    margin-right: 3px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__ship span {
    font-size: 2.7rem;
    margin-right: 5px;
  }
}
.sale__note {
  background-color: transparent;
  padding: 0;
}
.sale__note-head {
  border: 1px solid #fff;
  text-align: center;
  font-weight: 400;
  padding: 8px 0;
}
@media only screen and (max-width: 767px) {
  .sale__note-head {
    margin: 0 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__note-head {
    font-size: 1.15rem;
    margin: 0 0 35px;
  }
}
.sale__note-ttl {
  margin: 0 0 15px;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .sale__note-ttl {
    font-size: 1.2rem;
  }
}
.sale__note-item {
  margin: 0 0 35px;
}
.sale__note-item:last-of-type {
  margin: 0;
}
.sale__note-item ul {
  margin: 0 0 0 17px;
  padding: 0;
  display: grid;
  gap: 8px 0;
}
@media only screen and (max-width: 767px) {
  .sale__note-item ul {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
@media only screen and (min-width: 768px) {
  .sale__note-item ul {
    font-size: 1.05rem;
  }
}
@media only screen and (max-width: 767px) {
  .sale__note-item p {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .sale__note-item p {
    font-size: 1.05rem;
  }
}

.prof {
  background: url(../img/bg-prof.jpg) no-repeat top center/cover;
  position: relative;
  display: grid;
  gap: 50px 0;
}
@media only screen and (max-width: 767px) {
  .prof {
    padding: 100px 0;
  }
}
@media only screen and (min-width: 768px) {
  .prof {
    padding: 100px 0;
  }
}
.prof::after {
  content: "";
  background: url(../img/dot.png) repeat top left/auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.prof .block {
  background-color: #111;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .prof .block {
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 768px) {
  .prof .block {
    padding: 60px 30px;
  }
}
.prof .block:first-child {
  margin-bottom: 40px;
}
.prof__pic {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .prof__pic {
    width: 160px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .prof__pic {
    width: 200px;
    margin-bottom: 20px;
  }
}
.prof__name {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .prof__name {
    margin: 0 0 25px;
  }
}
@media only screen and (min-width: 768px) {
  .prof__name {
    margin: 0 0 30px;
    font-size: 1.1rem;
  }
}
.prof__text {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .prof__text {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
@media only screen and (min-width: 768px) {
  .prof__text {
    max-width: 350px;
    font-size: 1rem;
    line-height: 1.8;
  }
}
.prof__sns {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .prof__sns {
    margin: 35px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .prof__sns {
    margin: 35px 0 0;
  }
}
.prof__sns a {
  font-family: "Poppins";
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .prof__sns a {
    font-size: 0.7rem;
  }
}
@media only screen and (min-width: 768px) {
  .prof__sns a {
    font-size: 0.85rem;
  }
  .prof__sns a:hover {
    transition: 0.3s;
    color: #999;
  }
}
.prof__sns a::before {
  content: "\e61b";
  font-family: "Font Awesome 6 Brands";
  font-weight: 900;
  display: block;
}
@media only screen and (max-width: 767px) {
  .prof__sns a::before {
    font-size: 1.6rem;
    margin-bottom: 2px;
  }
}
@media only screen and (min-width: 768px) {
  .prof__sns a::before {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}

.contact {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contact {
    padding: 100px 0 130px;
  }
}
@media only screen and (min-width: 768px) {
  .contact {
    padding: 100px 0 130px;
  }
}
.contact__ttl {
  font-family: "Bebas Neue";
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .contact__ttl {
    font-size: 4rem;
    margin: 0 0 25px;
  }
}
@media only screen and (min-width: 768px) {
  .contact__ttl {
    font-size: 5.5rem;
    margin: 0 0 35px;
  }
}
.contact__shop {
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .contact__shop {
    font-size: 1.05rem;
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .contact__shop {
    font-size: 1.3rem;
    margin: 0 0 20px;
  }
}
.contact__tel {
  font-family: "Bebas Neue";
  line-height: 1;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .contact__tel {
    font-size: 2rem;
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .contact__tel {
    font-size: 2.9rem;
    margin: 0 0 15px;
  }
}
.contact__tel span {
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .contact__tel span {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .contact__tel span {
    font-size: 2.2rem;
  }
}
.contact__txt {
  letter-spacing: 0.05rem;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .contact__txt {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .contact__txt {
    font-size: 1.1rem;
  }
}
.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;
}
@media only screen and (max-width: 767px) {
  .contact__sns-ttl {
    font-size: 1.5rem;
    margin: 0 0 10px;
  }
}
@media only screen and (min-width: 768px) {
  .contact__sns-ttl {
    font-size: 1.8rem;
    margin: 0 0 15px;
  }
}
.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;
}
@media only screen and (max-width: 767px) {
  .contact__sns-item a::before {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .contact__sns-item a::before {
    font-size: 2rem;
  }
}
.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;
}

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

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