@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

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

body {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff7f9c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 9999;
}
.back-to-top:hover {
  background-color: #ff4b70;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

html {
  scroll-behavior: smooth;
}

.section-title {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 40px;
  padding: 100px;
  background-color: #F1EFE9;
}

#header img {
  display: block;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#header ul {
  position: absolute;
  top: 30px;
  right: 60px;
  display: flex;
  justify-content: flex-end;
}
#header li {
  font-size: 18px;
  font-weight: bold;
  margin-left: 30px;
  color: #333;
}
#header a:hover {
  color: #e03131;
  transition: all 0.5s;
}
#header h1 {
  position: absolute;
  top: 60%;
  left: 40%;
  transform: translate(-50%, -50%);
  font-size: 6vw;
  color: #333;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, 0 0 4px #fff;
}

#logo img {
  max-width: 20%;
  height: auto;
  position: absolute;
  top: 15%;
  left: 10%;
  transform: translate(-50%, -50%);
}

#concept {
  background-color: #F1EFE9;
}
#concept .concept {
  position: relative;
  text-align: center;
  background: url("../../img/background.png") no-repeat center/cover;
  padding: 100px 60px;
}
#concept .concept::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 0;
}
#concept .concept h3,
#concept .concept p,
#concept .concept img {
  position: relative;
  z-index: 1;
}
#concept .concept h3 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin-bottom: 100px;
}
#concept .concept img {
  display: block;
  width: 60%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 60px;
}
#concept .concept p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
}

#about .about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  padding: 100px 60px;
}
#about .about img {
  width: 50%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .about-text {
  display: flex;
  width: 50%;
  height: 100%;
  text-align: center;
  flex-direction: column;
  justify-content: flex-end;
}
#about .about-text h3 {
  font-size: 30px;
  margin-bottom: 50px;
}
#about .about-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 50px;
}
#about .btn {
  position: relative;
  width: 160px;
  height: 50px;
  display: inline-block;
  align-self: center;
  line-height: 50px;
  color: #000;
  transition: all 0.3s ease;
  /* 右下角の線 */
  /* 左上角の線 */
  /* 縦線・横線のサイズ */
  /* ホバー時のアニメーション */
}
#about .btn span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 14px;
  text-align: center;
}
#about .btn::before, #about .btn::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: #e03131;
  transition: all 0.3s ease;
}
#about .btn span::before,
#about .btn span::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #e03131;
  transition: all 0.3s ease;
}
#about .btn::before,
#about .btn span::before {
  width: 2px;
  height: 50%;
}
#about .btn::after,
#about .btn span::after {
  width: 20%;
  height: 2px;
}
#about .btn:hover::before,
#about .btn span:hover::before {
  height: 100%;
}
#about .btn:hover::after,
#about .btn span:hover::after {
  width: 100%;
}

#feature {
  background-color: #F1EFE9;
  padding: 100px 60px;
}
#feature h3 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 100px;
}
#feature p {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 100px;
}
#feature .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
#feature .item {
  text-align: center;
  padding: 16px;
  border: 1px solid #ddd;
  box-shadow: 0 0 8px 4px #ccc;
  background: #fafafa;
}
#feature img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}
#feature .btn-wrap {
  text-align: center;
  margin-top: 100px;
}
#feature .btn-2 {
  display: inline-block;
  font-size: 16px;
  border: 2px solid #333;
  border-radius: 6px;
  color: #333;
  padding: 12px 40px;
  text-decoration: none;
  transition: 0.3s;
}
#feature .btn-2:hover {
  color: #fafafa;
  background: #333;
}
#feature .category {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}
#feature .text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05rem;
  margin-bottom: 12px;
}

#pickup {
  padding: 100px 60px;
}
#pickup .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
}
#pickup li img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

#shop {
  background-color: #F1EFE9;
}
#shop h2 {
  padding: 100px 160px 0px;
}
#shop ul {
  list-style: none;
  padding: 50px 160px 100px;
}
#shop ul li {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
#shop ul li:first-child {
  margin-bottom: 20px;
  border-bottom: 1px dashed #333;
}
#shop ul li:last-child {
  padding-bottom: 20px;
  border-bottom: 1px dashed #333;
}

#online-shop .shop-bg {
  display: flex;
  position: relative;
  height: 600px;
  align-items: center;
  justify-content: center;
  padding: 100px 60px;
  background: url("../../img/3.png") no-repeat center/cover;
}
#online-shop .shop-frame {
  text-align: center;
  padding: 50px 60px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  /* optional: 背景を少しぼかす */
  background-color: rgba(255, 255, 255, 0.2);
  /* 半透明白 */
}
#online-shop .shop-frame h2 {
  font-size: 40px;
  color: #333;
  margin-bottom: 50px;
}
#online-shop .shop-frame p {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
  margin-bottom: 30px;
}
#online-shop .btn-wrap {
  text-align: center;
  margin-top: 100px;
}
#online-shop .btn-2 {
  display: inline-block;
  font-size: 16px;
  border: 2px solid #333;
  border-radius: 6px;
  color: #333;
  padding: 12px 40px;
  text-decoration: none;
  transition: 0.3s;
}
#online-shop .btn-2:hover {
  color: #fafafa;
  background: #333;
}

#contact .form {
  margin: 0 auto;
  width: 70%;
  padding: 100px 80px;
}
#contact .item {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid #ddd;
}
#contact .item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
#contact .item-label {
  width: 100%;
  max-width: 248px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
