
/* ====================
全体
==================== */

html{
  overflow-x: hidden;
}

body{
  opacity: 0;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 400;
  font-style: normal;  
  overflow-x: hidden;
}

body.loaded{
  opacity: 1;
  transition-duration: 3s;
}

.p{
  line-height: 1.8;
  font-size: 14px;
}

br.sp{
  display: none;
}

br.pc{
  display: inline-block;
}

/* ====================
ヘッダー
==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  z-index: 100;
}

.header-inner {
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 350px;
  display: block;
}

.header-button img {
  width: 320px;
  transition: opacity 0.3s;
}

.header-button img:hover {
  opacity: 0.8;
}



/* ====================
ヒーローエリア
==================== */

.hero picture,
.hero img {
  display: block;
  width: 100%;
  height: auto;
}



/* ====================
チョコレートの紹介セクション
==================== */
.choco-section{
  position: relative;
  background-color: #350902;
}

.choco-block{
  position: relative;
}

.choco-block:first-of-type{
  margin-top: -8px;
}
.choco-block h2, .choco-block p{
  color: #fff;
}

/* 画像右寄せ */
.choco-block.reverse .choco-img-side {
  left: auto;
  right: 0;
}

/* テキスト左寄せ */
.choco-block.reverse .choco-content {
  justify-content: flex-start;
}


/* 画像部分 */
.choco-img-side {
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  height: 50vw; /* 正方形 */
  overflow: hidden;
  z-index: 1;
}

.choco-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ラッパー */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* テキストコンテナ */
.choco-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  min-height: 50vw;
  align-items: center;
}

/* テキスト部分 */
.choco-text {
  width: 50%;
  padding-left: 56px;
  box-sizing: border-box;
}

.choco-block.reverse .choco-content .choco-text{
  padding-left: 0;
  padding-right: 56px;
}

.choco-text h2 {
  opacity: 0;
  transform: translateY(30px);
  font-size: 37px;
  margin-bottom: 40px;
}

.choco-text p {
  opacity: 0;
  transform: translateY(30px);
  font-size: 17px;
}

.choco-text.visible h2{
  opacity: 1;
  transform: translateY(0px);
  transition-duration: 1s;
}

.choco-text.visible p {
  opacity: 1;
  transform: translateY(0px);
  transition-duration: 1s; 
  transition-delay: .75s;
}



/* ====================
木のイラストと本文セクション
==================== */

.tree-section {
  margin-top: -13vw;
  padding-bottom: 60px;
}

