@charset "UTF-8";

/* 全体の設定 */
body {
  margin: 0;
  color: #333333;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* ===============================
   Layout Base
================================ */

:root{
  --header-height:100px;
  --container:1200px;
}

main{
  padding-top:var(--header-height);
}

/* 共通コンテナ */

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 40px;
}

h2 {
  font-size: 4rem;
  font-family: "Aboreto", system-ui;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #848484;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2); /* ← 軽い影 */
  letter-spacing: 0.1em;
  margin: 0;
}

h3 {
  font-size: 1.5rem
}

.pc-none {
  display: block;
}

figure {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

article {
  max-width: 1200px;
  padding: 80px 0px 0px 0px;
  margin: 0 auto;
}

main article {
  margin: 0;
  padding: 0;
}

/* 全体の設定　- ヘッダー */
#site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:80px;

  background:rgba(255,255,255,0.95);
  box-shadow:0 2px 10px rgba(0,0,0,0.1);

  z-index:1000;
}

.header-inner{
  max-width:1200px;
  margin:auto;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
}

/* トップページだけ最初ヘッダー非表示 */
.home #site-header {
  opacity: 0;
  transform: translateY(0);
  transition: 1.5s;
}

.home #site-header.show-header{
  opacity:1;
  transform: translateY(0);
}

header#site-header {
  position: fixed;
   top:0px;
  left:0;
  width:100%;
   background: rgba(255,255,255,0.95); /* ←これを追加 */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.6s ease;
  z-index: 1000;
}

header#site-header.fixed {
 position: fixed;
 top:0;
 left:0;
 width:100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 1;
  /* animation: fadeDown 0.6s ease forwards; */
}

/* フェードダウンアニメーション */
@keyframes fadeDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

    .header-logo {
      width: auto;
  max-width: 300px;
  margin: 0; /* 不要な余白を削除 */
  display: flex;
  align-items: center; /* ロゴ画像を縦中央揃え */
      flex-shrink: 0; /* ロゴが縮まないように */
    }
   
    .header-logo img {
      height: 100px; /* 高さを明示的に指定すると揃えやすい */
      width: auto;       /* 幅は自動調整（縦横比を保つ） */
      max-width: 100%;   /* 親要素より大きくならないように */
    }

    .hamburger {
      display: none; /* スマホ用ならJSとCSSで制御 */
    }

    /* PCナビ */

.pc-nav ul{
  display:flex;
  gap:30px;
  align-items: center;
  font-size: 1.1rem;
}

.pc-nav a{
  text-decoration:none;
  color:#333;
  font-family:"Aboreto";
}

.pc-nav a:hover{
  color:#76be69;
}


/* ONLINE STORE ボタン */
.navi01 .online-store a {
  display: flex;
  align-items: center;
  gap: 10px;
background: #76be69;
  padding: 12px 32px;   /* ← 大きめ */
  border: 2px solid #76be69;
  border-radius: 50px;

  font-size: 1.05rem;   /* ← 少し大きく */
  font-weight: 500;
  letter-spacing: 1.5px;

  white-space: nowrap;
  line-height: 1;  

  color: #fff;

  transition: all 0.3s ease;
}
/* カゴアイコン */
.cart-icon {
  fill: #fff;
}

.navi01 .online-store a .cart-icon {
  width: 20px;
  height: 20px;
}

/* hover */
.navi01 .online-store a:hover {
  background: #7cbfea;
  color: #fff;
  border: 2px solid #7cbfea
}

.navi01 .online-store a:hover .cart-icon {
  color: #fff;
}

/* ======================
ハンバーガー
====================== */

.hamburger{
  display:none;
  width:40px;
  height:30px;
  cursor:pointer;
  position:relative;
  z-index:3000;
}

.hamburger span{
  position:absolute;
  width:100%;
  height:2px;
  background:#848484;
  transition:0.3s;
}

.hamburger span:nth-child(1){top:0;}
.hamburger span:nth-child(2){top:14px;}
.hamburger span:nth-child(3){bottom:0;}

/* アニメーション */

.hamburger.active span:nth-child(1){
  transform:rotate(45deg);
  top:14px;
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg);
  bottom:14px;
}

/* ======================
SPメニュー
====================== */

.sp-nav{
  position:fixed;
  top:0;
  right:-100%;
  width:80%;
  max-width:320px;
  height:100vh;

  background:rgba(71,70,73,0.8);

  display:flex;
  justify-content:center;
  align-items:center;

  transition:0.4s;
  z-index:2000;
}

.sp-nav.active{
  right:0;
}

.sp-nav ul{
  list-style:none;
  text-align:center;
}

.sp-nav li{
  margin:30px 0;
}

.sp-nav a{
  color:#fff;
  font-size:1.3rem;
  text-decoration:none;
  font-family: "Aboreto", system-ui;
}

/* ONLINE STORE ボタン */
.sp-nav .online-store a {
  display: flex;
  align-items: center;
  gap: 10px;
background: #76be69;
  padding: 12px 32px;   /* ← 大きめ */
  border: 2px solid #76be69;
  border-radius: 50px;

  font-size: 1.05rem;   /* ← 少し大きく */
  font-weight: 500;
  letter-spacing: 1.5px;

  white-space: nowrap;
  line-height: 1;  

  color: #fff;

  transition: all 0.3s ease;
}
/* カゴアイコン */
.cart-icon {
  fill: #fff;
}

.sp-nav .online-store a .cart-icon {
  width: 20px;
  height: 20px;
}

/* 全体の設定　- メイン */
/* メインコンテンツが隠れないように上部余白 */
main {
  padding-top: 100px;
}

.page-hero { 
  min-height: 400px;   /* ← 高さを統一 */
  padding: 80px 0 60px;
  width: 100%;
  display: flex;
  text-align: center;
  padding-top:150px;
}

.hero-wrap {
  width: 1100px;      /* コンテンツ幅 */
  margin: 0 auto;     /* 中央配置 */
  text-align: left;   /* ← 左寄せ */
  padding-left: 40px;   /* ← これで少し左寄りに見せる */
  display: inline-block;   /* 文字幅だけにする */
}

main {
  padding-top: var(--header-height);
}

.hero-text{
     font-size: 4rem;
    color: #848484;
    letter-spacing: 2px;
  font-family: "Aboreto", system-ui;
  font-weight: 400;
  font-style: normal;
    line-height: 1;
    margin: 0;
    opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards 0.3s; /* 少し早め */
}

.jp{
   font-size: 1.2rem;
    color: #848484;
    letter-spacing: 2px;
   font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.3s; /* hero-text の後に出す */
  margin-bottom: 0.5rem; /* SVGとの間隔を調整 */

}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

 .knot-line {
  display: block;     
  width: 90%;
  max-width: 500px;
  height: auto;             /* SVGの高さを低く */ 
  overflow: visible;     /* SVG内の線が切れないように */ 
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 1.3s ease-out forwards 1s; /* テキスト後に描画開始 */
  margin-top: -50px;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}