#contact .form-item-label-required {
  flex: 0 0 248px;
  font-size: 16px;
  font-weight: bold;
  line-height: 48px;
  border-radius: 6px;
  margin-right: 8px;
  padding: 2px 4px;
  color: #fafafa;
  background-color: red;
}
#contact .form-item-input {
  width: 100%;
  height: 30px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 15px;
  background-color: #eaedf2;
}
#contact .form-item-textarea {
  width: 100%;
  height: 216px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px;
  background-color: #eaedf2;
}
#contact .form-btn {
  display: block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 50px auto 0;
  padding: 12px 50px;
  border: 2px solid #333;
  border-radius: 6px;
  color: #333;
  background-color: #fafafa;
  transition: 0.3s;
}
#contact .form-btn:hover {
  color: #fafafa;
  background-color: #333;
}

footer {
  background-color: #F1EFE9;
}
footer .copy-right p {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  padding: 50px 80px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .section-title {
    font-size: 28px;
    padding: 60px 30px;
  }
  #header img {
    height: 70vh;
    background-position: top;
  }
  #header h1 {
    top: 40%;
    font-size: 8vw;
  }
  #logo img {
    height: 20%;
    top: 110px;
  }
  #nav ul {
    top: 30px;
    right: 30px;
  }
  #concept .concept {
    padding: 60px 30px;
  }
  #concept .concept h3 {
    font-size: 26px;
    margin-bottom: 60px;
  }
  #concept .concept img {
    width: 80%;
    margin-bottom: 40px;
  }
  #about .about {
    flex-direction: column;
    gap: 40px;
  }
  #about .about img {
    width: 80%;
  }
  #about .about-text h3 {
    font-size: 26px;
    margin-bottom: 30px;
  }
  #about #feature h3 {
    font-size: 26px;
    margin-bottom: 60px;
  }
  #about #feature .grid {
    gap: 24px;
  }
  #about #contact .form {
    padding: 60px 20px;
    max-width: 100%;
  }
  #about #contact .item {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }
  #about #contact .item-label {
    margin-bottom: 8px;
    max-width: 100%;
  }
  #about #contact .form-btn {
    width: 100%;
    max-width: 300px;
    padding: 10px 0;
    margin: 30px auto 0;
  }
  #about footer .copy-right p {
    font-size: 14px;
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .back-to-top {
    font-size: 12px;
  }
  .section-title {
    font-size: 20px;
    padding: 30px 20px;
  }
  #header img {
    max-height: 60vh;
  }
  #header h1 {
    font-size: 36px;
    top: 30%;
  }
  nav {
    display: none;
  }
  #logo img {
    height: 15%;
    position: absolute;
    top: 8%;
    left: 18%;
  }
  #concept .concept {
    padding: 30px 20px;
  }
  #concept .concept h3 {
    font-size: 18px;
    margin-bottom: 25px;
  }
  #concept .concept p {
    width: 100%;
    font-weight: normal;
  }
  #concept .concept img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  #about .about {
    flex-direction: column;
    padding: 50px 30px;
    gap: 15px;
  }
  #about .about img {
    width: 100%;
  }
  #about .about .about-text {
    width: 100%;
  }
  #about .about .about-text h3 {
    font-size: 20px;
    margin-bottom: 25px;
  }
  #about .about .about-text p {
    width: 100%;
    font-size: 16px;
    margin-bottom: 25px;
  }
  #about .btn {
    width: 120px;
    height: 40px;
  }
  #about .btn span {
    font-size: 12px;
  }
  #feature {
    padding: 50px 20px;
  }
  #feature h3 {
    font-size: 20px;
    margin-bottom: 50px;
  }
  #feature p {
    width: 100%;
    font-size: 16px;
    margin-bottom: 50px;
  }
  #feature .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #feature .item {
    padding: 12px;
  }
  #feature .btn-wrap {
    margin-top: 50px;
  }
  #feature .btn-2 {
    padding: 10px 30px;
    font-size: 14px;
  }
  #pickup {
    padding: 50px 20px;
  }
  #pickup .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #shop h2 {
    font-size: 20px;
    padding: 50px 20px 0;
  }
  #shop ul {
    padding: 25px 20px 50px;
  }
  #shop ul li {
    font-size: 16px;
    margin-bottom: 12px;
  }
  #online-shop .shop-bg {
    height: auto;
    padding: 50px 20px;
  }
  #online-shop .shop-frame {
    padding: 25px 15px;
  }
  #online-shop .shop-frame h2 {
    font-size: 25px;
  }
  #online-shop .shop-frame p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  #online-shop .btn-2 {
    font-size: 14px;
    padding: 10px 30px;
  }
  #contact .form {
    padding: 50px 0;
  }
  #contact .item {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
  }
  #contact .item-label {
    margin-bottom: 5px;
    font-size: 14px;
  }
  #contact .form-item-label-required {
    font-size: 14px;
  }
  #contact .form-item-input,
#contact .form-item-textarea {
    font-size: 14px;
  }
  #contact .form-btn {
    width: 160px;
    font-size: 14px;
    padding: 8px;
    margin-top: 12px;
  }
  footer .copy-right p {
    font-size: 12px;
    padding: 15px 20px;
  }
}
/*# sourceMappingURL=style.css.map */