@charset "UTF-8";
/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%; /*emの計算をしやすくするための定番設定*/
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  color: #5D4A41;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
}
a:link, a:visited {
  color: #009b71;
  font-weight: bold;
}
a:hover, a:active {
  color: #f60;
}
/*ブラウザのCSSをリセット*/
p {
  margin: 0;
  padding: 0;
}
/*セクションエリアの共通設定*/
section {
  clear: both;
}

html{
  scroll-behavior: smooth;
}

/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/
h2 {
  margin: 0.5em 0em;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}
h3 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.6em;
  font-weight: bold;
  border-bottom: 1px dotted #fff;
}
h4 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.4em;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}
h5 {
  margin: 0.5em 0em;
  padding: 0.1em;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}
/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-color: #f2f2f2;
}
/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  font-size: 1.6em; /*=16px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.8;
}

.article{
	width: 100%;
}

/*カラム全体の幅を変更する*/
.top_image_in,.section_inr {
  max-width: 950px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
  
}

/*各セクションの画像タイトル用*/
.section_title img {
  width: 80%;
  height: auto;
}
/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: url("../images/top_image_back.jpg");
  background-position: top center;
  background-size: cover;      /* ←追加 */
  background-repeat: no-repeat;
  height: auto;
}
.top_image_in img {
  width: 100%;
    box-shadow: 
  6px 0 10px -6px rgba(0,0,0,0.12),
 -6px 0 10px -6px rgba(0,0,0,0.12);
}







/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
.area_cta {
  background-color: #009b71;
  padding: 1em 3em;
}
.area_cta_inr {
  background-color: #fff;
  padding: 0em 2em 1em;
  overflow: auto;
}
.area_cta_inr img {
  max-width: 100%;
  height: auto;
  display: block;
}

.area_cta_inr_left {
  float: left;
  width: 48%;
  margin: 0em 0.5em;
}
.area_cta_inr_right {
  float: right;
  width: 48%;
  margin: 0em .5em;
}

/*--------------------------------------------------
section　悩み　の設定
-----------------------------------------------------*/
.section_nayami {
  background: #F7F5ED;
  padding: 1.5em 3em;
  }

/*チェックリスト設定*/
ul.checklist {
  list-style: none;
  padding: 1.5em 3em;
  background-color: #fff;
  border-radius: 32px;
}
ul.checklist li {
  background-image: url("../images/icon-check03-red.png");
  background-repeat: no-repeat;
  background-size: 3.5%;
  padding-left: 1.8em;
  margin-bottom: 0.8em;
}
ul.checklist li:last-child {
  margin-bottom: 0em;
}

/*--------------------------------------------------
section　解決　の設定
-----------------------------------------------------*/
.section_kaiketsu {
  background: #Fff;
  padding: 1.5em 3em;
  }

.l-media {
  display: flex;
  align-items: center;
  gap: 16px;
}
.l-media > * {
  flex: 0 0 50%;
  box-sizing: border-box;
  min-width: 0;
}
.l-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.l-media.is-reverse {
  flex-direction: row-reverse;
}


/* ===== レポートボタン（左寄せ固定） ===== */

.btn--report{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 20px;
  background: #5D4A41;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  float: right; 
}
/* float解除（レイアウト崩れ防止） */
.l-media__text::after{
  content: "";
  display: block;
  clear: both;
}
/* hover */
.btn--report:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.16);
}

/* レポートボタンだけ上書き */
a.btn--report:link,
a.btn--report:visited,
a.btn--report:hover{
  color: #ffffff !important;
}

/* ===== 送れる品目アイコン（円内：上アイコン＋下文字） ===== */

.sendable-icons__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 16px;
  max-width: 480px;
  margin: 0 auto;
}


