@charset "utf-8";


html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  background-color: #f5f3ed;
  font-family: "Poppins", sans-serif;
  color: #333;

}

/* 見だし部分 */
h2 {
  text-align: center;
  font-size: 30px;
  /* margin: 100px; */
  color: #333;
}

/* ここまで */

/* 一番上部の帯部分 */

.info-bar {
  background-color: #4A4726;
  color: #FFF;
  text-align: center;
  padding: 1px 0;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  width: 100%;
  /* 幅を100%に設定 */
  box-sizing: border-box;
  /* 通常フロー内に表示 */
}

/* ここまで */


h1 img {
  width: 300px;
  /* 大きめに設定 */
  height: auto;
  object-fit: contain;
  margin-left: 40px;
  transition: all 0.3s ease;
}

/* ここまで */



header {
  width: 100%;
  height: 150px;
  background-color: #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #f5f3ed;
}



ul {
  display: flex;
  list-style: none;
}

ul.menu2 img {
  width: 20px;
}

.headeritem {
  margin-left: 40px;
}

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

nav {
  margin-right: 70px;
}

a:hover {
  opacity: 0.5;
}


/* メイン */

/* アイテムリスト */

.item-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-list2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

ul.product-list {
  display: flex;
  justify-content: space-between;
  /* または space-evenly */
  gap: 40px;
  /* 各カード間の等間隔 */
  padding: 0 20px;
  /* 左右のパディングも調整 */
}


.item img {
  height: 400px;
  border-radius: 8px;
}

.item2 img {
  width: 400px;
  border-radius: 8px;
}

.item2 p {
  white-space: nowrap;
  /* 改行を防止 */
}


/* インスタ部分のCSS */

.square_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
  max-width: 1200px;
  overflow: hidden;
}

.square_contents a {
  display: block;
  position: relative;
  width: 31%;
  margin: 1%;
}

.square_contents a::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.square_contents img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  object-fit: cover;
  /* border-radius: 30px; */
  transition: 1s all;
}

.square_contents img:hover {
  transform: scale(1.1, 1.1);
  transition: 0.8s all;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);

}



/* アバウト部分のCSS */
.section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  /* margin-top: 150px; */
}

.content {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.text {
  flex: 1 1 400px;
}

.text h2 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #4A4726;
}

.text-inner {
  line-height: 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  text-align: center;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.badge {
  background-color: #E0E0E0;
  color: #333;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
}




.body1 {
  /* background-color: #f4f4f4; */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.image-wrapper {
  position: relative;
  width: 500px;
  max-width: 90%;
  margin-left: 50px;
  margin-bottom: 150px;

}

.image-wrapper .background-img {
  width: 100%;
  display: block;
  border-radius: 8px;
  height: 500px;
  object-fit: cover;
}

.image-wrapper .overlay-img {
  position: absolute;
  top: 90px;
  left: -30px;
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* アバウトのアニメーションCSS */
.is_animation {
  opacity: 0;
  transition: 1.3s;
  transform: translate(0, 30px);
}

.is_animation.is_show {
  opacity: 1.0;
  transform: translate(0, 0);
}

/* アイテムリストのアニメーションCSS */
.fade-scroll {
  opacity: 0;
  transform: translateY(30px);
  /* 少し下から上がる演出 */
  transition: opacity 2s ease, transform 2s ease;
}

.fade-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* アバウトの文字のアニメーション */
.slide-text {
  opacity: 0;
  transform: translateX(-50px);
  /* 左から登場 */
  transition: opacity 1s ease, transform 2s ease;
}

.slide-text.visible {
  opacity: 1;
  transform: translateX(0);
  /* 元の位置に戻す */
}

/* アイテムリストの画像拡大CSS */

#product-image {
  transition: transform 0.8s ease, box-shadow 0.5s ease;
}

#product-image:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* 区切りの横線 */
.short-line {
  border-top: 1px solid #ccc;
  /* 線の色と太さ */
  width: 1200px;
  /* 線の長さ（必要に応じて変更） */
  margin: 30px auto;
  /* 上下40px、左右は自動で中央揃え */
}

/* ここまで */

/* インスタロゴ */
.instalogo {
  display: block;
  /* 画像をブロック要素にして中央寄せ可能に */
  margin: 0 auto;
  /* 左右自動マージンで中央寄せ */
  width: 50px;
  /* 好きなサイズに調整（pxや%で） */
  height: auto;
  /* 縦横比を維持して縮小 */
  margin-bottom: 50px;
}

/* ここまで */

.line-wrapper {
  text-align: center;
  margin: 80px 0;
}

.animated-line {
  display: inline-block;
  width: 1200px;
  height: 1px;
  background-color: #888;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s ease-out;
}

.animated-line.visible {
  transform: scaleX(1);
}

/* インスタ部分のボタンのCSS */

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  /* 必要に応じて調整 */
}

/* ボタンスタイル */
.outline-button {
  display: inline-block;
  padding: 20px 40px;
  border: 1px solid #333;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  /* font-family: sans-serif; */
  transition: all 0.3s ease;
}

/* ホバーエフェクト（任意） */
.outline-button:hover {
  background-color: #333;
  color: #fff;
}

/* ここまで */

/* インスタ部分の文字 */
.followus {
  display: block;
  color: #4A4726;
  font-weight: bold;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.title_insta h2 {
  margin: 0;
}

/* ここまで */

/* プロダクト見出しのボタンタグ */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 150px;
  /* 上下・左右の余白 */
}

.heading {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.view-all {
  font-size: 16px;
  color: #333;

  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.view-all:hover {
  text-decoration: underline;
}

/* インフォメーション */

.info-list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;

}

.info-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 0;
  /* border-bottom: 1px solid #ddd; */
}

.info-date {
  color: #888;
  font-size: 14px;
  min-width: 150px;
}

.info-title {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s;
}

.info-title:hover {
  text-decoration: underline;
  background-color: #333;
  color: #fff;

}

/* ここまで */

/* フッター */

.footer {
  padding: 40px 20px;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  color: #333;
}

.footer-title {
  /* font-size: 28px;
  font-weight: bold;
  color: #556038; */
  margin: 0;

}

.footer-title img {
  width: 300px;
  /* 大きめに設定 */
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;


}

.footer-sub {
  font-size: 16px;
  margin: 10px 0 20px;
}

.footer-icons {
  margin-bottom: 20px;
}

.sns-icon {
  width: 30px;
  height: 30px;
  margin: 10px 10px;
  transition: opacity 0.3s;
}

.sns-icon:hover {
  opacity: 0.7;
}

.footer-links {
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  margin: 0 5px;
}

.footer-links a:hover {
  text-decoration: underline;
}

footer .copyright {
  font-size: 13px;
  color: #888;
  margin-bottom: 30px;
}

/* ここまで */

/* はんばーがーメニュー練習 */

#nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ハンバーガー非表示（PC） */
.hamburger {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 20px;
}



/* メイン画像編集のCSS */

#photo {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 7 / 4.2;
  /* 元が 1400x840 → 比率維持 */
  overflow: hidden;
}

#photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 3s ease;
  z-index: 1;
  border-radius: 8px;

}

#photo img.active {
  opacity: 1;
  z-index: 2;
}


/* メイン画像 */
.hero {
  padding: 100px 5%;
  background-color: #ede6d6;
}

.hero-content {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 45%;
  color: #4A4726;
}

.hero-text h1 {
  font-size: 4.0rem;
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;

}

.hero-text p {

  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 50px;
  color: #888;

}



.btn {
  background-color: #4A4726;
  color: white;
  padding: 14px 36px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  /* border-radius: 3px; */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

/* .btn:hover {
  background-color: #926e4c;
} */

.dots {
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #CCC;
  border-radius: 50%;
  margin-right: 8px;
}

.dot.active {
  background: #b79a7c;
}

.hero-image {
  flex: 1 1 50%;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 700px;
  object-fit: contain;
  transform: scale(1.05);
}

.hero-image {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.slider {
  position: relative;
  width: 100%;
  height: auto;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  top: 0;
  left: 0;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.06),
    /* ソフトシャドウ */
    inset 0 0 60px rgba(255, 255, 255, 0.2);
  /* ハイライト */
  filter: brightness(1.08) contrast(1.1);
  /* 少し明るくコントラスト */
  transition:
    opacity 1s ease-in-out,
    transform 1s ease-in-out,
    filter 1s ease;
  /* フェード＋拡大＋フィルターを滑らかに */
}

/* 表示時にゆるやかに拡大（ふわっと浮き上がる感じ） */
.slide.active img {
  transform: scale(1.04);
  filter: brightness(1.1) contrast(1.15);
}

/*非表示時もゆるやかにフェードアウト */
.slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* ふわっとフェードイン */
.slide.active {
  opacity: 1;
}


/* 練習 */

.container_01 {
  margin: 0;
  padding: 0;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #a5cbd7; */
  overflow: hidden;
}

.container_01 a:hover {
  opacity: 0.7;
}

.scroll-down_01 {
  position: relative;
  width: 200px;
  height: 200px;
  color: #333;
  font-family: serif;
  text-decoration: none;
}

.circle-text_01 {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circle-text_01 span {
  position: absolute;
  left: 50%;
  font-size: 16px;
  transform-origin: 0 100px;
}

.arrow_01 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 50px;
  transform: translate(-50%, -50%);
  animation: scroll_01 3s infinite;
}

.arrow_01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: #333;
  transform: translateX(-50%);
}

.arrow_01::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #333;
  transform: translateX(-50%) rotate(-45deg);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}

/* 5月9日手書き風のアニメーションCSS */

/* .heartPath {
  fill: none;
  stroke: red;
  stroke-miterlimit: 10;
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
  animation: pathAnime 3s both;
}

@keyframes pathAnime {
  100% {
    stroke-dashoffset: 0;
  }

} */