/* ===============================
 Organic Wave (SVG)
================================ */
.footer-wave {
  position: relative;
  height: 160px;
  margin-top: -120px;
  z-index: 5;
}

.footer-wave svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 160px;
  display: block;
}

.wave path {
  fill: #fff7d6;
}

/* 全体の設定　- フッター */
.footer {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fff7d6;
   padding: 20px 0px 0px; /* 上・左右・下 */
  text-align: center;
  overflow: visible;
  font-size: 1.1rem;
}

/* 背景写真あり */
.footer-main {
  position: relative;
  width: 100%;
  padding: 80px 20px 40px;
  overflow: hidden;
  z-index: 1;
}

.footer-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1492496913980-501348b61469?auto=format&fit=crop&w=1600&q=80")
    center / cover;
  opacity: 0.15;
  z-index: 0;
}

.footer .md-flex {
  position: relative;
  z-index: 2;
}


/* 背景写真なし・下の余白 */
.footer-bottom {
  padding: 24px 40px;
  background: #fff7d6;
  align-items: center;
}

/* フッター中身（最前面） */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.footer h4 {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-weight: 600;
  color: #4f8047 ;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.8;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  color: #4b5564;
  text-decoration: none;
}

a:hover {
  color: #848484;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 40px 0 24px;
}

.grid {
  display: grid;
  grid-template-columns:  repeat(3,1fr);
  gap:40px;
width:100%;
max-width:600px;
  font-family: "Aboreto", system-ui;
}


/* 本文部分 */


/* .footer__navi-heading a {
  font-weight: 600;
  color: #4f8047 ;
  transition: opacity 0.3s ease;

}

.footer__navi-heading a:hover {
  opacity: 0.6;
} */

.footer__logo {
  max-width: 300px;
  display: inline-block;
}

.footer__navi li {
  margin-bottom: 0.75rem;
}

.footer__navi a {
  color: #3d3525;
  transition: opacity 0.3s ease;
  font-weight: 500;
}

.footer__navi a:hover {
  opacity: 0.6;
}

.footer__social a {
  display: inline-block;
  width: 24px;
  opacity: 0.7;
}

.footer__social a:not(:last-child) {
  margin-right: 16px;
}

.footer__address {
  font-style: normal;
  font-size: 0.9rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #3d3525;
}
/* footer　アンカーリンク */
#company{
  scroll-margin-top: 120px;
}

@media (min-width: 768px) {
  .md-flex{
display:flex;
gap:80px;
align-items:flex-start;
}

.md-justify-between{
justify-content:space-between;
}

}

/* =========================
   SPフッターレイアウト
========================= */
@media (max-width: 768px){

  /* 縦並び */
  .md-flex{
    flex-direction: column;
    align-items: center;
    gap:40px;
  }

  /* ナビ中央寄せ */
  .grid{
    grid-template-columns:repeat(2,1fr);
gap:30px;
  }

  /* 住所中央 */
  .footer__address{
    text-align:center;
    margin-bottom:40px;
  }

  /* 下のコピーライト */
  .footer-bottom{
    flex-direction: column;
    gap:10px;
    text-align:center;
  }

}

/*---page-top---*/
#page_top{
    width: 70px;
  height: 70px;
  position: fixed;
  right: 30px;
  bottom: 20px;
  opacity: 0.6;
  z-index: 1000;
  background-color: #848484;
  border: none;
  border-radius: 50%; 
  
}

#page_top a{
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    text-decoration: none;
  }
  #page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -30px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    
  }
  #page_top a::after{
    content: 'TOP';
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 40px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    color: #fff;
    
  }

/* ファーストビューデザイン */
.hero-view {
  position: relative;
  overflow: hidden;
}

.hero-view .container{
  max-width: none;
  padding: 0;
}

/* 下を白で溶かす */
.hero-view::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 210px; /* 少し長く */

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 45%,   /* ← ここを増やす */
    rgba(255,255,255,0.7) 75%,
    #ffffff 100%
  );

  pointer-events: none;
  z-index: 3;
}

.container {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.loading {
  position: absolute;
  z-index: 3;
  opacity: 0;
  animation: fadeOutLogo 2s ease 0.5s forwards;
}

.loading-logo {
  max-width: 300px;
  height: auto;
}

.gradient-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #7cbfea 0%, #76be69 100%);
  transform: translateY(100%);
  z-index: 1;
  animation: rollUp 1.2s ease 1.5s forwards;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 2;
  animation: fadeInImage 1.5s ease 2.7s forwards;
}

.content {
  position: relative;
  z-index: 4;
  opacity: 0;
  padding: 0 20px;
  animation: fadeInContent 1s ease 3s forwards;
  text-align: center;
}

.main-title {
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #F6F4EE;
}

.sub-title {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0 0 2rem;
  letter-spacing: 0.05em;
}

.scroll-hint {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  z-index: 4;
  opacity: 0;
  animation: fadeInContent 1s ease 4s forwards;
}

/* 上の縦線 */
.scroll-hint::before {
  content: "";
  width: 1px;
  height: 60px;
  background: #fff;
  opacity: 0.7;
  animation: scrollFade 1.6s ease-in-out infinite;
}

/* SCROLL文字 */
.scroll-text {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: #fff;
  font-weight: 400;
}

@keyframes fadeOutLogo {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes rollUp {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes fadeInImage {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.4;
  }
}

@keyframes fadeInContent {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 0;
  }

  50% {
    height: 80px;
    opacity: 1;
  }

  100% {
    height: 0;
    opacity: 0;
  }
}

@keyframes scrollFade {
  0% { opacity: 0; transform: translateY(-5px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(5px); }
}
@media (max-width: 768px) {
  .main-title {
     font-size: 28px;
  }

  .sub-title {
    font-size: 1.4rem;
  }
}

/* page-top ラインアニメーション */
#waveLine {
  position: relative;
  margin-top: -80px; /* ←ここが重要 */
  z-index: 5;
}

.main-line, .sub-line {
  fill: none;
  stroke: url(#lineGrad);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-line {
  stroke-width: 3;
}

.sub-line {
  stroke-width: 2;
  opacity: 0.4;
}


/* news&topics */
.news-area {
  position: relative;
  padding-top: 80px;
  background: #fff;
  z-index: 4;
}

.news-area::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -40px;

  width: 100%;
  height: 220px;

  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 35%,
    rgba(255,255,255,0.8) 65%,
    rgba(255,255,255,0) 100%
  );
  pointer-events: none;
  z-index: 2;
}


/* NEWS → パララックス 境界用 */
.top-news {
  padding-bottom: 120px;
  overflow: visible;
  max-width: 1200px;   /* 追加 */
  margin: 0 auto;      /* 追加 */
}

.top-news-wrap,
.button-01 {
  position: relative;
  z-index: 2;
}

.top-news::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 150px;
  border-radius: 0 0 60% 60% / 0 0 28% 28%;
  z-index: 0;
  pointer-events: none; /* ← 念のため */
}


.top-news-title h2{
  color: #76be69;
}

.top-news-wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* ←追加：はみ出し防止 */
}

