body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 400;
  color: #4B3C30;
  background-color: #F5F1EB;
}

@media (max-width: 768px) {
  body,
  html {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  body,
  html {
    font-size: 12px;
  }
}

.wrap {
  overflow: hidden;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

a {
  text-decoration: none;
  color: initial;
}

p + p {
  margin-top: 0.5rem;
}

ul + h4 {
  margin-top: 1rem;
}

.text-small {
  font-size: 10px;
  line-height: 1.5;
  padding: 8px;
}

.title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}

.title::after {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #4B3C30;
  display: block;
  margin: 10px auto 0;
}

.text-center {
  text-align: center;
}

@media (min-width: 769px) {
  .text-pc-center {
    text-align: center;
  }
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: 700;
}

header {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  position: relative;
  z-index: 99;
}

header img {
  height: 40px;
  display: block;
}

@media (min-width: 769px) {
  header {
    padding: 20px;
  }

  header img {
    height: 50px;
  }
}

.section {
  padding: 5rem 0;
  position: relative;
}

@media (min-width: 769px) {
  .section {
    padding: 7rem 0;
  }
}

.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.container + .container {
  margin-top: 80px;
}

@media (max-width: 769px) {
  .container {
    padding: 0 15px;
  }

  .container + .container {
    margin-top: 40px;
  }
}


.section-about {
  padding: 80px 0 160px;
}

.section-product {
  background-color: #fff;
  padding: 80px 0;
  position: relative;
}

.section-product::before {
  content: '';
  background: url(../images/product-background.png) no-repeat left/contain;
  width: 100%;
  height: 250px;
  top: -250px;
  position: absolute;
  z-index: -1;
}
@media (max-width: 768px) {
  .section-product::before {
    height: 100px;
    top: -100px;
  }
}

.section-media {
  background-color: #fff;
  position: relative;
}

.section-media .media-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.section-media::before {
  content: '';
  background: url(../images/media-background.png) no-repeat left/contain;
  width: 100%;
  height: 250px;
  top: -250px;
  position: absolute;
  z-index: -1;
}

@media (max-width: 768px) {
  .section-media::before {
    height: 100px;
    top: -100px;
  }
}

.section-media .media-wrap img {
  margin: 0 15px 20px;
}

.section-voice::before {
  content: '';
  background: url(../images/voice-background.png) no-repeat left/contain;
  width: 100%;
  height: 250px;
  top: -250px;
  position: absolute;
  z-index: -1;
}

@media (max-width: 768px) {
  .section-voice::before {
    height: 100px;
    top: -100px;
  }
}

iframe {
  width: 100%;
  height: 300px;
  margin: 50px auto 0;
  display: block;
}

@media (min-width: 769px) {
  iframe {
    width: 800px;
    height: 400px;
  }
}

.producers-wrap {
  display: flex;
  flex-wrap: wrap;
}

.producer {
  width: calc(50% - 10px);
  letter-spacing: 0;
  margin-bottom: 30px;
}

.producer:not(:nth-child(2n)) {
  margin-right: 20px;
}

@media screen and (min-width: 769px) {
  .producer {
    width: calc(25% - 38px);
  }

  .producer:not(:nth-child(4n)) {
    margin-right: 50px;
  }
}

.producer-img {
  position: relative;
  margin-bottom: 8px;
}

.producer-img img {
  width: 100%;
  height: auto;
  display: block;
}

.producer .name {
  font-weight: 600;
}

.producer .area {
  font-size: 0.85rem;
}

.producer .item {
  font-size: 0.85rem;
  color: #999999;
  margin-top: 4px;
}

.producer .description {
  font-size: 0.9rem;
  margin-top: 4px;
}

.footer-sns-share {
  padding: 30px;
  background: #fff;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 600px;
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
}

.footer-sns-share::before {
  content: '';
  background: url(../images/bard.png) no-repeat center/contain;
  position: absolute;
  width: 60%;
  height: 100px;
  top: -60px;
}

footer {
  width: 100%;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

footer .copy {
  text-align: center;
}

.fadein.delighter {
  transition: all 0.3s ease-out;
  transform: translateY(20px);
  opacity: 0;
}

.fadein.delighter.started {
  transform: none;
  opacity: 1;
}

/*商品カード*/
.product-card-columns-wrap {
  display: flex;
  flex-wrap: wrap;
}

.product-card {
  width: calc(25% - 23px);
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 50px;
  position: relative;
}

.product-card:not(:nth-child(4n)) {
  margin-right: 30px;
}

.product-card:nth-child(n+17) {
  display: none;
}

@media (max-width: 768px) {
  .product-card-columns-wrap {
    flex-wrap: unset;
    overflow: scroll;
  }

  .product-card {
    min-width: 140px;
    max-width: 140px;
    margin-bottom: 30px;
  }

  .product-card:not(:last-child) {
    margin-right: 20px;
  }
}

.product-card .img-product {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-card .img-product:before {
  content: "";
  display: block;
  padding-top: 70%;
}

.product-card .img-product img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.product-card .product-info {
  margin-top: 16px;
}

.product-card .product-info h4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  height: 70px;
}
@media (max-width: 768px) {
  .product-card .product-info h4 {
    font-size: 14px;
    height: 64px;
  }
}

.product-card .product-info .price {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}

.product-card .product-card-producer-link {
  display: flex;
  align-items: center;
  background-color: #F5F1EB;
  padding: 12px;
  border: 1px solid #4B3C30;
  position: relative;
  margin-top: 16px;
}
@media (min-width: 769px) {
  .product-card .product-card-producer-link {
    padding: 14px;
  }
}

.product-card .product-card-producer-link .producer-image {
  width: 30px;
  height: 30px;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 8px;
}
@media (min-width: 769px) {
  .product-card .product-card-producer-link .producer-image {
    width: 50px;
    height: 50px;
    border-radius: 20px;
    margin-right: 20px;
  }
}

.product-card .product-card-producer-link .producer-image img {
  width: 100%;
  height: 100%;
}

.product-card .product-card-producer-link .area {
  font-size: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media (min-width: 769px) {
  .product-card .product-card-producer-link .area {
    font-size: 12px;
  }
}

.product-card .product-card-producer-link .name {
  font-size: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media (min-width: 769px) {
  .product-card .product-card-producer-link .name {
    font-size: 14px;
  }
}

.product-card-producer-link::after {
  content: '';
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  border: 1px solid #4B3C30;
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
}

.product-card:nth-child(2n) .product-card-producer-link::before {
  content: '';
  background: url(../images/flower-pink.png) no-repeat center/contain;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -10px;
  left: -10px;
  z-index: 1;
}
.product-card:nth-child(4n - 3) .product-card-producer-link::before {
  content: '';
  background: url(../images/flower-yellow.png) no-repeat center/contain;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -10px;
  left: -10px;
  z-index: 1;
}
.product-card:nth-child(4n - 1) .product-card-producer-link::before {
  content: '';
  background: url(../images/flower-blue.png) no-repeat center/contain;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -10px;
  left: -10px;
  z-index: 1;
}

/*送料無料、残りわずか、売り切れ*/
.product-card .flag-free-shipping .product-info .price::before {
  padding: 4px 4px;
  margin-right: 8px;
  font-size: 12px;
  line-height: 1;
  border-radius: 2px;
  content: "送料無料";
  color: #fff;
  background: #db3347;
}

.product-card .flag-soldout::after,
.product-card .flag-few::after {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 80px;
  height: 40px;
  transform: rotate(-45deg);
  position: absolute;
  top: -6px;
  left: -26px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.8;
}

.product-card .flag-soldout::after {
  content: "SOLD";
  background: #999;
  color: #fff;
  font-size: 12px;
}

.product-card .flag-few::after {
  content: "残りわずか";
  background: #ffeb3b;
  font-size: 12px;
}

/*アニメーション*/
.img-border {
  border: 2px solid transparent;
  transition: all 0.2s;
  overflow: hidden;
}

.img-border::before,
.img-border::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
}

.img-border-wrap:hover .img-border::before,
.img-border-wrap:hover .img-border::after {
  width: 100%;
  height: 100%;
}
.img-border-wrap:hover .img-border::before {
  border-top-color: #FF6E97;
  border-right-color: #FF6E97;
  transition: width 0.2s, height 0.2s 0.2s;
}
.img-border-wrap:hover .img-border::after {
  border-bottom-color: #FF6E97;
  border-left-color: #FF6E97;
  transition: height 0.2s, width 0.2s 0.2s;
}

.container-wave {
  position: relative;
  background: #fff;
}

.container-wave .wave {
  position: absolute;
  height: 87px;
  width: 100%;
  background: #fff;
  bottom: 0;
}

.container-wave .wave::before, .wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100% 50%;
}

.container-wave .wave::before {
  width: 55%;
  height: 109%;
  background-color: #F5F1EB;
  right: -1.5%;
  top: 60%;
}

.container-wave .wave::after {
  width: 55%;
  height: 100%;
  background-color: #fff;
  left: -1.5%;
  top: 40%;
}

.backgroung-title {
  background: url(../images/background-voice.jpg) no-repeat center/cover;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv-img {
  background: url(../images/kv.jpg) no-repeat center;
  width: 75%;
  height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  background-attachment: fixed;
  position: relative;
  background-size: cover;
}
@media (max-width: 1400px) {
  .kv-img {
    background-attachment: unset;
  }
}
@media (max-width: 768px) {
  .kv-img {
    width: 80%;
    height: 80vh;
    padding: 15px;
    background-size: auto 100%;
  }
}

.bg-panel {
  content: '';
  width: 100%;
  height: 80vh;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
}

.bg-panel::after {
  content: '';
  background: url(../images/kv-decoration.png) no-repeat center/contain;
  position: absolute;
  width: 300px;
  height: 170px;
  bottom: -10vh;
  right: 30px;
  z-index: 1;
  opacity: 0.7;
}
@media (max-width: 1200px) {
  .bg-panel::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .bg-panel {
    height: 70vh;
  }
}

.key-message {
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 10px;
  position: absolute;
  top: calc(50% - 130px);
  right: -20%;
  filter: drop-shadow(0px 0px 12px #fff);
}

@media (max-width: 1500px) {
  .key-message {
    right: -25%;
    top: calc(50% - 170px);
    
  }
}
@media (max-width: 768px) {
  .key-message {
    font-size: 1.8rem;
    letter-spacing: 8px;
    text-align: right;
  }
}
@media (max-width: 768px) {
  .key-message span {
    padding: 0 12px;
    background-color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    display: inline-flex;
  }
}

.kv-medal-wrap {
  display: flex;
  align-items: flex-end;
}

.kv-medal-wrap img {
  width: 350px;
}

@media (max-width: 768px) {
  .kv-medal-wrap {
    flex-direction: column;
    width: 100%;
    align-items: unset;
  }

  .kv-medal-wrap img {
    width: 250px;
  }
}

.kv-medal {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(75, 60, 48 ,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.6)); 
  font-weight: 600;
  line-height: 1.8;
}

.kv-medal {
  margin-left: 15px;
}

@media (max-width: 768px) {
  .kv-medal {
    height: 60px;
    width: 100%;
    border-radius: 0;
    font-size: 12px;
    display: none;
  }

  .kv-medal:not(:last-child) {
    margin-bottom: 8px;
  }
}

.top-btn {
  background: #4B3C30;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  transform: translateY(200px);
  transition: all 0.5s;
}

.top-btn::after {
  content: '';
  background: url(../images/flower-pink.png) no-repeat center/contain;
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 10px;
  right: -10px;
  z-index: 1;
}

.top-btn::before {
  content: '';
  background: url(../images/flower-blue.png) no-repeat center/contain;
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: -10px;
  right: -10px;
  z-index: 1;
}

@media (min-width: 769px) {
  .top-btn {
    width: 100px;
    height: 100px;
    bottom: 40px;
    right: 40px;
    bottom: 20px;
  }

  .top-btn::after {
    width: 30px;
    height: 30px;
  }

  .top-btn::before {
    width: 50px;
    height: 50px;
  }
}

.is-visible {
  display: block;
  transform: translateY(0px);
}

.voice-wrap {
  display: flex;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .voice-wrap {
    flex-direction: column;
  }
}

.voice {
  width: 33.3%;
}
@media (max-width: 768px) {
  .voice {
    width: 100%;
  }

  .voice:not(:last-child) {
    margin-bottom: 40px;
  }
}

.voice:not(:last-child) {
  margin-right: 30px;
}

.voice img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.voice-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.voice-name span {
  color: #CAB270;
}

.text-accent {
  color: #CAB270;
  font-weight: 700;
  font-size: 1.1em;
}

.voice-balloon {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 20px;
  font-size: 14px;
  position: relative;
  margin: -30px 15px 0;
}

.voice-balloon::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 20px 15px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: -20px;
  left: calc(50% - 15px);
}

.bg-flower {
  background: url(../images/bg-flower.jpg) no-repeat center/cover;
  background-attachment: fixed;
  position: relative;
}
@media (max-width: 1400px) {
  .bg-flower {
    background-attachment: unset;
  }
}

.iphone .bg-flower {
  background: url(../images/bg-flower.jpg) no-repeat center/auto 100%;
}

.ipad .bg-flower {
  background: url(../images/bg-flower.jpg) no-repeat center/auto 100%;
}

.bg-flower::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.7);
}