/* 円（緑背景） */
.sendable-icons__circle{
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 50%;
  background: #009b71; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.sendable-icons__circle:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* アイコン（白） */
.sendable-icons__icon{
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 6px;
}

/* 円内ラベル（白） */
.sendable-icons__label{
  font-size: 0.85rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

/* ===== NG横長レイアウト ===== */
.ng-row{
  max-width: 680px;
  margin: 14px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
    align-items: center; 
}

.ng-card{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #B94A48; /* NG色 */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  color: #fff;
  width: auto;               /* 念のため */
  max-width: 100%;
}

.ng-card__icon{
  font-size: 30px;
  flex-shrink: 0;
}

.ng-card__title{
  font-weight: bold;
}

.ng-card__reason{
  margin: 2px 0 0;
  font-size: 0.8rem;
  opacity: 0.9;
}

/* スマホ */
@media (max-width: 768px){

  .ng-card{
    padding: 12px 14px;
  }

  .ng-card__title{
    font-size: 0.9rem;
  }

  .ng-card__reason{
    font-size: 0.75rem;
  }
}


/* ===== PC：OK / NG を左右配置 ===== */
  .ok-ng-wrap{
    display: flex;
    gap: 36px;
    align-items: flex-start;
    justify-content: center;
    border: #F98E21 solid 2px;
    border-radius: 32px;
    padding: 1em 2em;
    margin: 1em auto;
  }

  .ok-block{
    flex: 0 0 50%;
  }

  .ng-block{
    flex: 0 0 50%;
  }

/* ===== SP：縦積み（安全維持） ===== */
@media (max-width: 768px){

  .ok-ng-wrap{
    display: block;
  }

  .ok-block,
  .ng-block{
    margin-bottom: 24px;
  }
}

/*--------------------------------------------------
section storyの設定
-----------------------------------------------------*/
.section_story{
  padding: 1.5em 3em;
  background: #333; /* セクション背景 */
  color: #fff;
  font-weight: bold;
}

.media_full {
  display: block;
  max-width: 90%;
  margin: 2em auto;
}
.button{
  max-width: 300px; 
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 2em;
}

.section--wave {
  position: relative;
}
.section_story,
.section--wave {
  overflow: visible;
}


.wave svg {
  display: block;
  width: 100%;
  height: 40px;
}

.wave--top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
}

.wave--bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}


.l-media__label {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .05em;
}

.l-media__quote {
  display: block;
  padding: 16px;
  background: #F7F5ED;
  border-radius: 16px;
}



/*--------------------------------------------------
section reasonの設定
-----------------------------------------------------*/
.section_reason{
  padding: 1.5em 3em;
  background: #D8E7C8;
  font-weight: bold;
}

.box-white {
  padding: 0 2em 2em;
  background-color: #fff;
  border-radius: 32px;
  margin: 2em auto;
}

.l-media--text{
  align-items: flex-start;
}

.l-media--text > *{
  flex: 1 1 50%;
  min-width: 0;
}

.rep-logo-wrap{
  display: inline-flex;      /* 横並び */
  align-items: center;
  vertical-align: middle;
}

.rep-logo-wrap img{
  width: 120px;
  height: auto;
  display: block;  
  margin-right: .5em;          /* OK：ラッパーがinline-flexなので問題なし */
}





/*--------------------------------------------------
section voiceの設定
-----------------------------------------------------*/
.section_voice{
  padding: 1.5em 3em;
  background: #D8E7C8;
  font-weight: bold;
}

.voice-box{
  border: 3px dotted #fff;        /* 白い線 */
  border-radius: 32px;           /* 角丸 */
  padding: 1.5em 1.5em;
  margin: 1em auto;
  max-width: 700px;
  background: rgba(255,255,255,0.15); /* ほんのり白 */
}
.voice-box .l-media{
 align-items: center;
}

.voice-box .l-media img{
  width: 200px;          /* ← 好きなサイズに（80〜120pxが無難） */
  max-width: none;      /* 100%制限を解除 */
  height: auto;
  flex: 0 0 auto;       /* flexの50%指定を無効化 */
}

/*--------------------------------------------------
section 流れの設定
-----------------------------------------------------*/
.section_nagare{
  padding: 1.5em 3em;
  background: #F7F5ED;
}

.img_center {
  display: block;
  margin: 0 auto;
  
}