.top-news-wrap .top-news-item {
  flex: 1 1  25%; /* 3列レイアウト */
  max-width: 250px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.top-news-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}


.top-news-wrap .top-news-item:hover {
  transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  opacity: 0.8;
}

.top-news-wrap .top-news-item a {
  text-decoration: none;
  color: #333;
  text-align: center;
}

.top-news-item p {
      font-size: 1rem;
      margin: 10px;
    }

    .top-news-item time {
      font-size: 0.85rem;
      color: #666;
      margin: 0 10px 10px;
      display: block;
      text-align: right;
    }


/* button-01 */
.button-01 {
  margin: 40px 0 0;
  padding: 0;
  z-index: 5;
   display: flex;          /* 追加 */
  justify-content: flex-end; /* ←右寄せ */
}

/* .button-01 a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 400;
  outline: 1px solid #333;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 300px;
  text-align: center;
  padding: 16px 64px;
  text-decoration: none;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
  border-radius: 8px;
}

.button-01 a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background: #76be69;
  z-index: -999;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.button-01 a:hover::before {
  top: 0;
  left: 0;
  transition: all 0.3s;
} */

/* parallax */
.parallax {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
  background-image: url(../images/parallax03.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
background-position: center 20%;
  /* 色味を少し柔らかく */
  filter: brightness(1.05) saturate(0.9);

  clip-path: url(#waveClip);
}


/* 背景画像：absolute で中央揃え */
.parallax {
  position: relative;
  filter: brightness(1.08) saturate(0.85);
}

.parallax img {
  filter: brightness(0.92) contrast(0.95);
}

/* 画像を少し白くして上品に */
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(255,255,255,0.25);

  pointer-events: none;
  z-index: 1;
}

/* 上部のグラデーション（つなぎ用） */
.parallax::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.8),
    rgba(255,255,255,0)
  );

  pointer-events: none;
  z-index: 2;
}

