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

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background-color: #efede4;
  background-attachment: fixed;
  color: #058373;
  position: relative;
  z-index: 0;
}
body::before {
  content: "";
  height: 100%;
  width: 100%;
  background-image: url(../img/bg-texture.jpg);
  background-repeat: repeat;
  background-position: top left;
  background-attachment: fixed;
  mix-blend-mode: overlay;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  body::before {
    background-size: 200px 200px;
  }
}
@media only screen and (min-width: 768px) {
  body::before {
    background-size: 250px 250px;
  }
}

img {
  max-width: 100%;
  border: none;
  vertical-align: bottom;
}

a {
  color: #058373;
  text-decoration: none;
}

.global_head {
  margin: 0;
}

.wrap {
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 767px) {
  .wrap {
    display: flex;
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .side {
    order: 2;
    padding: 50px 0;
  }
}
@media only screen and (min-width: 768px) {
  .side {
    width: 25%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 9%;
    z-index: 1;
    box-sizing: border-box;
  }
}
.side__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .side__content {
    height: 100vh;
  }
}
.side__ttl {
  width: 100%;
  max-width: 350px;
}
@media only screen and (max-width: 767px) {
  .side__ttl {
    display: none;
    margin: 0 auto 30px;
  }
}
@media only screen and (min-width: 768px) {
  .side__ttl {
    margin: 0 auto clamp(10px, 2vh, 30px);
    max-width: clamp(200px, 25vw, 350px);
  }
}
@media only screen and (max-width: 767px) {
  .side__img {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .side__img {
    max-width: clamp(200px, 25vw, 350px);
    width: 100%;
  }
}
.side__sns {
  display: flex;
  gap: 0 10px;
}
@media only screen and (min-width: 768px) {
  .side__sns {
    margin-top: clamp(10px, 2vh, 30px);
  }
}
.side__sns-item {
  display: block;
  background-color: #058373;
  color: #efede4;
  transition: 0.3s;
  border-radius: 99px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .side__sns-item {
    width: 150px;
    height: 40px;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .side__sns-item {
    width: clamp(120px, 15vw, 150px);
    height: clamp(30px, 3.5vh, 40px);
    padding: 0 clamp(10px, 1.2vw, 15px);
  }
  .side__sns-item:hover {
    background-color: #9d5048;
  }
}
.side__sns-item span::before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\e61b";
  margin-right: 10px;
  font-size: 1.1rem;
}
.side__sns-item p {
  margin: 0;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .side__sns-item p {
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 768px) {
  .side__sns-item p {
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  }
}

@media only screen and (max-width: 767px) {
  .content {
    order: 1;
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) {
  .content {
    width: 42%;
    margin-left: 44.47291%;
    border-right: 2px solid #058373;
    border-left: 2px solid #058373;
  }
}

.hero__img {
  position: relative;
}
.hero h1 {
  margin: 0;
  opacity: 0;
  animation: fadeInH1 1s ease-out 1s forwards;
}
.hero h1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100vw;
  z-index: 1;
}

@keyframes fadeInBg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInH1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lead {
  font-weight: 500;
}
.lead__content {
  width: calc(100% - 50px);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .lead__content {
    padding: 70px 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .lead__content {
    padding: 80px 0 30px;
  }
}
.lead__ttl {
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.5rem;
  margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .lead__ttl {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 768px) {
  .lead__ttl {
    font-size: clamp(1.4rem, 1vw, 1.7rem);
  }
}
.lead__text {
  margin: 0 0 40px;
  font-weight: 500;
  text-align: center;
  display: grid;
}
@media only screen and (max-width: 767px) {
  .lead__text {
    gap: 15px 0;
  }
}
@media only screen and (min-width: 768px) {
  .lead__text {
    gap: 20px 0;
  }
}
.lead__text p {
  margin: 0;
  letter-spacing: 0.03rem;
}
@media only screen and (max-width: 767px) {
  .lead__text p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}
@media only screen and (min-width: 768px) {
  .lead__text p {
    font-size: clamp(0.9rem, 1vw, 1.3rem);
    line-height: 1.8;
  }
}
.lead__detail {
  margin: 30px auto 0;
}
@media only screen and (min-width: 768px) {
  .lead__detail {
    max-width: 330px;
  }
}
.lead__detail dl {
  margin: 0 0 10px;
  display: flex;
  align-items: flex-start;
  gap: 0 10px;
}
@media only screen and (max-width: 767px) {
  .lead__detail dl {
    font-size: 0.9rem;
  }
}
.lead__detail dl:last-child {
  margin: 0;
}
.lead__detail dl dt {
  background-color: #058373;
  color: #fff;
  font-weight: 600;
  width: 70px;
  margin: 0;
  text-align: center;
}
.lead__detail dl dd {
  width: calc(100% - 80px);
  margin: 0;
}
.lead__dms {
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .lead__dms {
    max-width: 180px;
    margin: 35px auto 0;
  }
}
@media only screen and (min-width: 768px) {
  .lead__dms {
    max-width: 220px;
    margin: 40px auto 0;
  }
}
.lead__dms::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.lead__dms img {
  background-color: #ed5b16;
  padding: 10px;
  transition: 0.3s;
}
.lead__dms img:hover {
  opacity: 0.8;
}
.lead__dms p {
  color: #fff;
  text-align: center;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 1rem;
}
.lead .onsale {
  text-align: center;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .lead .onsale {
    margin: 40px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .lead .onsale {
    margin: 60px 0 0;
  }
}
.lead .onsale p {
  display: inline-block;
  border: 1px dashed #058373;
  font-weight: 600;
  margin: 0;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .lead .onsale p {
    letter-spacing: 0.05rem;
    line-height: 1.4;
    padding: 13px 15px;
  }
}
@media only screen and (min-width: 768px) {
  .lead .onsale p {
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    line-height: 1;
    padding: 13px 15px;
  }
}
.lead .onsale p:hover {
  background-color: rgba(5, 131, 115, 0.1);
}
.lead .onsale a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.lead .onsale a::after {
  content: "";
  display: inline-block;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: #058373;
}
@media only screen and (max-width: 767px) {
  .lead .onsale a::after {
    width: 13px;
    height: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .lead .onsale a::after {
    width: 15px;
    height: 12px;
    margin: 0 0 0 3px;
  }
}

.lineup {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .lineup {
    border-bottom: 2px solid #058373;
  }
}
.lineup .neko {
  position: absolute;
  opacity: 0;
  transition: all 1s ease-out;
}
.lineup .neko.neko_01 {
  top: -40px;
  left: -90px;
  width: 235px;
  rotate: 50deg;
  transform: translate(-30px, 30px);
}
.lineup .neko.neko_02 {
  top: 153px;
  right: -70px;
  width: 200px;
  rotate: 10deg;
  transform: translate(30px, -30px);
}
.lineup .neko.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.lineup__ttl {
  margin: 0;
  padding: 85px 0 85px;
  text-align: center;
}
.lineup__item {
  border-top: 2px solid #058373;
}
.lineup__inner {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .lineup__inner {
    width: 350px;
    padding: 20px 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  .lineup__inner {
    width: 80%;
    padding: 30px 0 40px;
  }
}
.lineup__head {
  margin: 0 0 25px;
  position: relative;
  text-align: center;
  border-bottom: 2px solid #058373;
  display: grid;
}
@media only screen and (max-width: 767px) {
  .lineup__head {
    grid-template-columns: 70px 1fr;
  }
}
@media only screen and (min-width: 768px) {
  .lineup__head {
    grid-template-columns: 80px 1fr;
  }
}
.lineup__head .num {
  line-height: 1;
  letter-spacing: 0.1rem;
  color: #efede4;
  -webkit-text-stroke: 4px #058373;
  text-stroke: 4px #fff;
  paint-order: stroke;
  border-right: 2px solid #058373;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .lineup__head .num {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .lineup__head .num {
    font-size: 2.3rem;
  }
}
.lineup__name {
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  display: flex;
  align-items: center;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .lineup__name {
    font-size: 1.5rem;
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .lineup__name {
    font-size: 1.9rem;
    padding: 0 30px;
  }
}
.lineup__pic {
  margin: 0 auto;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
@media only screen and (min-width: 768px) {
  .lineup__pic {
    max-height: 500px;
  }
}
.lineup__pic::before {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.lineup__pic_content {
  padding: 30px;
}
.lineup__pic img {
  width: auto;
  z-index: 99;
  position: relative;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .lineup__pic img {
    max-height: 280px;
  }
}
@media only screen and (min-width: 768px) {
  .lineup__pic img {
    max-height: 350px;
  }
}
.lineup .slide {
  overflow: hidden;
}
.lineup .slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 17px;
  height: 17px;
  border: 2px solid #058373;
  border-left: 0;
  border-bottom: 0;
  transform-origin: top right;
  cursor: pointer;
}
.lineup .slide-arrow.prev-arrow {
  left: -10px;
  transform: rotate(225deg);
}
.lineup .slide-arrow.next-arrow {
  right: 10px;
  transform: rotate(45deg);
}
.lineup__text {
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .lineup__text {
    margin: 20px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .lineup__text {
    margin: 25px 0 0;
  }
}
.lineup__detail .info {
  letter-spacing: 0.1rem;
}
.lineup__detail .prod-name {
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .lineup__detail .prod-name {
    font-size: 1.2rem;
  }
}
.lineup__detail p {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .lineup__detail p {
    font-size: 0.95rem;
  }
}
@media only screen and (min-width: 768px) {
  .lineup__detail p {
    font-size: 0.9rem;
  }
}
.lineup__detail p .price {
  font-weight: 600;
  margin: 0 3px;
}
@media only screen and (max-width: 767px) {
  .lineup__detail p .price {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 768px) {
  .lineup__detail p .price {
    font-size: 1.5rem;
  }
}
.lineup__detail p .tax {
  margin: 0 0 0 3px;
}
@media only screen and (max-width: 767px) {
  .lineup__detail p .tax {
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 768px) {
  .lineup__detail p .tax {
    font-size: 0.9rem;
  }
}
.lineup .order-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #058373;
  background-color: #058373;
  color: #fff;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .lineup .order-link {
    width: 180px;
    height: 38px;
    font-size: 0.85rem;
    margin: 15px auto 0;
  }
}
@media only screen and (min-width: 768px) {
  .lineup .order-link {
    width: 230px;
    height: 43px;
    font-size: 0.95rem;
    margin: 15px auto 0;
  }
}
.lineup .order-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f1ede2;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s ease 0s;
  z-index: -1;
}
.lineup .order-link::after {
  content: "";
  display: block;
  clip-path: polygon(0 0, 0% 100%, 50% 50%);
  background-color: #fff;
  height: 10px;
  position: absolute;
  pointer-events: none;
  top: 50%;
  translate: 0 -50%;
}
@media only screen and (max-width: 767px) {
  .lineup .order-link::after {
    width: 13px;
    right: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .lineup .order-link::after {
    width: 15px;
    right: 15px;
  }
}
.lineup .order-link:hover {
  color: #058373;
}
.lineup .order-link:hover::before {
  transform: scale(1, 1);
}
.lineup .order-link:hover::after {
  background-color: #058373;
}
.lineup .order-link.order-soldout {
  background-color: #058373;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .fadein-img {
    transform: translateY(-30px);
    transition: ease 1s;
    opacity: 0;
  }
  .fadein-img.scrollin {
    opacity: 1;
    transform: translateY(0);
  }
}

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