/* STEPエリア */
.nagare-steps{
  display: grid;
  gap: 2.0em;
  margin: 2em auto;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.nagare-step{
  background: #fff;
  border-radius: 32px;
  padding: 1.5em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
}


.step-num{
  display: inline-block;
  background: #009b71;
  color: #fff;
  font-weight: bold;
  padding: .2em 1em !important;
  border-radius: 999px;
  margin-bottom: 1em;
}

.nagare-step img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: .8em auto 0;
}
.copy-address{
  cursor: pointer;
  text-decoration: underline;
  user-select: text;
  -webkit-user-select: text;
}


/* PC：横向き矢印 → */
@media (min-width: 768px){
  .nagare-step:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -1.6em;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 16px solid #009b71;
  }
}


/* =========================
   SP：縦向き矢印 ↓
   ========================= */
@media (max-width: 767px){

  .nagare-steps{
    grid-template-columns: 1fr;
    gap: 2.8em;
  }

  .nagare-step:not(:last-child)::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1.8em;
    transform: translateX(-50%);
    
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid #009b71;
  }
}


/* 本文レイアウト */
.donation-point-body{
  display: flex;
  gap: 1.5em;
  align-items: center;
}

/* 画像 */
.donation-point-img img{
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}


.donation-point{
  border: 2px solid #F98E21;
  border-radius: 16px;
  margin: 2em 0;
  background: #fff;
  position: relative;
  padding: 1.8em 1em 1em;
}

.donation-point-title{
  position: absolute;
  top: 0;
  left: 1.2em;          /* ← 横位置調整 */
  transform: translateY(-50%);
  
  display: inline-block;
  align-items: center;
  background: #F98E21;
  font-weight: 900;
  color: #fff;
  padding: .35em 1em;
  border-radius: 999px;
 
}





/* ----------------------------------
品質基準セクション
---------------------------------- */

.quality-lead{
  text-align: center;
  margin-bottom: 2em;
}

.quality-copy{
  display: inline-block;
  background: #F7F5ED;
  padding: 1em 1.5em;
  border-radius: 24px;
  font-weight: bold;
  line-height: 1.7;
}

/* OK / NG ボックス */
.quality-box-wrap{
  display: grid;
  gap: 1.5em;
  margin-bottom: 2em;
}