/*fadeup*/
.news-wrap.fadeup,
.top-about.fadeup,
.slide-logo.fadeup {
   animation-name: fadeup;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeup{
0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeup {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}



/* About */
  .top-about {
  position: relative;
  width: 100%;
  min-height: 85vh;
   height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;  
  margin: 0;
}


/* ===== Background ABOUT ===== */
.about-bg-text {
  position: absolute;
  left: -1vw;
  top: -4%;
  font-family: "Aboreto", system-ui;
  font-size: 16vw;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #7fbcd2;
  opacity: 0.1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  max-width: 100%;
  overflow: hidden;
}

/* ===== Leaf Shapes ===== */
.leaf-shape {
  position: absolute;
  top: 50%;
  width: 34vw;
  max-width: none;
  height: 82vh;
  opacity: 0.18;
  transform-origin: center;
  z-index: 1;
}

.leaf-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* 共通 */
.leaf-left,
.leaf-right {
  top: 50%;
  transform: translateY(-50%) scaleY(-1);
}

/* 左 */
.leaf-left { left: -12vw; transform: translate(-10%, -48%) scaleY(-1) rotate(-12deg); } 

/* 右 */
.leaf-right { right: -12vw; transform: translate(10%, -52%) scaleY(-1) rotate(12deg); }

/* ===== Center ===== */
.about-center {
   position: relative;
  z-index: 2;
  text-align: center;

  display: flex;
  flex-direction: column;
  height: 80vh;  
}

/* ===== HERO INNER ===== */
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Copy ===== */
.hero-copy {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #4A4A4A;
  text-align: left;
    opacity: 0;
  transform: translateY(14px);
  transition: 1.6s ease;
   
}


.accent {
  color: #7BBE8A;
  font-weight: 500;}

.top-about .hero-copy {
  opacity: 0;
  transform: translateY(14px);
}

.top-about .hero-copy.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Logo ===== */
.hero-logo {
  position: absolute;
  right: 0;
}

.hero-logo img {
  display: block;
  width: 300px;
  height: auto;
}

/* 初期状態 */
.top-about .hero-logo,
.top-about .hero-logo img {
  opacity: 0;
   transform: translateY(48px) scale(0.97); /* ← 32 → 48など */
  transition:
    opacity 1s cubic-bezier(.22,1,.36,1),
    transform 1s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

/* 表示時 */
.top-about .hero-logo.is-active,
.top-about .hero-logo.is-active img {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 1.8s ease,
    transform 2.2s cubic-bezier(.2,.8,.2,1);
  transition-delay: 0s;
  }


/* ロゴ浮遊 */
.hero-logo-inner {
  display: inline-block;
}
.hero-logo.is-float .hero-logo-inner {
  animation: floatLogo 4.8s ease-in-out infinite;
  animation-delay: 0.5s; /* ← 表示後に開始 */
}


/* 浮遊アニメーション */
@keyframes floatLogo {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ===============================
   SECTION 02
================================ */
.section {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr auto;
  /* gap: clamp(24px, 5vw, 64px); */
  align-items: center;
  position: relative;
  z-index: 3;
}

.section h2 {
  font-size: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section.is-active h2 {
  opacity: 1;
  transform: translateY(0);
}

.section p {
  margin-top: 40px;
  max-width: 520px;
  line-height: 2;
  font-size: 16px;
}
.story {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition-delay: 0.2s;
}

.section.is-active .story {
  opacity: 1;
  transform: translateY(0);
}

.button-02 {
  margin: 0;
  align-self: end;          /* 下寄せ */
 justify-self: start;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition-delay: 0.4s; /* ← テキストの後に出したい場合 */
}
 
.section.is-active .button-02 {
  opacity: 1;
  transform: translateY(0);
}

/* .button-02 a {
  
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 400;
  outline: 1px solid #333;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 300px;
  text-align: center;
  padding: 16px 64px;
  text-decoration: none;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
  border-radius: 8px;
}

.button-02 a::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background: #7cbfea;
  z-index: -999;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.button-02 a:hover::before {
  top: 0;
  left: 0;
  transition: all 0.3s;
} */

/* ===== Leaf animation initial ===== */
.leaf-shape {
  opacity: 0;
  transform-origin: center;
  transition:
    opacity 1.2s ease,
    transform 1.4s cubic-bezier(.22,1,.36,1);
}

/* 左（初期） */
.leaf-left {
  transform:
    translate(-10%, -40%)
    scale(1.12)
    scaleY(-1)
    rotate(-12deg);
}

/* 右（初期） */
.leaf-right {
  transform:
    translate(10%, -40%)
    scale(1.12)
    scaleY(-1)
    rotate(12deg);
}

/* ===== Scroll in ===== */
.top-about.is-visible .leaf-left {
  opacity: 0.18;
  transform:
    translate(-10%, -48%)
    scale(1)
    scaleY(-1)
    rotate(-12deg);
  transition-delay: 0.15s;
}

.top-about.is-visible .leaf-right {
  opacity: 0.18;
  transform:
    translate(10%, -52%)
    scale(1)
    scaleY(-1)
    rotate(12deg);
  transition-delay: 0.3s;
}


/* テキスト類は前面に */
.top-about h2,
.top-about p,
.button-02 {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-logo img {
    position: static;
    margin-top: 32px;
    text-align: right;
  }

    .hero-inner {
      position: relative;
    z-index: 2;
    padding-bottom: 0;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .button-02 {
    justify-self: center;
  }
}

/* service */
.waveArea {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  z-index: 2;
   display: flex;
  justify-content: center;
  align-items: end;
     
}

.top-service .blob{
  position:absolute;
  width:140px;
  height:140px;
  background:#7fbcd2;
  border-radius:60% 40% 50% 50% / 40% 60% 50% 60%;
  background:rgba(127, 188, 210, 0.25);
}

.top-service .blob.left{
  top:60px;
  left:10%;
}

.top-service .blob.right{
  top:200px;
  right:10%;
  background:#8bcf8f;
  background:rgba(139, 207, 143, 0.25);
}

  
     /* 浮遊アイテム共通 */
    .floating {
      position: absolute;
  opacity: 0;
  width: clamp(60px, 6vw, 90px);
  z-index: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
    }

    .floating img {
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-12px) rotate(-2deg); }
  50%  { transform: translateY(0) rotate(0deg); }
  75%  { transform: translateY(12px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

    /* アイテムごとに位置調整 */
    .floating.item1 {
  left: 25%;
  top: 70%;
}

.floating.item2 {
  left: 68%;
  top: 80%;
}

.floating.item3 {
   left: 55%;
  top: 50%;
}


/* =============================
   SERVICEカード設計
============================= */

.service-grid {
  max-width: 1200px;
  margin: 50px auto 50px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  position: relative;
  z-index: 5;
}

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #f7f6f2;
  border-radius: 28px;
  overflow: hidden;
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 30px;
  text-align: left;
}

.service-card h3 {
  font-size: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}


/* =============================
   フェードアップ
============================= */

.fade-item {
  opacity: 0;
  transform: translateY(60px);
  transition: 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* SP */
@media (max-width: 768px) {

  .service-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-card:nth-child(2) {
    transform: none;
  }

}

/* contact */
.container02 {
          position: relative;
        }

.top-contact {
  position: relative;
	background: url(../images/contact02.jpg) no-repeat center center;
	background-size: cover;
  padding: 60px 50px 60px; /* ← 下を大きく */
  text-align: center;
  min-height: 70vh;
}

/* ガラスパネル */
.contactInner {
  max-width: 1200px;
  margin: auto;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 70px 70px;
}

.contactInner h2 {
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: 0.18em;
  color: #777;
  margin-bottom: 20px;
}

/* ===============================
 Split CTA
================================ */
.contactSplit {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
}

/* 共通 */
.contactBox {
    flex: 1;
  background: rgba(255,255,255,0.75);
  border-radius: 12px;
  padding: 40px 30px;

  display: flex;
  flex-direction: column;
}

/* 左：Contact */
.contactBox.contact {
  background: rgba(255,255,255,0.85);
}


/* 右：Online Store（写真カード） */
.contactBox.store {
  position: relative;
  color: #fff;
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
    url("https://images.unsplash.com/photo-1506807803488-8eafc15323c1?auto=format&fit=crop&w=800&q=80")
    center / cover;
}


/* テキスト */
.contactBox p {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 30px;
}

/* ===== MINORI ボタンアニメーション ===== */
.button-03 {
  margin: 30px;
  text-align: center;
}

/* .button-03 a,
.button-03 button {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 400;
  outline: 1px solid #333;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 300px;
  text-align: center;
  padding: 16px 64px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
  border-radius: 8px;
  background: none; /* ボタンデフォルト色をリセット */
  

/* .button-03 a::before,
.button-03 button::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background: #dcdcdc;
  z-index: -999;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.button-03 a:hover::before,
.button-03 button:hover::before {
  top: 0;
  left: 0;
  transition: all 0.3s;
} */

/* ===== contact split ===== */
.contactSplit {
  display: flex;
  gap: 40px;
}

/* 各CTAボックス */
.contactBox {
  flex: 1;
  background: rgba(255,255,255,0.75);
  border-radius: 12px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}

.contactBox:first-child {
  flex: 1.2;
}

/* 見出し */
.contactBox h2 {
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 24px;

  min-height: 56px; /* ← 見出し高さ統一 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.contactBox.store h2{
  color: #fff;
}

/* テキスト */
.contactBox p {
  font-size: 0.95rem;
  line-height: 1.8;
  
}

/* オンラインストア用ボタンの差別化 */
.button-03.is-store a {
  outline-color: #fff;
  color: #fff;
}

.button-03.is-store a::before {
  background: #76be69;
}


/* ===============================
 Responsive
================================ */
@media screen and (max-width: 768px) {
  .contactSplit {
    flex-direction: column;
    gap: 24px;
  }

  .contactBox {
    padding: 32px 20px;
  }

  .contactBox h2 {
    min-height: auto; /* SPでは自然な高さに */
  }

  .contactBox p {
    min-height: auto;
  }
}


.circle-content {
 
   margin-top: -5vw; /* 画面幅に応じて可変 */
    overflow: hidden;
   
}

.circle-inner {
    background-color: #fff8d6;
    border-radius: 2000px 2000px 0 0 / 300px 300px 0 0;
    margin: 0px -200px 0px -200px;
    padding: 65px 280px;
    min-height: 300px;
    text-align: center;
    
}

.minori02-logo{
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
  
}

.access-map {
  position: relative;
  min-height: 70vh; /* 背景の高さを確保 */
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center;     /* 縦中央 */
  padding-bottom: 50px;
}

.access-menu-flex {
  width: 100%;   /* mapの最大幅と揃える */
  margin: 0 auto;
  padding: 0;     /* 端の余白 */
}

.map {
  width: 100%;
  display: flex;
  justify-content: center;
}

.map iframe {
  width: 90%;
  max-width: 900px;   /* 好きな横幅に */
  height: 50vh;      /* ← 高さを固定 */
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

    .adress {
      flex: 1;
      min-width: 260px;
      background: #ffffff;
      padding: 24px 28px;
      border-radius: 16px;
      box-shadow: 0 6px 14px rgba(0,0,0,0.08);
      text-align: left;
    }

    .adress h3 {
      margin-bottom: 12px;
      color: #333;
    }

    .adress p {
      margin: 8px 0;
      font-size: 0.95rem;
      color: #555;
    }

    .adress i {
      margin-right: 8px;
      color: #f1c232;
    }

    .footer {
      margin: 0;
    }
    .cont-flex {
      display: flex;
      background-color: #fff8d6;
      justify-content: space-between; 
    align-items: center;
    position: relative;
    }

    .cont-flex small {
     position: absolute;
    left: 50%;
    transform: translateX(-50%);
    }
    
    .p-txt {
    margin-left: 20px;
}

.p-txt a,
.p-txt a:hover {
    text-decoration: none;
    color: inherit; 
}


  /* ---page-About--- */
  /* ===============================
   About本文
=============================== */
  main#about {
  max-width: 900px;
  margin: 0 auto;
  
}
 .about-section {
  margin: 3rem auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease;
}

.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease;
}

.fadein.visible {
  opacity: 1;
  transform: translateY(0);
}





/* ===============================
   セクションタイトル
=============================== */
.knot-title {
  position: relative;
  font-size: 1.8rem;
  color: #5a4b3b;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.knot-icon {
  width: 28px;
  height: 28px;
  border: 2px solid #76be69;
  border-radius: 50%;
  position: relative;
  animation: knotFloat 3s ease-in-out infinite;
  flex-shrink: 0;
}

.knot-icon::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: #76be69;
  top: 13px;
  left: -6px;
  border-radius: 2px;
}

@keyframes knotFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-5px);
    opacity: 0.85;
  }
}

.about-section p {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  line-height: 2;
}

.number-05 {
  position: relative;
  font-family: 'Noto Serif JP', serif;
  font-size: 64px;
  color: #333;
  font-weight: 400;
  line-height: 1;
  display: block;
  box-sizing: border-box;
  text-align: center; 
  margin-inline: auto;
  width: fit-content;
  padding: 12px;
}

.number-05::before, .number-05::after {
  content:'';
  position: absolute;
  width: 30px;
  height: 30px;
}

.number-05::before {
  border-left: solid 1px #333;
  border-top: solid 1px #333;
  top:0;
  left: 0;
}

.number-05::after {
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  bottom:0;
  right: 0;
}

.number-05 span::before, .number-05 span::after {
  content:'';
  position: absolute;
  width: 46px;
  height: 46px;
  rotate: 45deg;
}

.number-05 span::before {
  border-left: solid 1px #333;
  top:2px;
  left: 2px;
}

.number-05 span::after {
  border-right: solid 1px #333;
  bottom:2px;
  right: 2px;
}

/* ラッパーを横並びに */
.about-row {
  display: flex;
  gap: 30px;               /* p と figure の間隔 */
  align-items: flex-start; /* 上揃えにする場合は flex-start。中央揃えにするなら center */
  flex-wrap: wrap;         /* 狭い幅では折り返す */
  margin-top: 18px;
}

/* p を可変幅にしてテキストを優先表示 */
.about-row p {
  flex: 1 1 320px;         /* 成長/縮小可、最小幅320px */
  /* 必要なら右寄せ（問題文に「右寄り」とあれば）：
     text-align: right; */
   color: #5a4b3b
}

/* figure 固定幅（画像幅） */
.about-row figure {
  flex: 0 0 320px;         /* 固定幅にしたい場合 */
  margin: 0;
  display: block;
}

/* 画像の扱い */
.about-row figure img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;       /* 画像比率維持で切り取りたいとき */
  border-radius: 8px;      /* 任意 */
}

/* section-about-company */
.about-company {
  background-color: #fff8d6;
    /* ▼ 画面幅いっぱいに広げる指定 */
  margin: 0 calc(50% - 50vw);
  width: 100vw;

  /* ▼ 中の要素を中央寄せにしたい場合 */
  padding: 4rem 0;
}

.about-company-title{
  max-width: 900px;
  margin: 0 auto;
}

.about-company__wrap {
  max-width: 900px; /* 中身の横幅を制限（中央寄せ） */
    margin: 0 auto;
    padding: 4rem 0 4rem;
    color: #383838;
    border-top: 1px solid #898989;
    border-bottom: 1px solid #898989;
    }

.p-about-company__row {
  display: flex;
}

.p-about-company__dt {
    width: 30%;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 3.3333;
    letter-spacing: -0.025em;
}

.p-about-company__dd {
    width: 68.75%;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 3.3333;
    letter-spacing: -0.025em;
}

.access-map {
  position: relative;
  background :url(../images/about_map.jpg) ;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 70vh;
}

/* ===============================
   About メッセージセクション
=============================== */
.about-message {
  position: relative;
  background: url(../images/about_map.jpg) center/cover no-repeat;
  margin: 0 calc(50% - 50vw);
  color: #fff;
}

.about-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.about-message__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
}

.about-message h2 {
  font-size: 32px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #fff;
}

.message-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 60px;
}