/* メディアクエリ */

@media screen and (max-width: 768px) {

  /* フッター部分 */
  .footer-title {
    font-size: 24px;
  }

  .footer-sub {
    font-size: 14px;
  }

  .sns-icon {
    width: 32px;
    height: 32px;
    margin: 0 8px;
  }

  .footer-links {
    font-size: 13px;
    display: block;
    text-align: center;
  }

  .footer-links a {
    display: block;
    margin: 4px 0;
  }


  .title_insta h2 {
    font-size: 20px;
  }

  /* インフォメーション部分 */
  .info-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-date {
    margin-bottom: 4px;
    min-width: auto;
  }

  .info-title {
    margin-left: 0;
  }

  /* アバウト部分 */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px;
    gap: 12px;
  }

  .heading {
    font-size: 20px;
  }

  .view-all {
    font-size: 14px;
  }


  /* 画像部分 */
  .image-wrapper {
    width: 100%;
    margin-left: 0;
    margin-bottom: 100px;
  }

  .image-wrapper .background-img {
    height: 400px;
  }

  .image-wrapper .overlay-img {
    width: 200px;
    top: 60px;
    left: -20px;
  }

  /* テキスト部分 */

  .section {
    padding: 40px 16px;
  }

  .content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .text {
    flex: 1 1 100%;
  }

  .text h2 {
    font-size: 25px;

  }

  .text-inner {
    font-size: 13px;
  }

  .badge {
    font-size: 13px;
    padding: 5px 12px;
  }

  /* インスタ部分 */

  .square_contents a {
    width: 48%;
    margin: 1%;
  }

  /* メイン画像 */
  #photo {
    padding: 0 10px;
    /* スマホで左右に余白を作るなどの調整 */
  }

  /* ハンバーガーメニュー */
  .hamburger {
    display: block;
  }

  #nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f5f3ed;
    position: absolute;
    top: 150px;
    left: 0;
    transition: all 0.5s ease;
    /* ← ここを変更 */

  }

  #nav-menu.active {
    display: flex;
  }

  .menu1,
  .menu2 {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .headeritem {
    margin: 10px 0;
  }

  h1 img {
    width: 200px;
    /* スマホ用にも大きめキープ */
  }

  .footer-title img {
    width: 200px;
    /* スマホ用にも大きめキープ */
  }
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: block;
    z-index: 1001;
  }

  #nav-menu {
    flex-direction: column;
    background-color: #f5f3ed;
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: all 0.5s ease;
    /* ← ここを変更 */
  }

  #nav-menu.active {
    max-height: 500px;
  }

  .menu1,
  .menu2 {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .headeritem {
    margin: 10px 0;
  }

  h1 img {
    width: 300px;
    text-align: center;
  }

  .footer-title img {
    width: 300px;
  }

  .line-wrapper {
    margin: 40px 0;
    /* 上下マージンを少し縮める */
  }

  .animated-line {
    width: 95%;
    /* 画面に対して余白を小さくして見やすく */
  }
}

@media screen and (max-width: 1024px) {
  h1 img {
    width: 300px;
  }

  .footer-title img {
    width: 300px;
  }

  .product-list li {
    width: 48%;
    /* 2列表示（タブレット用） */
  }
}

@media screen and (max-width: 768px) {
  h1 img {
    width: 200px;
  }

  .footer-title img {
    width: 200px;
  }
}

@media (max-width: 768px) {
  ul.product-list {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }

  .item-list,
  .item-list2 {
    flex-direction: column;
    align-items: stretch;
  }

  .item img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  ul.product-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 15px;
  }

  .item {
    flex: 1 1 calc(50% - 30px);
    /* 2列レイアウト */
    max-width: calc(50% - 30px);
  }



  .item img {
    width: 100%;
    height: auto;
  }

  .item2 img {
    width: 100%;
    height: auto;
  }

  .item-list,
  .item-list2 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

}

@media (max-width: 768px) {

  .square_contents a {
    width: 98%;
    margin: 1% auto;
  }

  #photo {
    aspect-ratio: 1 / 1;
  }



  .line-wrapper {
    margin: 40px 0;
  }

  .animated-line {
    width: 95%;
  }

  .info-bar {
    font-size: 9px;
    /* フォントサイズを小さくする */
    padding: 5px 0;
    /* 上下の余白を増やして文字が切れないように */
    letter-spacing: 0.5px;
    /* スペースを少し減らす */
  }

}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .hero-image {
    flex: 1 1 100%;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-image img {
    max-width: 100%;
    transform: scale(1);
  }
}



/* --- レスポンシブ（タブレット以下） --- */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    padding: 3rem 4vw;
  }

  .hero-text {
    flex: none;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-image {
    max-width: 90%;
    margin-bottom: 2rem;
  }
}

/* --- スマホ対応（640px以下） --- */
@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1.3rem;
  }

  .hero-text .btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }

  .dots {
    gap: 0.5rem;
  }

  .slide img {
    border-radius: 15px;
  }
}