.quality-box{
  background: #fff;
  border-radius: 32px;
  padding: 1.5em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.quality-box h3{
  margin-bottom: .6em;
  font-size: 1.2em;
}

.quality-box.ok h3{
  color: #009b71;
}

.quality-box.ng h3{
  color: #D10003;
}

.quality-box ul{
  margin: 0;
  padding-left: 1.2em;
}

.quality-box li{
  margin-bottom: .4em;
  line-height: 1.6;
  font-weight: bold;
}

.quality-box img{
  display: block;
  max-width: 160px;   /* 好きなサイズ */
  width: 100%;
  height: auto;
  margin: 0.8em auto;
}

/* 募集品 */
.quality-recommend{
  border-radius: 32px;
  padding: 1.5em;
}

/* PC */
@media (min-width: 768px){
  .quality-box-wrap{
    grid-template-columns: 1fr 1fr;
  }
}

/* SP */
@media (max-width: 767px){
  .section_quality{
    padding: 1.5em 1em;
  }
}
.recommend-grid{
  display: grid;
  gap: 1.2em;
  margin-top: 1.5em;
}

/* PC：3列 */
@media (min-width: 768px){
  .recommend-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* SP：3列 */
@media (max-width: 767px){
  .recommend-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 超小型SP対策（任意）：2列 */
@media (max-width: 480px){
  .recommend-grid{
    grid-template-columns: repeat(2, 1fr);
    
  }
}

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

.recommend-item img{
  display: block;
  width: 100%;
  margin: 0 auto .4em;
  height: auto;
}

.recommend-item p{
  font-size: .95em;
  line-height: 1.4;
}

.recommend-item span{
  font-size: .85em;
  opacity: .7;
}

/* ----------------------------------
よくある質問（アコーディオン）
---------------------------------- */

.section_faq{
  background: #fff;
  padding: 1.5em 3em;
}

.faq-item{
  background: #F7F5ED;
  border-radius: 24px;
  margin-bottom: 1em;
  overflow: hidden;
}

.faq-q{
  width: 100%;
  background: none;
  border: none;
  padding: 1em;
  font-size: 1em;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .6em;
  color: #5D4A41;
}

.faq-icon{
  margin-left: auto;
  font-weight: bold;
  transition: transform .3s ease;
}

/* Q/A バッジ */
.qa{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6em;
  height: 1.6em;
  border-radius: 999px;
  font-weight: 900;
  font-size: .95em;
  line-height: 1;
  flex: 0 0 auto;
}

.qa.q{
  background: #009b71;
  color: #fff;
}

.qa.a{
  background: #D10003;
  color: #fff;
}

/* 回答（ふわっと） */
.faq-a{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .3s ease;
  padding: 0 1em 1em; 
}

.faq-a p{
  margin: 0;
  padding: 0;
  line-height: 1.7;
  display: flex;
  gap: .6em;
  align-items: flex-start;
}

/* open時 */
.faq-item.is-open .faq-a{
  max-height: 300px;
  opacity: 1;
}

.faq-item.is-open .faq-icon{
  transform: rotate(45deg);
}

/* SP */
@media (max-width: 767px){
  .section_faq{
    padding: 1.5em 1em;
  }
}
/* ----------------------------------
会社概要
---------------------------------- */

.section_company{
  background: #FEF8EC;
  padding: 1.5em 3em 3em;
}

.company-box{
  background: #fff;
  border-radius: 32px;
  padding: 1.5em 3em;
}

.company-list{
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: .8em 1em;
}

.company-list dt{
  font-weight: bold;
}

.company-list dd{
  margin: 0;
  line-height: 1.6;
}

/* SP */
@media (max-width: 767px){
  .section_company{
    padding: 1.5em 1em;
  }

  .company-list{
    grid-template-columns: 1fr;
  }

  .company-list dt{
    margin-top: .8em;
  }
}

/*--------------------------------------------------
スライダー
-----------------------------------------------------*/
.marquee{
  --speed: 90s;          /* 小さいほど速い */
  overflow: hidden;
  width: 100%;
  background: transparent;
  padding-bottom: 2em;
}

.marquee-track{
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee var(--speed) linear infinite;
}

/* 5枚の1セット分だけ左へ流す（= 50%） */
@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 3枚見せる：各画像を「コンテナの1/3幅」にする */
.marquee-track img{
  flex: 0 0 calc((100vw - 32px) / 3); /* gap分ざっくり考慮 */
  max-width: 360px;                  /* PCでデカくなりすぎ防止 */
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* コンテナ幅に合わせたい場合（section内で安定させる） */
.section_inr .marquee-track img{
  flex-basis: calc((950px - 32px) / 3);
}

/* hoverで止めたい場合（任意） */
@media (hover:hover){
  .marquee:hover .marquee-track{
    animation-play-state: paused;
  }
}

/* 動きが苦手な人向け（任意） */
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
}




/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #009b71;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
}
.footer a {
  color: #fff;
}

/*--------------------------------------------------
privacy policy
-----------------------------------------------------*/
.section_pp{
  background-color: #F7F5ED;
  padding: 1.5em 3em;
}

.policy-title{
  text-align: center;
  font-size: 3rem;
  margin-bottom: 0;
}
.policy-list {
  margin: 8px 0 0 1.2em;
}

.policy-list li {
  list-style: disc;
  margin-bottom: 6px;
}

.policy-date {
  margin-top: 32px;
  font-size: 0.9rem;
}

/*--------------------------------------------------
下部固定CTA
-----------------------------------------------------*/
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,155,113,0.9);
  padding: .5em 0;
  z-index: 999;
}

.fixed-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

  .fixed-cta img {
    max-width: 260px;
    height: auto;
    display: block;
  }
/* hover */
.fixed-cta img:hover{
  opacity: .85;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}