/* ===== 3つの強み ===== */
.message-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.feature {
  width: 30%;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  line-height: 1.6;
}

/* ===== ボタン ===== */
.message-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #76be69;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: "Aboreto", system-ui;
  cursor: pointer;
  border: none;
}

.message-btn:hover {
  background: #7cbfea;
  color: #fff;
  border-color: #7cbfea;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15); 
}

.message-btn02 {
  display: inline-block;
  padding: 14px 30px;
  background: #fff;
  color: #444;
  border: 2px solid #444;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Aboreto", system-ui;
  font-size: 16px;   /* ←追加（少し大きめ） */
  font-weight: 500;  /* ←上品に少し太く */
  letter-spacing: 0.05em;
  cursor: pointer;

  transition: 
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.message-btn02:hover {
  background: #222;
  color: #fff;
  border-color: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.message-btn02:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* ===== SP対応 ===== */
@media (max-width: 768px) {
  .message-features {
    flex-direction: column;
  }

  .feature {
    width: 100%;
  }

  .about-message h2 {
    font-size: 24px;
  }
}

/* news&topics */
main#news {
  width: 100%;
}
  
.news-bg {
  position: relative;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 60px 0 120px;
  overflow: hidden;
}

/* ==============================
   カテゴリメニュー（右上配置）
============================== */
.category-menu {
  max-width: 1300px;
  margin: 2vw auto;
  justify-content: flex-end;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.category-menu button {
  background-color: #f2f7f2;
  color: #333;
  border: 1px solid #848484;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.category-menu button:hover {
  border: 1px solid #333;
}

.category-menu button.active {
  background-color: #333;
  color: #f2f7f2;
  font-weight: bold;
}

/* ==============================
   お知らせ一覧
============================== */
.news-list {
  width:100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
   padding-bottom: 0;
   border-radius: 150px 0 0 0;
     width: 100%;
  background: #f2f7f2;   /* ← 背景色はここに移動 */
  padding: 0;
  
}

.news-items{
  width:100%;
  max-width:100%;
}

.news-item {
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 60px;
  padding: 0;
}

.news-item:last-child {
  margin-bottom: 0; /* 最後の記事は不要 */
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.news-item a {
  display: flex;
  align-items: stretch;
  gap: 60px;
  text-decoration: none;
  color: inherit;
  padding: 24px;
  width: 100%; 
}

.news-thumb {
  flex-shrink: 0;
  width: 300px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-item:hover .news-thumb img {
  transform: scale(1.05);
}

.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* 日付を右上に配置 */
.news-content time {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.9rem;
  color: #333;
}

/* カテゴリ & NEW タグ */
.news-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.category {
  display: inline-block;
  border: 1px solid #848484;
  color: #333;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 12px;
}

.new-icon {
  display: inline-block;
  background-color: #ff6f61;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 12px;
}

.news-content h2 {
  font-size: 1.2rem;
  margin: 20px 0 8px;
  color: #333;
  line-height: 1.4;
}

.news-content p {
  font-size: 0.95rem;
  color: #555;
  padding-right: 70px;
}

.more-link {
  display: inline-block;
  text-align: right;
  margin: 0 20px;
  color: #333;
  transition: transform 0.3s ease, color 0.3s ease;
}

.news-item a:hover .more-link {
  transform: translateX(5px);
}

/* Newsホバー演出 */
.news-item a {
  transition: opacity 0.3s ease, color 0.3s ease;
}

.news-item a:hover {
  opacity: 0.7;
}

.news-badge {
  display: inline-block;
  background: #ff6f61;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 6px;
}


/* ==============================
   フェードアニメーション
============================== */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1),
              transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.news-item.hide {
  opacity: 0;
  pointer-events: none;
}

/* =========================
   NEWS DETAIL
========================= */
.page-news-detail .detail-wrap {
  padding: 100px 20px;
}

.page-news-detail .detail-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-news-detail .slide img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.detail-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #777;
}

.detail-meta .category {
  background: #f1f1f1;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.detail-title {
  font-size: 28px;
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: center;
}

.detail-image {
  margin-bottom: 40px;
  text-align: center;
}

.detail-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.detail-text {
  line-height: 1.9;
  font-size: 16px;
  color: #444;
  text-align: center;
  margin-top: 20px;
}

.back-link {
  margin-top: 40px;
}

.back-link {
  position: relative;
  z-index: 9999;
}

/* スライダー */

.slider {
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* 矢印 */

.slide-prev,
.slide-next{

position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.5);
color:#fff;
border:none;
font-size:28px;
width:40px;
height:40px;
cursor:pointer;

}

.slide-prev{
left:10px;
}

.slide-next{
right:10px;
}

/* 前後記事 */

.news-nav{

display:flex;
justify-content:space-between;
margin:40px 0;

}

.news-nav a{

text-decoration:none;
padding:10px 16px;
border:1px solid #ddd;
border-radius: 8px;
}

/* ドットナビ */

.slide-dots{
display:flex;
justify-content:center;
gap:8px;
margin-top:12px;
}

.slide-dot{

width:10px;
height:10px;
border-radius:50%;
background:#ccc;
cursor:pointer;

}

.slide-dot.active{
background:#333;
}

/* Lightbox */

.lightbox{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;

}

.lightbox img{

max-width:90%;
max-height:90%;

}

/* 各ECサイトボタン */
.furusato-shop-area {
  margin: 50px 0;
  text-align: center;
}

.shop-lead {
  margin-bottom: 20px;
  font-weight: bold;
}

/* レイアウト */
.shop-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* ボタン */
.shop-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  min-width: 260px;
  transition: 0.25s;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* アイコン（ロゴ風） */
.shop-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  font-size: 14px;
  font-weight: bold;
}

/* テキスト */
.shop-text {
  flex: 1;
  text-align: left;
}

/* ▼ 楽天風 */
.shop-btn.rakuten {
  background: linear-gradient(135deg, #bf0000, #e60023);
}

/* ▼ チョイス風 */
.shop-btn.choice {
  background: linear-gradient(135deg, #4CAF50, #7ed957);
}

/* ▼ さとふる風 */
.shop-btn.satofull {
  background: linear-gradient(135deg, #007cc2, #4da3d9);
}

/* ホバー */
.shop-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

/* 押した感 */
.shop-btn:active {
  transform: scale(0.98);
}

/* スマホ */
@media (max-width: 768px) {
  .shop-btn {
    width: 100%;
  }
}

/* service */
/* ===== SERVICE Section ===== */
 main#service {
  max-width: 900px;
  margin: 0 auto;
  
}
.service {
  padding: 120px 8vw 0;
}

/* ===== Concept ===== */
.service-concept {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  background: #f6f1df;
  padding: 0px 8vw 50px 8vw;
  border-radius: 32px 32px 0 0;
   width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.service-concept > * {
  max-width: 1200px;
  margin: 0 auto;
}

.concept-image {
  position: relative;
  width: 80%;
  aspect-ratio: 600 / 400;
}

.concept-image svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blob-bg {
  transform: translate(-2%, 4%) scale(1.06);
  z-index: 1;
}

.blob-photo {
  z-index: 2;
}

.concept-video-sp {
  display: none;
}

.blob-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.concept-words {
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  margin: 50px 0;
  color: #5a4b3b;
}

.concept-words span {
  display: block;
  margin-bottom: 16px;
}

.concept-desc {
  font-size: 14px;
  color: #5a4b3b;
}

.concept-wave {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.concept-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}


/* ===== Flow ===== */
.service-flow {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 160px;
  margin-top: -40px;
  padding-top: 80px;
}

.service-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.08), transparent);
  transform: translateX(-50%);
}

.flow-item {
  display: flex;
  margin-bottom: 120px;
}

.flow-item.left { justify-content: flex-start; }
.flow-item.right { justify-content: flex-end; }

.flow-card {
  color: inherit;
  text-decoration: none;
  display: flex;
}

.flow-card.horizontal {
  display: flex;
  gap: 48px;
  width: 760px;
  padding: 40px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.06);
}