.last-message {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 10px;
  filter: drop-shadow(0px 0px 3px #fff);
}
@media (max-width: 768px) {
  .last-message {
    font-size: 16px;
    letter-spacing: 8px;
    margin-bottom: 10px;
  }
}

.btn {
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  display: block;
  padding: calc(1.5rem - 12px) 3rem 1.5rem;
  transition: all 0.5s;
  text-align: center;
  margin: 70px auto 0;
  max-width: 350px;
  width: 90%;
  background: #FF6E97;
}
@media (max-width: 768px) {
  .btn {
    margin: 50px auto 0;
  }
}

.btn:before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #4B3C30;
}

.btn:hover {
  padding: calc(1.5rem - 6px) 3rem;
}

.btn:hover:before {
  top: 0;
  left: 0;
}

.about-wrap {
  display: flex;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .about-wrap {
    flex-direction: column;
  }
}

.about {
  width: calc(33.3% - 10px);
  padding: 50px 30px;
  border: 1px solid #4B3C30;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 30%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,0.7) 100%);
}

.about::before {
  content: '';
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: 2px;
  left: 2px;
  border: 1px solid #4B3C30;
  background: url(../images/bg-flower.jpg) no-repeat center/cover;
  z-index: -1;
  background-attachment: fixed;
}
@media (max-width: 1400px) {
  .about::before {
    background-attachment: unset;
    background-size: 150% auto;
  }
}

.about:not(:last-child) {
  margin: 0 30px 0 0;
}

.about h4 {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.about p {
  font-size: 15px;
}

@media (max-width: 768px) {
  .about {
    width: 100%;
    padding: 30px 20px;
  }

  .about:not(:last-child) { 
    margin: 0 0 30px 0;
  }

  .about h4 {
    font-size: 14px;
    margin-bottom: 14px;
  }
  
  .about p {
    font-size: 13px;
  }
}

.bg-white {
  background-color: #fff;
}

.btn-more-product {
  text-align: right;
  font-weight: 600;
}

.btn-more-product a {
  color: #4B3C30;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  padding-right: 20px;
  font-weight: 700;
}

.btn-more-product a::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 5px;
  height: 10px;
  width: 10px;
  transform: rotate(45deg);
  border-top: 3px solid #4B3C30;
  border-right: 3px solid #4B3C30;
}
