@charset "UTF-8";
/* -----------共通レイアウト----------- */
html {
  font-size: 100%;
  line-height: 1.7;
  scroll-behavior: smooth;
}
body {
  font-family: serif;
  color: #f2f2ec;
  background-color: #719256;
}

a {
  text-decoration: none;
  font-weight: bold;
  color: #f2f2ec;
}
a:hover {
  color: #cd96c3;
}
img {
  max-width: 100%;
  height: auto;
}
.text {
  text-align: center;
  font-size: 1.2rem;
}
.aline-center {
  text-align: center;
}
.wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 4%;
}
.title-deco {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem auto 0;
}
.title-deco img {
  width: 200px;
  height: auto;
}
.category {
  font-size: 2rem;
  text-align: center;
}
.click-hover {
  width: 100px;
  height: auto;
  margin-left: 1rem;
  vertical-align: middle;
  position: relative;
  top: 0;
}
.click-hover:hover {
  top: 3px;
  transition: 0.3s;
}

/* ヘッダー */
.mini-logo img {
  height: 50px;
  width: 200px;
  object-fit: cover;
  padding-left: 1rem;
}
/* ハンバーガーメニュー */
header {
  z-index: 10;
  position: relative;
}
.nav ul {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  font-size: 1.2rem;
  list-style-type: none;
}
.nav li {
  text-align: center;
  height: 80px;
  line-height: 30px;
  user-select: none;
}
.nav a {
  color: #f2f2ec;
  display: block;
}
.nav {
  position: fixed;

  top: 0;
  left: 100%;
  width: 40%;
  height: 100svh;
  background: rgba(95, 94, 82, 0.8);
  transition: all 0.3s;
}
.nav.slide {
  transform: translate3d(-100%, 0, 0);
}
.keep-btn {
  position: fixed;
  top: 0;
  right: 1.5rem;
  transition: all 0.3s;

  display: flex;
  flex-direction: column;
}
.btn {
  width: 40px;
  height: 40px;
  background: transparent; /* 背景色を透明に */
  border: none;
  display: grid;
  place-items: center;
  position: relative; /* スタック調整(ボタン全体をタップ可能に) */
  cursor: pointer;
}
.btn span,
.btn span::before,
.btn span::after {
  content: '';
  display: block;
  width: 35px;
  height: 4px;
  border-radius: 2px;
  background: #fff; /* 3本ラインの色を変更 */
  position: absolute;
  transition: all 0.4s ease-out;
}
.btn span::before {
  bottom: 8px;
}
.btn span::after {
  top: 8px;
}
.btn.open span {
  transform: rotate(180deg);
}
.btn.open span::before {
  bottom: 0;
  width: 18px;
  transform: rotate(45deg) translate(2px, 6px);
}
.btn.open span::after {
  top: 0;
  width: 18px;
  transform: rotate(-45deg) translate(2px, -6px);
}

/* フッター */
.copyright {
  background-color: #e5dec6;
  text-align: center;
  padding: 1rem 0;
  margin: 3rem auto 0;
  color: #686760;
}

/* -------------------TOPページ-------------------------- */
/* ヘッダー */
.logo {
  background-image: url(../products/top-page.JPG), url(../products/bascket3.jpeg);
  background-size: cover;
  background-position-y: 60%;
  animation: fadeIn 5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.logo img {
  width: 100%;
  /*   max-width: 700px;
 */
  height: 100svh;
  display: grid;
  place-items: center;
  place-content: center;
  margin-inline: auto;
}

.main-text {
  font-size: 1.5rem;
  text-align: center;
  margin: 2rem 1rem;
}
.gifts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3%;
}
.gifts img {
  max-width: 250px;
  width: 100%;
  height: auto;
  border: 5px double #fff;
}
#news-scroll {
  height: 200px;
  overflow-y: scroll;
}
.news-container {
  margin-bottom: 3rem;
  font-size: 18px;
}
.news-container div {
  display: flex;
  padding: 1em 0.5em;
  border-bottom: 1px dotted #f2f2ec;
}
.news-container dt {
  width: 30%;
}
.news-container dd {
  width: 70%;
  text-align: left;
}
.news-container img {
  width: 80px;
  height: auto;
  margin-left: 1rem;
  vertical-align: middle;
}
.mama-link {
  font-family: 'Chewy', system-ui;
  font-weight: 400;
  font-style: normal;
}
.grid {
  display: grid;
  gap: 2rem 2rem;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  margin-top: 3rem;
}
.item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.lavande-insta {
  display: flex;
  gap: 1.5rem;
}
.circle {
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
.insta-link {
  display: flex;
  align-items: center;
  position: relative;
}
.mini-insta {
  position: absolute;
  top: 6px;
  left: 80px;
  width: 20px;
  height: 20px;
}
.big-letter {
  font-size: 1.5rem;
}
.lavande-insta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.article-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem auto;
  cursor: pointer;
}

/* 通販サイトリンク紹介 */

.icon {
  width: 130px;
  height: 130px;
  border-radius: 20%;
  background-color: #fff;
}
.icon img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.icon-base {
  width: 130px;
  height: 130px;
  border-radius: 20%;
  /*   background-color: #f1f5f6;*/
  overflow: hidden;
  position: relative;
}

.icon-base img {
  height: 160px;
  border-radius: 20%;
  object-fit: cover;
  position: absolute;
  top: -16px;
  left: 0;
}