.flow-card.horizontal.reverse {
  flex-direction: row-reverse;
}

/* ===== Image (Blob) ===== */
.flow-image {
  width: 320px;
  height: 220px;
  flex-shrink: 0;
  overflow: visible;
}

.flow-image svg {
  width: 100%;
  height: 100%;
}

.flow-image image {
  transition: transform 0.6s ease;
  transform-origin: center;
}

/* hover：画像だけ拡大 */
.flow-card:hover .flow-image image {
  transform: scale(1.03);
}

.flow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(0,0,0,.08);
  transition: .4s ease;
}

.flow-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flow-num {
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: #9ad29e;
  margin-bottom: 16px;
}

.flow-more {
  margin-top: auto;
  font-size: 0.9rem;
  color: #333;
  text-align: end;
}

/* ===== Fade ===== */
.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}

.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
  padding: 0 20px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .service-concept {
    grid-template-columns: 1fr;
    padding: 64px 6vw 80px;
  }

  /* ブロブ感をCSSで再現（超重要） */
.concept-video-sp {
  display: block !important;
  position: absolute;

  width: 88%;
  height: 75%;

  top: 22%;
  left: 6%;

  object-fit: cover;

  z-index: 2;
  pointer-events: none;
  border-radius: 48% 52% 60% 40% / 55% 45% 55% 45%;
}

 /* PC用のSVG動画は消す */
  .blob-photo {
    display: none; 
  }


  /* 背景ブロブとの重なり調整 */
  .blob-bg {
    position: absolute;
  inset: 0;
  z-index: 1;
  }

  /* 全体サイズ安定 */
  .concept-image {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .flow-card.horizontal {
    flex-direction: column;
    width: 100%;
  }
}


/*--- Page-Contact ---*/
main#contact {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 80px 180px;
}

/* .contact01{
  margin-bottom: 10%;
} */

.contact01 p {
  text-align: left;
}

.need {
      color: #fa5c91;
    display: inline-block;
    margin-left: 5px;
    font-size: 0.9em;
    position: relative;
    top: -3px;
}