.tree-inner {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tree-inner.visible {
  opacity: 1.25;
  transform: translateY(0);
  transition-duration: 1s;
}

/* 左右50% */
.tree-image{
  width: 40%;
  box-sizing: border-box;
}

.tree-text{
  width: 57.5%;
}


/* 画像にパディング */
.image-box {
  padding: 20px;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト */
.tree-text p {
  padding-left: 40px;
  font-size: 17px;
  line-height: 2.2;
}


/* ====================
自動横スクロールセクション
==================== */

.scroll-section {
  overflow: hidden;
  background: #fff;
  padding: 40px 0 60px;
}

.scroll-track {
  opacity: 0;
  display: flex;
  width: 200%; /* 2セット分 */
  animation: scroll-loop 30s linear infinite;
}

.scroll-track.visible {
  opacity: 1;
  transition-duration: 2s;
}

.scroll-track img {
  width: calc(100% / 9.1); /* 約4枚+チラ見せ */
  min-width: 240px;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  margin-right: 20px;
}

/* スクロールアニメーション */
@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* ====================
未来をつくるセクション
==================== */

/* セクション全体 */
.future-section {
  position: relative;
  background-color: #340701;
  color: #fff;
  overflow: hidden;
  padding: 48px 0;
}

/* 画像エリア：wrapperの外で右40%固定 */
.future-img-side {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 40vw;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.future-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキストエリア：wrapper内 */
.future-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  min-height: 40vw;
  align-items: center;
}

.future-text {
  width: 60%;
  box-sizing: border-box;
}

.future-text h2 {
  opacity: 0;
  transform: translateY(100px);
  font-size: 37px;
  margin-bottom: 16px;
  line-height: 2;
}

.future-text p {
  opacity: 0;
  transform: translateY(100px);
  padding-left: 16px;
  font-size: 17px;  
  line-height: 2.2;
}

.future-section.visible .future-img-side{
  opacity: 1;
  transition-duration: 2s;
  transition-delay: .5s;
}

.future-text.visible h2{
  opacity: 1;
  transform: translateY(0);
  transition-duration: 1s;
}

.future-text.visible p{
  opacity: 1;
  transform: translateY(0);
  transition-duration: 1s;
  transition-delay: .5s;
}



/* ====================
現地Instagramセクション（左右50%・中央余白あり）
==================== */

.local-instagram-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.local-insta-inner {
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.local-insta-inner.visible {
  opacity: 1;
  transition-duration: 1s;
  
}

/* 左側：テキストエリア */
.local-insta-text {
  width: 50%;
  box-sizing: border-box;
}

.local-insta-text h2 {
  font-size: 35px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.local-insta-text p {
  font-size: 17px;
  
}

/* 右側：インスタ投稿グリッド */
.local-insta-grid {
  padding-left: 40px;
  width: 50%;
  box-sizing: border-box;
}
.local-insta-grid #insta-div .insta-container{
  width: 100%;
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.local-insta-grid #insta-div .insta-container .insta-media{
  width: 30%;
  border: solid 2px #ccc;
  border-radius: 0;
  overflow: hidden;
}

.local-insta-grid #insta-div .insta-container .insta-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.like-count, .comments-count{
  display: none !important;
}

.insta-link-button {
  margin-top: 24px;
  padding: 8px 32px;
  background-color: #AA11BE;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  border-radius: 50px;
  transition: background 0.3s ease;
}
.insta-link-button.sp {
  display: none;
}
.insta-link-button.pc {
  display:inline-block;
}

.local-insta-text .insta-link-button:hover {
  background-color: #920fa6;
}






/* ====================
フロー図と説明セクション
==================== */

.flow-section {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  background-color: #f4f4f0;
}

.flow-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* 左55%：画像 */
.flow-image {
  opacity: 0;
  transform: translateY(100px);
  width: 50%;
  box-sizing: border-box;
}

.flow-inner.visible .flow-image{
  opacity: 1;
  transition-duration: 1s;
  transform: translateY(0px);
} 

.image-box {
  padding: 20px;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右45%：テキスト */
.flow-text {
  width: 45%;
  box-sizing: border-box;
}

.flow-text h2 {
  opacity: 0;
  transform: translateY(100px);
  font-size: 35px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.flow-text p {
  opacity: 0;
  transform: translateY(100px);
  transition-delay: 1s;
  font-size: 17px;
}

.flow-inner.visible .flow-text h2{
  opacity: 1;
  transition-duration: 1s;
  transition-delay: 1.5s;
  transform: translateY(0px);
}

.flow-inner.visible .flow-text p{
  opacity: 1;
  transition-duration: 1s;
  transition-delay: 2s;
  transform: translateY(0px);
}




/* ====================
パートナー帯セクション
==================== */

.partner-banner {
  position: relative;
  z-index: 3;
  background-color: #fff;
  padding: 32px 0;
  text-align: center;
  position: relative;
}

.partner-banner p {
  font-size: 32px;
  margin: 0;
  line-height: 1.2;
}

/* 下中央の三角形 */
.partner-banner .triangle {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #fff;
}


/* ====================
cherry.c プロジェクト紹介セクション
==================== */

.cherry-project-section {
  position: relative;
  z-index: 1;
  position: relative;
  background-color: #0a090e;
  color: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.cherry-img-side {
  opacity: 1;
  transform: translateY(-10%);
  position: absolute;
  top: 0;
  left: 0;
  width: 40vw;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.cherry-img-side.visible {
  opacity: 1;
  transform: translateY(0%);
  transition-duration: 2s;

}

.cherry-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ロゴを画像の上に重ねる */
.cherry-logo {
  width: 100%;
}

.cherry-logo img {
  width: 100%;
  height: auto;
}

/* テキスト側 */
.cherry-content {
  opacity: 0;
  position: relative;
  z-index: 3;
  margin-left: 33vw;
  max-width: 700px;
}

.cherry-content.visible {
  opacity: 1;
  transition-duration: 2s;
}

.cherry-content h2 {
  padding-left: 56px;
  padding-top: 40px;
  font-size: 28px;
  margin-bottom: 20px;
}

.cherry-content p {
  padding-left: 56px;
  font-size: 17px;
  
  margin-bottom: 30px;
}

.cherry-button {
  margin-left: 56px;
  display: inline-block;
  padding: 12px 32px;
  background-color: #fff;
  color: #000;
  font-size: 17px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
}

.cherry-button:hover {
  background-color: #ddd;
}



/* ====================
Instagramセクション（左右2カラム版）
==================== */

.instagram-section {
  background-color: #000;
  padding: 40px 0 80px;
}

.instagram-container {
  background-color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 64px;
  box-sizing: border-box;
  border-radius: 8px;
}

.insta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* gap: 40px; */
}

/* 左側：テキスト */
.insta-text {
  width: 100%;
  text-align: center;
  color: #000;
}

.insta-text h2 {
  font-size: 35px;
  margin-bottom: 24px;
  text-align: center;
}

.insta-text p {
  font-size: 17px;
  text-align: center;
  
}

/* 右側：Instagramグリッド */
.insta-grid {
  margin-top: 24px;
  width: 59%;
  margin-left: auto;
  margin-right: auto;
}

.insta-container{
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.insta-container .insta-media{
  width: 30%;
  display: flex;
  align-items: center;
  background: #000;
}

.insta-post img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}



/* ====================
支援から生まれるチョコレートメッセージセクション
==================== */

.message-section {
  filter: blur(100px);
  position: relative;
  background-image: url('../img/bg-message.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

.message-section.visible {
  filter: blur(0);
  transition-duration: 1s;
}

.message-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 黒フィルター・透過40% */
  z-index: 1;
}

.message-box {
  position: relative;
  z-index: 2;
  width: 50%;
  box-sizing: border-box;
  opacity: 0;
  /* transition-duration: 1s; */
  transform: translateX(100px);
}

.message-section.visible .message-box{
  transition-delay: 1s;
  opacity: 1;
  transition-duration: 1s;
  transform: translateX(0);
}

.message-box p {
  font-size: 24px;
  line-height: 2.6666;
  
}






/* ====================
支援方法セクション
==================== */

.support-section {
  position: relative;
  padding: 80px 0;
  background-color: #f9f9f9;
  background-image: url('../img/bg-support.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.support-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 黒フィルター・透過40% */
  z-index: 1;
}

.support-section > div{
  position: relative;
  z-index: 2;
}


.support-section .section-title {
  font-size: 35px;
  color: #fff;
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: 56px;
}

/* プラン2カラム */
.plan-columns {
  display: flex;
  justify-content: space-between;
  gap: 0px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(100px);
}
.plan-columns.visible{
  opacity: 1;
  transition-duration: 1s;;
  transform: translateY(0px);
}

.plan-box {
  width: 47.75%;
  background: #fff;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background-color: #340701;
  border: solid 4px #fff;
}

.plan-box h3 {
  padding-top: 24px;
  font-size: 24px;
  margin-bottom: 16px;
  color: #fff;
}

.plan-img img {
  width: 100%;
  height: auto;
}

.plan-price {
  padding: 24px 0;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.plan-price span {
  font-size: 14px;
  color: #fff;
  /* display: block; */
  margin-top: 4px;
}

/* 返礼品2カラム */
.gift-area {
  padding: 40px 0;
  background-color: #340701;
  border: solid 4px #fff;
  margin-bottom: 60px;
  text-align: center;
  opacity: 0;
}

.gift-area.visible{
  opacity: 1;
  transition-duration: 1s;
}


.gift-area .sub-title {
  display: inline-block;
  font-size: 32px;
  margin-bottom: 24px;
  color: #fff;
  text-align: center;
  border-bottom: solid 2px #fff;
}

.gift-columns {
  justify-content: space-between;
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
}

.gift-box {
  width: 48.75%;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}

.gift-box p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff;
}

.gift-box span {
  font-size: 15px;
  color: #fff;
}

/* 会計処理3カラム */
.accounting-area{
  opacity: 0;
  transition-duration: 1s;
}
.accounting-area.visible{
  opacity: 1;
  transition-duration: 1s;
}
.accounting-area .sub-title {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
  color: #fff;
}

.accounting-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.accounting-box {
  width: 32%;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;;
}

.accounting-box h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.accounting-box p {
  font-size: 15px;
  line-height: 1.6;
}



/* ====================
プロジェクト参加の流れセクション
==================== */

.flow-steps-section {
  padding: 80px 0;
  background-color: #F4F0EB;
}

.flow-steps-section > div{
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(50px);
}

.flow-steps-section > div.visible{
  transition-duration: 1s;;
  opacity: 1;
  transform: translateX(0px);
}

.flow-steps-section .section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 56px;
}

.flow-step {
  position: relative;
  width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.step-icon {
  position: relative;
  text-align: center;
  font-size: 37px;
  color: #714433;
  padding-top: 8px;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;;
}

.step-icon::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19%;
  transform: translateY(50%) translateX(-50%);
  width: 6%;
  height: 33px;
  background-image: url("../img/flow-dot.svg");
  background-size: contain;
  background-repeat: repeat-y;
}

.flow-step:last-of-type .step-icon::after {
  display: none;
}

.step-content {
  width: calc(100% - 100px);
  padding-left: 24px;
}

.step-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #340701;
}

.step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #340701;
}


/* 1. パートナーセクション */
.partner-message-section {
  position: relative;
  z-index: 0;
  padding: 80px 0;
  color: #fff;
  text-align: center;
  background-image: url("../img/back-partner.jpg");
  background-size: cover;
  background-position: center;
}

.partner-message-section::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: .5;
}

.partner-message-section .wrapper{
  position: relative;
  z-index: 2;
}

.partner-title {
  opacity: 0;
  transform: translateY(50px);
  position: relative;
  line-height: 1.7;
  z-index: 2;
  font-size: 32px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
}

.partner-message-section > .visible .partner-title{
  opacity: 1;
  transform: translateY(0px);
  transition-duration: 1s;
}

.partner-text {
  position: relative;
  z-index: 2;
  font-size: 18px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); 
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
}

.partner-message-section > .visible .partner-text{
  opacity: 1;
  transform: translateY(0px);
  transition-duration: 1s;
  transition-delay: .75s;
}

.partner-form {
  opacity: 0;
  transform: translateY(50px);
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  color: #000;
  text-align: left;
}
.partner-message-section > .visible .partner-form {
  opacity: 1;
  transform: translateY(0px);
  transition-duration: 1s;
  transition-delay: 1.5s;
}

.partner-form .form-group {
  margin-bottom: 20px;
}

.partner-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 17px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.partner-form textarea {
  height: 120px;
  resize: vertical;
}

.partner-form .checkbox label {
  display: block;
  text-align: center;
  font-weight: normal;
}

.partner-form .checkbox input[type="checkbox"]{
  width: auto;
}

.partner-form button {
  background: #AA11BE;
  color: #fff;
  padding: 12px 24px;
  width: 240px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: block;
}

/* 2. バナーセクション */
.banner-section {
  background: #340701;
  padding: 60px 0;
  text-align: center;
}

.banner-img {
  max-width: 640px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 3. よくあるご質問セクション */
.faq-section {
  position: relative;
  z-index: 0;
  padding: 80px 0;
  background-image: url("../img/faq-back.jpg");
  background-size: cover;
  background-position: center;
}

.faq-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: .9;
  z-index: 1;
}

.faq-title {
  position: relative;;
  z-index: 2;
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.faq-section .items{
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}

.faq-section .items.visible{
  opacity: 1;
  transform: translateY(0px);
  transition-duration: 1s;
}


.faq-item {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 32px);
  position: relative;;
  z-index: 2;
  margin-bottom: 24px;
}


.faq-item h3 {
  margin-top: 40px;
  padding-left: 32px;
  position: relative;
  font-size: 24px;
  margin-bottom: 6px;
  color: #340701;
  border-bottom: solid 1px #714433;
  padding-bottom: 16px;
}

.faq-item p {
  padding-top: 16px;
  padding-left: 32px;
  position: relative;
  font-size: 17px;
  line-height: 1.6;
  color: #000;
}


.q h3::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "Q. ";
  font-size: 24px;
}

.faq-item p::before {
  position: absolute;
  left: 0;
  top: 12px;
  content: "A. ";
  font-weight: bold;
  font-size: 24px;
}


/* ====================
フッター
==================== */
.site-footer {
  background-color: #340701;
  color: #FFF;
  text-align: center;
  padding: 40px 20px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 400px;
  margin-bottom: 12px;
}

.footer-sns a {
  color: #FFF;
  font-size: 32px;
  margin: 0 10px;
  transition: opacity 0.3s ease;
}

.footer-sns a:hover {
  opacity: 0.7;
}

.footer-copy {
  margin-top: 20px;
  font-size: 14px;
}


@media screen and (max-width:750px) {
 
/* ====================
全体
==================== */
html{
  font-family: serif;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

body{
  letter-spacing: .1em;
}

br.sp{
  display: inline-block;
}

br.pc{
  display: none;
}

.p{
  line-height: 1.8;
  letter-spacing: .1em;
  font-size: 17px;
}

/* ====================
ヘッダー
==================== */
.site-header {
  padding: 16px 12px;
}

.header-inner {
  padding-left: 0;
  padding-right: 0;
}

.logo img {
  width: 200px;
  display: block;
}

.header-button-outer{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px 16px 0;
  background-color: rgba(0, 0, 0,.8);

}

.header-button a{
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 240px;
}

.header-button img {
  width: 100%;
}
/* ====================
チョコレートの紹介セクション
==================== */
.choco-section{
  position: relative;
  z-index: 2;
  background-color: #350902;
}

.choco-block{
  margin-top: 56px;
  position: relative;
}

.choco-block:first-of-type{
  margin-top: -8px;
}

.choco-block h2, .choco-block p{
  color: #fff;
}

/* 画像右寄せ */
.choco-block.reverse .choco-img-side {
  margin-left: auto;
  margin-right: 0;
}

/* テキスト左寄せ */
.choco-block.reverse .choco-content {
  justify-content: flex-start;
}


/* 画像部分 */
.choco-img-side {
  position: relative;
  top: 0;
  left: 0;
  width: 65%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 32px;
}

/* テキストコンテナ */
.choco-content {
  position: relative;
  z-index: 2;
  display: block;
  min-height: auto;
}

/* テキスト部分 */
.choco-text {
  width: 100%;
  padding-left:0px;
}

.choco-block.reverse .choco-content .choco-text{
  padding-left: 0;
  padding-right: 0;
}

.choco-text h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.choco-text p {
  font-size: 14px;
}

.dip{
  margin-top: -4px;
  position: relative;
  z-index: 0;
}


/* ====================
木のイラストと本文セクション
==================== */

.tree-section {
  margin-top: -5vw;
  padding-bottom: 32px;
}

.tree-inner {
  display: block;
}

/* 左右50% */
.tree-image{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.tree-text{
  width: 100%;
}
.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト */
.tree-text p {
  padding-left: 0px;
  font-size: 14px;
  
}


/* ====================
自動横スクロールセクション
==================== */

.scroll-section {
  padding: 24px 0 30px;
}

.scroll-track {
  animation: scroll-loop 10s linear infinite;
}

.scroll-track img {
  width: calc(100% / 4.5); /* 約4枚+チラ見せ */
  min-width: 150px;
  margin-right: 12px;
}

/* ====================
未来をつくるセクション
==================== */

/* セクション全体 */
.future-section {
  padding: 0 0 40px;
}

/* 画像エリア：wrapperの外で右40%固定 */
.future-img-side {
  position: initial;
  width: 100vw;
}

/* テキストエリア：wrapper内 */
.future-content {
  display: block;
  min-height: initial;
}

.future-text {
  width: 100%;
}

.future-text h2 {
  margin-top: 24px;
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 2;
}

.future-text p {
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.8;
  
}



/* ====================
現地Instagramセクション（左右50%・中央余白あり）
==================== */

.local-instagram-section {
  padding: 40px 0;
}

.local-insta-inner {
  display: block;
}

/* 左側：テキストエリア */
.local-insta-text {
  width: 100%;
}

.local-insta-text h2 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.local-insta-text p {
  font-size: 14px;
  
}

/* 右側：インスタ投稿グリッド */
.local-insta-grid {
  width: 100%;
  padding-left: 0;
}
.local-insta-grid #insta-div .insta-container{
  gap: 8px 0px;
}
.local-insta-grid #insta-div .insta-container .insta-media{
  width: 32%;
}
.insta-link-button.pc {
  display: none;
}

.insta-link-button.sp {

}

.local-insta-text .insta-link-button:hover {
  background-color: #920fa6;
}






/* ====================
フロー図と説明セクション
==================== */

.flow-section {
  padding: 30px 0;
}

.flow-inner {
  display: block;
}

/* 左55%：画像 */
.flow-image {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.image-box {
  padding: 20px;
}
/* 右45%：テキスト */
.flow-text {
  width: 100%;
}

.flow-text h2 {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.flow-text p {
  font-size: 14px;
  line-height: 1.7;
  
}




/* ====================
パートナー帯セクション
==================== */

.partner-banner {
  padding: 16px 0;
}

.partner-banner p {
  font-size: 18px;
}

/* ====================
cherry.c プロジェクト紹介セクション
==================== */

.cherry-project-section {
  padding: 40px 0 40px;
}

.cherry-img-side {
  position: initial;
  width: 51%;
  margin-left: auto;
  margin-right: auto;
}

/* テキスト側 */
.cherry-content {
  margin-top: 24px;
  position: relative;
  z-index: 3;
  margin-left: 0;
  max-width: 700px;
}

.cherry-content h2 {
  padding-left: 0px;
  padding-top: 24px;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.cherry-content p {
  padding-left: 0;
  font-size: 14px;
  
  margin-bottom: 24px;
}

.cherry-button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  display: block;
  width: 220px;
  padding: 8px 0px;
  text-align: center;
  font-size: 15px;
}


/* ====================
Instagramセクション（左右2カラム版）
==================== */

.instagram-section {
  background-color: #000;
  padding: 40px 0 40px;
}

.instagram-container {
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 32px 16px;
  border-radius: 8px;
}

.insta-inner {
  display: block;
}

/* 左側：テキスト */
.insta-text {
  width: 100%;
}

.insta-text h2 {
  font-size: 19px;
  margin-bottom: 12px;
}

.insta-text p {
  font-size: 13px;
}
.insta-text p br.pc{
  display: none;
}

/* 右側：Instagramグリッド */
.insta-grid {
  width: 100%;
  display:block;
}

.insta-link-button{
  margin-top: 24px;
  padding: 8px 25px;
  font-size: 14px;
}


.insta-link-button.sp {
  display: inline-block;
}
.insta-link-button.pc {
  display:none;
}

/* 右側：Instagramグリッド */
.insta-grid {
  margin-top: 24px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.insta-container{
  gap: 12px 0px;
}
.insta-container .insta-media{
  width: 48.75%;
  display: flex;
  align-items: center;
  background: #000;
}

.insta-post img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}



/* ====================
支援から生まれるチョコレートメッセージセクション
==================== */

.message-section {
  padding: 40px 0;
}

.message-box {
  width: 100%;
}

.message-box p {
  font-size: 17px;
  line-height: 1.9;
  
}






/* ====================
支援方法セクション
==================== */

.support-section {
  padding: 40px 0;
  background-image: url('../img/bg-support.jpg');
}

.support-section .section-title {
  font-size: 24px;
  margin-bottom: 28px;
}

/* プラン2カラム */
.plan-columns {
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.plan-box {
  width:85%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  border: solid 2.4px #fff;
}

.plan-box h3 {
  padding-top: 12px;
  font-size: 12px;
  margin-bottom: 8px;
}

.plan-price {
  padding: 12px 0;
  font-size: 18px;
}

.plan-price span {
  font-size: 12.5px;
  margin-top: 4px;
}

/* 返礼品2カラム */
.gift-area {
  width:85%;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 0;
  border: solid 2.4px #fff;
  margin-bottom: 30px;
}

.gift-area .sub-title {
  font-size: 24px;
  margin-bottom: 12px;
  border-bottom: solid 1px #fff;
}

.gift-columns {
  justify-content: space-between;
  display: block;
  gap: 0px;
  flex-wrap: wrap;
}

.gift-box {
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}

.gift-box p {
  font-size: 17px;
  margin-bottom: 4.6px;
  color: #fff;
}

.gift-box span {
  font-size: 12.5px;
  color: #fff;
}

/* 会計処理3カラム */
.accounting-area .sub-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.accounting-columns {
  gap: 24px 0;
}

.accounting-box {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 16px;
  border-radius: 6px;
}

.accounting-box h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.accounting-box p {
  font-size: 13px;
  line-height: 1.6;
}



/* ====================
プロジェクト参加の流れセクション
==================== */

.flow-steps-section {
  padding: 40px 0;
}

.flow-steps-section .section-title {
  font-size: 24px;
  margin-bottom:40px;
}

.flow-step {
  width: 100%;
  gap: 24px;
  margin-bottom: 40px;
}

.step-icon {
  font-size: 24px;
  padding-top: 0px;
  width: 60px;
  height: 60px;
}

.step-icon::after{
  display: non;
}

.step-content {
  width: calc(100% - 60px);
  padding-left: 0px;
}

.step-content h3 {
  font-size: 20px;
}

.step-content p {
  font-size: 13px;
}


/* 1. パートナーセクション */
.partner-message-section {
  padding: 40px 0;
  background-image: url("../img/back-partner.jpg");
}

.partner-title {
  line-height: 1.7;
  font-size: 20px;
  margin-bottom: 16px;
}

.partner-text {
  font-size: 14px;
  margin-bottom: 24px;
}

.partner-form {
  padding: 32px 16px;
}

.partner-form .form-group {
  margin-bottom: 16px;
}

.partner-form label {
  margin-bottom: 4px;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
  width: 100%;
  padding: 8px;
  font-size: 15px;
}

.partner-form textarea {
  height: 80px;
}


.partner-form button {
  padding: 8px 16px;
  width: 220px;
  font-size: 15px;
}

/* 2. バナーセクション */
.banner-section {
  padding: 32px 0;
}

.banner-img {
  width: 100%;
}

/* 3. よくあるご質問セクション */
.faq-section {
  position: relative;
  z-index: 0;
  padding: 40px 0;
  background-image: url("../img/faq-back.jpg");
  background-size: cover;
  background-position: center;
}
.faq-title {
  font-size: 24px;
  margin-bottom: 24px;
}

.faq-item {
  width: calc(100%);
  margin-bottom: 24px;
}

.faq-item h3 {
  margin-top: 24px;
  padding-left: 32px;
  position: relative;
  font-size: 18px;
  margin-bottom: 6px;
  padding-bottom: 10px;
}

.faq-item p {
  padding-top: 10px;
  padding-left: 32px;
  font-size: 14px;
}


.q h3::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "Q. ";
  font-size: 20px;
}

.faq-item p::before {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 20px;
}


/* ====================
フッター
==================== */
.site-footer {
  padding: 10px 16px 120px;
}

.footer-logo img {
  max-width: 70%;
}

.footer-sns a {
  font-size: 24px;
}
.footer-copy {
  margin-top: 12px;
  font-size: 10px;
} 
}