.icon-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 0;
}
.link-area {
  display: block;
}
@media (max-width: 699px) {
  .main-text br {
    display: none;
  }
  .title-deco {
    padding: 3rem auto 0;
  }
  .title-deco img {
    width: 100px;
    height: auto;
  }
  .category {
    font-size: 20px;
  }
  .text {
    font-size: 14px;
    margin: 0 auto 10px;
  }
  .title-deco {
    margin: 5rem auto 0;
  }
  .logo img {
    height: 300px;
  }
  .keep-btn {
    position: fixed;
    top: 0;
    right: 1rem;
  }
  .nav {
    width: 50%;
  }
  .nav ul {
    font-size: 1rem;
  }
  .main-text {
    font-size: 1rem;
  }
  .attention {
    font-size: 0.8rem;
  }
  .grid {
    gap: 0.6rem;
  }
  .gifts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .news-container {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
  .news-container div {
    display: block;
    padding: 1em 0.5em;
    border-bottom: 1px dotted #f2f2ec;
  }
  .news-container dt {
    width: 100%;
  }
  .news-container dd {
    width: 100%;
    text-align: left;
  }
  .news-container img {
    width: 60px;
    height: auto;
    margin-left: 0.6rem;
    vertical-align: middle;
  }

  .selling-link {
    font-size: 1rem;
  }

  .icon {
    width: 60px;
    height: 60px;
  }
  .icon img {
    width: 60px;
    height: 60px;
  }

  .icon-base {
    width: 60px;
    height: 60px;
    border-radius: 20%;
    overflow: hidden;
  }
  .icon-base img {
    height: 60px;
    top: 0;
  }

  .article-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .lavande-insta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
  }
  .circle {
    padding: 0;
  }
  .big-letter {
    font-size: 1.2rem;
    line-height: 1.2;
    text-align: center;
  }
}

/* ---------------------products----------------------- */
.click {
  display: flex;
  align-items: center;
  justify-content: center;
}

[value='All']:checked ~ .targets [data-category] {
  display: block;
}
[value='bascket']:checked ~ .targets .target:not([data-category~='bascket']),
[value='swag']:checked ~ .targets .target:not([data-category~='swag']),
[value='wreath']:checked ~ .targets .target:not([data-category~='wreath']),
[value='frame.board']:checked ~ .targets .target:not([data-category~='frame.board']),
[value='season.others']:checked ~ .targets .target:not([data-category~='season.others']) {
  display: none;
}

.targets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.targets img {
  width: 100%;
  aspect-ratio: 1/1;
}
.search-container {
  margin: 1.5rem;
  user-select: none;
}
.search-container label {
  margin-right: 0.8rem;
  font-size: 20px;
}
.targets li {
  list-style: none;
}

@media (max-width: 699px) {
  .click {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }
  .click img {
    width: 100px;
    height: auto;
  }
}

/* ページトップへボタン */
.page-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none; /* ress.css */
  background: #ab6a9f;
  cursor: pointer; /* ress.css */
  position: fixed;
  right: 50px;
  bottom: 70px;
  opacity: 0;
  visibility: hidden; /* 要素のイベント発行をなくす（無効にする）
	pointer-events: none;でもOK */
  transition: 0.3s;
}
.page-top:hover {
  background: #71466a;
}
.page-top::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-left: 3px solid #fff; /* ress.css - box-sizing考慮 */
  border-top: 3px solid #fff;
  transform: rotate(45deg);
  margin: 6px auto 0;
}
/* クラス追加時の指定 */
.is-active {
  opacity: 1;
  visibility: visible; /* pointer-events: auto;でもOK */
}
.sp-only {
  display: none;
}
@media (max-width: 699px) {
  .targets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 0.8rem;
    margin-top: 1rem;
  }
  .css-br::after {
    content: '\A';
    white-space: pre;
  }
  .sp-only {
    display: block;
  }
}
/* -------------before buyページ-------------- */

.box {
  margin: 2rem auto 2rem;
  position: relative;
}

.box h3::before {
  content: '';
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  background: #ab6a9f;
  top: 8px;
  left: -20px;
  transform: rotate(45deg);
}
.beforebuy-container {
  padding: 0 10px 3rem;
  margin: 0 4%;
}
@media (max-width: 699px) {
  .small-cat {
    font-size: 1.3rem;
  }
}
/* --------------About usページ--------------- */
.about-container {
  display: flow-root;
  margin: 2rem 4% 2rem;
}
.about-pic img {
  width: 100%;
  max-width: 300px;
  margin-left: 1rem;
  float: right;
}
@media (max-width: 699px) {
  .about-pic img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding-inline: 1rem;
    margin: 1rem auto 1rem;
  }
  .about p {
    font-size: 0.9rem;
  }
}
/* -------------------Contactページ-------------------------- */

.contact-form {
  padding: 1rem 0;
}
.contact-form div {
  padding: 1rem 0;
}
input,
textarea {
  background-color: #f1f5f6;
}
.contact-form label:not(.purpose) {
  display: block;
  font-size: 1.2rem;
}
.gift-for label {
  font-size: 1.2rem;
  padding-left: 1rem;
}
label[purpose] {
  white-space: nowrap;
}
textarea {
  width: 500px;
  height: 200px;
}

.send-button img {
  width: 200px;
  height: auto;
  padding: 1rem;
}

@media (max-width: 699px) {
  form p:nth-of-type(2) {
    font-size: 14px;
  }
  .gift-for label {
    white-space: nowrap;
    font-size: 1rem;
  }
  textarea {
    width: 300px;
  }
  .sp-space {
    width: 90%;
  }

  textarea {
    width: 90%;
    height: 200px;
  }
}