.telBox__num {
  display: flex;
}


.telbox {
  padding: 50px 15px 0 15px;

}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 50px 0;
}


td {
  padding: 15px 70px;
  text-align: left;
}

th {
  width: 30%;
  color: #000;
  text-align: end;
}

input,
textarea {
  width: 90%;
  padding: 5px;
  border: none;
  background: #dcdcdc;
  box-shadow: inset 0px 0px 10px #dcdcdc;
}

input[type="radio"],
input[type="checkbox"] {
  width: 15px;
  margin-left: 10px;
  box-shadow: none;
}

textarea {
  height: 100px;
}

.privacy {
  max-width: 600px;
  font-size: 0.8rem;
  margin: 50px auto;
  padding: 0px;
  height: 250px;
  overflow: auto;
  border: 1px solid #aaa;
}

.privacy p {
  font-size: 0.9rem;
}

.privacy-check {
  text-align: center;
  margin: 50px;
}

.sub-button {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.g-recaptcha {
  margin-bottom: 50px;
}

.form-error {
  background: #ffecec;
  border: 1px solid #ff4d4d;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
}

.form-error ul {
  padding-left: 20px;
  list-style: disc; /* ← これ追加が重要 */
}

.form-error li {
  color: #d8000c !important; /* ← 強制で勝つ */
  margin-bottom: 5px;
}

/* =============================
   Privacy Page - MINORI Style
============================= */

.sub-hero {
  padding: 120px 20px 60px;
  text-align: center;
  background: #fff8d6;
  position: relative;
}

.sub-hero-flex{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.title-group{
  display: flex;
  align-items: center;
  gap: 40px;
}

.sub-hero_logo img{
  max-width: 140px;
  height: auto;
}

.title-text{
  text-align: left;
}

.sub-hero h1{
  font-size: 3.5rem;
  letter-spacing: 5px;
  font-family: "Aboreto", system-ui;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #848484;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2); /* ← 軽い影 */
  letter-spacing: 0.1em;
}

.policy-block h2,
.policy-block h3{
  font-size:18px;
  color: #555;
}

.sub-hero p {
  color: #777;
  font-size: 15px;
  letter-spacing: 2px;
}

.sub-hero_logo img{
  max-width: 300px;
  height: auto;
}
.policy-section {
  padding: 60px 20px 100px;
  background: #ffffff;
}

.policy-inner {
  max-width: 900px;
  margin: 0 auto;
}

.policy-block {
  margin-bottom: 80px;
}

.policy-block h2 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
}

.policy-block h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #d6d6d6;
  margin-top: 12px;
}

.policy-block p,
.policy-block li {
  line-height: 2;
  color: #444;
  font-size: 16px;
}

.policy-block ul {
  padding-left: 20px;
}

.footer-privacy{
  margin: 0;
  padding: 20px 0;
  background: #fff8d6; /* 今のベージュ色なら */
  text-align: center;
}

/* ===== Fade Animation (safe) ===== */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards;
}

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Cookie Banner */

.cookie-banner{
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 900px;
  background: #fff7d6;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  font-size: 14px;
  z-index: 9999;
}

.cookie-banner a{
  text-decoration: underline;
}

.cookie-banner button{
  background: #848484;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.cookie-banner button:hover{
  background: #76be69;
}


/* ヘッダーモバイル対応 */
@media (max-width:900px){

.pc-nav{
  display:none;
}

.hamburger{
  display:block;
}

.home #site-header{
  opacity:1;
}

}
 
/* =====================================
   Responsive Fix（SP最適化）
===================================== */
@media screen and (max-width: 768px) {

  /* ---------- 共通 ---------- */
  body {
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  }

  h2 {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
  }

  article {
    padding: 60px 16px 0;
  }

  /* ---------- Hero / FV ---------- */
  .container {
    height: 100svh; /* iOS対策 */
  }

  .main-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .sub-title {
    font-size: 1rem;
  }

  .scroll-hint {
    left: 0;
    right: 0;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-wrap{
    width: auto;          /* 1100pxを解除 */
    padding-left: 0;      /* 左余白を解除 */
    text-align: center;   /* 中央基準に戻す */
  }

.knot-line {
    width: 100%;     /* hero-wrap幅に合わせる */
    max-width: none; /* 500px制限を解除 */
    margin: 12px 0 0;    /* 中央寄せ */
    stroke-width: 1.5;       /* 線を少し細く */
    animation: drawLine 1s ease-out forwards 0.6s; /* 少し早く */
  }

.knot-line path{
  vector-effect:non-scaling-stroke;
}

.cookie-banner{
  flex-direction: column;
  text-align: center;
}

  /* ---------- News ---------- */
  .top-news-wrap {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .top-news-wrap .top-news-item {
    max-width: 100%;
    width: 100%;
  }

  .top-news-item img {
    height: 200px;
  }

  /* ===============================
   SPレイアウト
================================ */

  .news-area {
    padding: 120px 20px;
  }

  .top-news {
    padding: 0 20px 80px;
  }

  .top-news-wrap {
    gap: 20px;
  }

  /* SPは1列レイアウト */
  .top-news-wrap .top-news-item {
    flex: 1 1 100%;
    max-width: none;
  }

  .top-news-item img {
     width:100%;
  height:auto;
  object-fit:cover;
  }

  .top-news-title h2 {
  text-align:center;
  }

  .slide-text {
  text-align:center;
  }

  /* VIEW MORE中央 */
  .button-01 {
    justify-content: center;
    margin-top: 30px;
  }

  .button-01 a {
    padding: 14px 40px;
    font-size: 13px;
  }

  /* カード高さを揃える */
.top-news-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* ← 高さ揃え */
}

/* カード */
.top-news-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* カード内リンク */
.top-news-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* テキスト部分を伸ばす */
.top-news-text {
  flex: 1;
}

  /* ---------- About ---------- */
  .about-bg-text {
    font-size: clamp(80px, 20vw, 140px);
    top: 0;
    left: 0;
  }

  .leaf-shape {
    width: 70vw;
    height: 60vh;
  }

  .leaf-left {
    left: -30vw;
  }

  .leaf-right {
    right: -30vw;
  }

  .about-center {
    height: auto;
    padding: 40px 0;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.9;
    text-align: left;
  }

  .hero-logo {
    position: static;
    margin-top: 32px;
    text-align: right;
  }

  .hero-logo img {
    width: 200px;
    margin-left: auto;
  }

  /* ---------- Section02 ---------- */
  .section {
    margin-top: 0;
    padding: 0 30px;
  }

  .section p {
    font-size: 15px;
  }

  /* ---------- Service ---------- */
  .waveArea {
    height: auto;
    min-height: 280px;
  }

  /* ---------- Contact ---------- */
  .top-contact {
    padding: 80px 20px 140px;
  }

  .contactInner {
    padding: 40px 20px;
  }

  /* ---------- Map / Access ---------- */
  .map iframe {
    width: 90%;
    height: 40vh;
  }

  /* ---------- Circle装飾 ---------- */
  .circle-inner {
    margin: 0 -60px;
    padding: 48px 40px;
  }

  /* ---------- Footer ---------- */
  .footer {
    padding-top: 60px;
  }

  .cont-flex {
    flex-direction: column;
    gap: 16px;
  }

  .cont-flex small {
    position: static;
    transform: none;
  }

/* =====================================
   SP Animation Light
===================================== */


  /* 連続アニメーション停止 */
  .wave,
  .wave02,
  .circle-rotate,
  .leaf-shape svg {
    animation: none !important;
  }

  /* フェード系だけ残す */
  .fadein-item {
    transform: translateY(12px);
  }

  .fadein-item.is-active {
    transform: translateY(0);
    opacity: 1;
  }

/* =====================================
   SP：アニメーション非表示
===================================== */

  #waveLine {
    display: none !important;
  }

    .top-about .hero-copy,
  .top-about .hero-logo,
  .top-about .hero-logo img {
    opacity: 1 !important;
    transform: none !important;
  }

  /* 見出し中央 */
  .top-service .slide-logo {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 48px auto 24px;
    text-align: center;
    width: 100%;
  }

  .top-service .slide-text {
    display: none;
  }

  .top-service .knot-line {
    display: block;
    margin: 0 auto;
    animation: none !important;
  }

  /* オリーブいったん全部消す */
 section.top-service div.floating {
    display: none !important;
  }
}


/* タブレット表示（800px程度） */
@media (min-width: 800px) {

  .pc-none {
    display: none;
  }

  .sp-none {
    display: block;
  }

  .pallax {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom;
  }
}


@media (max-width: 768px) {
  .waveArea {
    height: 35vh;
  }
  .minori_logo {
    width: 250px;
  }

  main#about {
    padding: 100px 20px 0;
  }

  .about-section {
    margin: 4rem auto;
  }

  /* タイトル */
  .knot-title {
    font-size: 1.2rem;
    gap: 10px;
    line-height: 1.6;
  }

  .knot-icon {
    width: 20px;
    height: 20px;
  }

  /* ナンバー装飾 */
  .number-05 {
    font-size: 42px;
    padding: 8px;
  }

  .number-05::before,
  .number-05::after {
    width: 20px;
    height: 20px;
  }

  .number-05 span::before,
  .number-05 span::after {
    width: 32px;
    height: 32px;
  }

  /* ▼ 横並び → 縦並びに変更 */
  .about-row {
    flex-direction: column;
    gap: 20px;
  }

  /* 画像を全幅表示 */
  .about-row figure {
    flex: none;
    width: 100%;
  }

  .about-row figure img {
    height: 240px; /* SPでは少し高さを抑える */
  }

  /* テキスト */
  .about-row p {
    font-size: 0.95rem;
    line-height: 1.9;
  }

.about-company {
    padding: 3rem 1.5rem;
  }

  .about-company__wrap {
    padding: 2rem 0;
  }

  .p-about-company__row {
    display: block; /* 横並びを解除して縦積みに */
    border-bottom: 1px dotted #ccc;
    padding: 1rem 0;
  }

  .p-about-company__dt {
    width: 100%;
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.3rem;
  }

  .p-about-company__dd {
    width: 100%;
    font-size: 1rem;
    line-height: 1.8;
  }

  .sp-office, .office {
    line-height: 1.6;
  }

  .services__list {
    flex-direction: column;
    gap: 20px;
  }

  .footer-arc {
    height: 80px;
    border-top-left-radius: 100% 40px;
    border-top-right-radius: 100% 40px;
  }
  .footer {
    margin-top: -40px;
    padding-top: 80px;
  }

    .parallax {
    background-attachment: scroll;
    height: 80vh;
  }
  .parallax::before {
    content:"";
  position:absolute;
  inset:0;

  background: rgba(255,255,255,0.25);

  box-shadow: inset 0 40px 80px rgba(0,0,0,0.08),
              inset 0 -40px 80px rgba(0,0,0,0.08);

  z-index:1;
    height: 120px;
  }

}

/* news&topics */
@media screen and (max-width: 768px) {

  main#news {
    max-width: 100%;
  }

  .hero-text {
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.2;
  display: inline-block;
}

  .news-bg {
    padding: 40px 16px 120px;
    border-radius: 60px 0 0 0;
  }

  /* カテゴリ中央寄せ */
  .category-menu {
    justify-content: center;
  }

  /* 横幅100vw解除 */
  .news-list {
    margin: 0;
    width: 100%;
    gap: 24px;
  }

  /* カード */

  .news-item {
    margin-bottom: 30px;
  }

  .news-item a {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  /* サムネ */

  .news-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  /* 日付を通常配置へ */

  .news-content time {
    position: static;
    font-size: 0.8rem;
    margin-bottom: 6px;
    display: block;
  }

  .news-content h2 {
    font-size: 1rem;
    margin-top: 10px;
  }

  .news-content p {
    font-size: 0.85rem;
    padding-right: 0;
  }
}

/* SERVICE */
@media (max-width: 900px) {
  .hero-organic {
    flex-direction: column;
    height: auto;
    padding: 80px 6vw;
    gap: 48px;
  }

  .hero-organic__image {
    width: 280px;
    height: 380px;
  }

  .hero-organic__text {
    text-align: center;
  }
}

/* contact */
/* ===============================
スマホ対応（768px以下）
=============================== */
@media screen and (max-width: 768px) {

main#contact{
  padding: 100px 20px 100px;
}

/* tableを縦並びに */
table,
tbody,
tr,
th,
td{
  display:block;
  width:100%;
}

/* 見出し */
th{
  text-align:left;
  margin-bottom:6px;
}

/* 入力欄 */
td{
  padding:0 0 20px;
}

/* input textarea */
input,
textarea{
  width:100%;
}

/* ラジオボタン */
input[type="radio"]{
  margin:0 6px 0 0;
}

/* privacy枠 */
.privacy{
  max-width:100%;
  height:200px;
  padding:15px;
}

/* チェック */
.privacy-check{
  font-size:14px;
  margin:20px 0;
}

/* ボタン中央 */
.button-03{
  text-align:center;
}

/* Hero余白 */
.page-hero{
  padding:60px 0 30px;
}

}

/* =============================
  privacy policy
============================= */

@media screen and (max-width: 768px){

  .sub-hero{
    padding: 80px 20px 40px;
  }

  .title-group{
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .title-text{
    text-align: center;
  }

  .sub-hero_logo img{
    max-width: 200px;
  }

  .sub-hero h2{
    font-size: 22px;
  }

  .sub-hero p{
    font-size: 12px;
  }

}
/* iphone SE対策 */
@media (max-width: 480px) {
  .leaf-left {
    left: -15vw;
  }

  .leaf-right {
    right: -15vw;
  }
}

/* --------------------------------------
// ここからPC表示用のCSS
// -------------------------------------- */
@media (min-width: 1025px) {
  .minori_logo {
    width: 400px; /* PC表示用のサイズ */
  }
}

@supports (-webkit-touch-callout: none) {
  .container {
    min-height: 100svh;
  }
}


