@charset "utf-8";
/*==================
common
==================*/
:root {
  --primary-brown: #665C54;
  --primary-beige: #FFF8F2;
  --primary-orange: #E5734C;
  --primary-green: #8BBE65;
  --space-section: 64px;
  --space-inner: 24px;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 
    'Noto Sans JP', 
    'M PLUS Rounded 1c',
    sans-serif;
  font-style: normal;
  color: var(--primary-brown);
  background-color: var(--primary-beige);
  line-height: 1.7;
  font-size: 1.7rem; 
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img {
  height: auto;
}

.section {
  padding: var(--space-section) var(--space-inner);
}

.section__topic {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 10px;
  position: relative;
  text-align: center;
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
}

.section__lead {
  color: var(--primary-brown);
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 32px;
  text-align: center;
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
}

h2, h3, h4 {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
}

/* CTAボタン */
.cta-wrapper {
  position: relative;
  margin: 40px auto;
  width: 90%;
  max-width: 335px;
  isolation: isolate;
}

.cta-shadow {
  position: absolute;
  inset: 0;
  border-radius: 55px;
  box-shadow: 0 6px 0 #709952;
}

.cta-btn {
  position: relative; /* 内部の位置指定用 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-green);
  color: var(--primary-beige);
  text-decoration: none;
  border-radius: 55px;
  margin: 40px 0;
  padding: 20px 40px;
}

.cta-balloon {
  position: absolute;
  top: -25px;
  left: 53%;
  transform: translateX(-50%);
  background: var(--primary-beige);
  color: var(--primary-brown);
  padding: 6px 15px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
  border: 3px solid var(--primary-green);
}

.cta-balloon::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 8px solid var(--primary-beige);
}

.cta-btn__textBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: 30px;
}

.cta-btn__sub {
  font-size: 0.9rem;
}

.cta-btn__text {
  font-size: 1.5rem;
  font-weight: 600;
}

.cta-btn__left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: auto;
  z-index: 10;
}

.cta-btn__right {
  position: absolute;
  right: 30px;
  width: 3vw; /* 画面に応じて可変 */
  height: auto;
}

/* cta pc */
@media screen and (min-width:769px) {
  .section--cta {
    padding: 50px 0;
  }

  .cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-green);
    color: var(--primary-beige);
    text-decoration: none;
    border-radius: 55px;
    padding: 10px 0;
    box-shadow: 0 8px 0 #709952;
  }

  .cta-btn__textBox {
    margin-left: 235px;
    text-align: center;
  }

  .cta-btn__sub {
    font-size: 1.8rem;
  }

  .cta-btn__text {
    font-size: 3rem;
    font-weight: 700;
  }

  .cta-btn__left {
    width:  100px;
    height: auto;
  }

  .cta-balloon {
    top: -45px;
    font-size: 1.8rem;
    padding: 8px 20px;
  }
}
/* cta 769px */

/*==================
header
==================*/
.header {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 16px 24px;
}

/* スマホ版ロゴのサイズと表示 */
.site-title img { 
  width: 15vw;
  max-width: 150px;
  height: auto;
  display: block; 
}

/* SP版ではPC版ロゴを非表示 */
.nav__logo--pc {
  display: none;
}

.header__btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: auto;
  cursor: pointer;
  z-index: 1100; 
}

/* nav初期設定 (SP) */
.nav {
  background: rgb(255, 255, 255, 0.9);
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.nav__header {
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav__btn {
  position: absolute;
  right: 16px;
  width: 24px;
  cursor: pointer;
}

.nav__logo {
  width: 15vw; 
  height: auto;
}

.nav__list {
  padding: 0 30px;
}

.nav__item {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  padding: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.nav__link {
  display: flex;                 
  justify-content: space-between;
  align-items: center;                            
  padding: 12px 0;               
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-brown);
  text-decoration: none;
  border-bottom: 1px solid var(--primary-brown);
}

.nav__item img {
  display: inline-block;
  vertical-align: -3px;
}

/* .nav.active表示 */
.nav.active {
  transform: translateX(0);
}

.header__btn {
  display: block;
  width: 18px;
  height: 11px;
}

/* .header pc */ 
@media screen and (min-width:769px) { 
  .header { 
    padding: 40px 24px;
  } 

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

  .site-title {
    display: none;
  }

  .nav { 
    background: transparent;
    height: auto; 
    position: static;
    transform: none; 
  } 
  
  .nav__list { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 0;
  } 
  
  .nav__item { 
    font-size: 1.7rem; 
    font-weight: 100;
    margin-left: 0; 
    padding: 0 20px;
    border-left: 1px solid var(--primary-brown);
    line-height: 1.8; 
  } 
  
  .nav__item:first-of-type,
  .nav__item:nth-of-type(5),
  .nav__logo--pc {
    border-left: none; 
  }
  
  .nav__logo--pc {
    display: block;
    padding: 0 40px;
  }
  .nav__logo--pc img {
    max-width: 150px;
  }
  
  .nav__link {
    border-bottom: none; 
    padding: 0;
  }

  .nav__header, 
  .nav__arrow,
  .header__btn { 
    display: none !important; 
  } 
}
/* .header pc 769px */

/*==================
main
==================*/
.mainVisual {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.mainVisual__img img {
  width: 100%;
  height: auto;
  display: block;
}

.mainVisual .mainVisual__sp {
  display: block;
}

.mainVisual .mainVisual__pc {
  display: none;
}

.mainVisual__catch01 {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  position: absolute;
  top: 0;
  right: 8%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  background: rgba(255, 248, 242, 0.9);
  padding: 15px 5px;
  font-size: 5vw;
  color: var(--primary-brown);
  text-align: start;
  letter-spacing: 0.2em;
}

.mainVisual__catch02 {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  position: absolute;
  bottom: 0;
  right: 30%;
  writing-mode: vertical-rl;
  text-orientation: upleft;
  background: rgba(255, 248, 242, 0.9);
  padding: 15px 5px;
  font-size: 2.5vw;
  color: var(--primary-brown);
  text-align: start;
  margin-top: 12px;
  letter-spacing: 0.1em;
}

/* .mainVisual pc */ 
@media screen and (min-width: 769px) {
  .mainVisual .mainVisual__pc {
    display: block;
  }

  .mainVisual .mainVisual__sp {
    display: none;
  }

  .mainVisual__catch01 {
    font-size: 4vw;
    letter-spacing: 0.3em;
  }

  .mainVisual__catch02 {
    font-size: 1.5vw;
    letter-spacing: 0.7em;
    right: 25%;
  }
}
/* .mainVisual pc 769px */

/* ------------------------------
  About
------------------------------ */
.section--about {
  padding: 35px 24px 48px;
}

.section__topic--about {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-brown);
  text-align: left;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about__text {
  margin-top: 30px;
  font-size: 1.2rem;
  color: var(--primary-brown);
  text-align: left;
  line-height: 1.8;
}

.about__images {
  position: relative;
  margin-top: 24px;
  max-width: 300px;
  margin: 0 auto;
}

.about__img--main {
  width: 100%;
  border-radius: 35px;
  display: block;
}

/* サブの画像（上に重ねる） */
.about__img--sub {
  position: absolute;
  bottom: -30%;  
  right: -8%;     
  width: 55%;
  border-radius: 12px;
}

/* about pc */
@media screen and (min-width: 769px) {
  .section--about {
    padding: 100px 120px 50px;
  }

  .section__topic--about {
    font-size: 3.2rem;
    line-height: 1.3;
    text-align: left;
  }

  .about__content {
    flex-direction: row;
    align-items: center;
    gap: 100px;
  }

  .about__text {
    font-size: 2rem;
    line-height: 2.5;
    max-width: 450px;
  }

  .about__images {
    max-width: 700px;
  }
}
/* about 769px */

/* ------------------------------
  Reason
------------------------------ */
.section--reason {
  background-color: var(--primary-beige); 
  position: relative; 
  background-image: url('../images/reason_bg_wave.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.reason__topic {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  display: block;
}

.reason__topic::before,
.reason__topic::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-brown);
}

.reason__topic::before {
  top: -10px;  /* タイトル上の線 */
}
.reason__topic::after {
  bottom: -10px; /* タイトル下の線 */
}

.reason__topic span {
  font-size: 3.6rem;
}

.reason__list {
  display: flex;
  flex-direction: column; /* 縦積み */
  gap: 32px;
  margin-top: 32px;
}

.reason__content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reason__header {
  display: flex;
  flex-direction: column; /* 縦並び */
  margin-top: 30px; 
}

.reason__item {
  padding: 30px;
  text-align: left;
}

.reason__img {
  width: 62px;
  height: auto;
  margin-top: 25px;
}

.reason__title {
  font-size: 2.1rem;
  font-weight: 700;
}

.reason__subTitle {
  font-size: 1.3rem;
  font-weight: 700;
}

.reason__text {
  margin-top: 20px;
  font-size: 1.0rem;
  line-height: 1.8;
}

/* reason pc */
@media screen and (min-width: 769px) {
  .section--reason {
    background-image: url('../images/reason_pc_wave.png');
  }

  .reason__topic {
    font-size: 3.2rem;
  }

  .reason__topic span {
    font-size: 6.4rem;
  }

  .section--reason {
    padding: 0 120px;
    background-size: cover;
  }

  .reason__list {
    flex-direction: row; /* 横並び */
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 30px 0 80px;
  }

  .reason__item {
    text-align: left;
  }

  .reason__content {
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }

  .reason__img {
    width: 70px; /* PC版アイコンサイズ */
    flex-shrink: 0; /* 縮まない */
  }

  .reason__header {
    display: flex;
    flex-direction: column;
  }

  .reason__title {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }

  .reason__subTitle {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .reason__text {
    font-size: 1.7rem;
    line-height: 1.8;
  }
}
/* reason 769pxs */

/* ------------------------------
  Farmers
------------------------------ */
.section--farmers {
  position: relative;
  padding-bottom: 32px;
}

.farmers__wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.farmers__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
}

.farmers__arrow--left {
  left: 10px;
}

.farmers__arrow--right {
  right: 10px;
}

.farmers__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.farmers__item {
  flex-shrink: 0;
  width: 100%;
  padding: 20px;
  text-align: center;
}

.farmers__img {
  position: relative;
  margin: 0 auto;
}

.farmers__img img {
  width: 100%;
  display: block;
}

.farmers__bubble {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFF;
  padding: 5px;
  border-radius: 32px;
  width: 80%;
  z-index: 10;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.farmers__text {
  font-size: 1.4rem;
  line-height: 1.7;
  margin: 20px 0;
  text-align: left;
}

/* farmers pc */
@media screen and (min-width: 769px) {
  .section--farmers {
    display: block; /* タイトルとリストを縦並びに戻す */
    padding: 100px 5%;
  }

  .section__topic,
  .section__lead {
    margin-bottom: 16px;
  }

  /* リストを横並びに */
  .farmers__list {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: visible;
    transition: transform 0.5s ease;
  }

  .farmers__item {
    flex: 1;
    max-width: 500px;
    text-align: center;
    position: relative;
  }

  .farmers__img {
    position: relative;
    margin: 0 auto 20px;
    max-width: 100%;
  }

  .farmers__img img {
    width: 100%;
    display: block;
  }

  .farmers__bubble {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    font-size: 1rem;
  }

  .farmers__name {
    position: static; /* 下に置く */
    margin: 10px 0 8px;
    padding: 8px 16px;
    border-radius: 16px;
    background-color: #FFF;
    display: inline-block;
  }

  .farmers__text {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .farmers__arrow {
    display: none;
  }
}
/* farmers 769px */

/* ------------------------------
  Lineup
------------------------------ */
.section--lineUp {
  background-color: var(--primary-beige); 
  position: relative; 
  background-image: url('../images/lineUp_bg_wave.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lineUp__list,
.lineUp__list * {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
}

.lineUp__list {
  display: flex;          
  justify-content: center; 
  gap: 20px;               
  flex-wrap: wrap;         
  padding: 0;
  margin: 0 auto;       
  list-style: none;
}

.lineUp__item {
  margin-top: 32px;
  background-color: #fff;
  border-radius: 30px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  text-align: center;
  position: relative;
  border: 1.2px solid var(--primary-brown);
  width: 100%;             
  max-width: 400px;
}

.lineUp__content {
  position: absolute; 
  top: -3px;
  left: 30px;
  width: 90px;
  height: 170px;
  background-color: var(--primary-beige);
  border-radius: 0 0 18px 18px;
  z-index: 10;
  border: 1.2px solid var(--primary-brown);
  padding-top: 20px;
}

.lineUp__name {
  font-size: 1.4rem;
  color: var(--primary-orange);
}

.lineUp__quantity {
  font-size: 4.5rem;
  line-height: 1.4;
}

.lineUp__set {
  font-size: 1.4rem;
}

.lineUp__img {
  border-radius: 12px;
  margin: 0;
  height: auto;
  max-width: 300px;
  width: 90%;
  display: block;
  position: absolute; 
  top: 0; 
  left: 50%;
  transform: translateX(-50%); 
  z-index: 1; 
}

.lineUp__price {
  text-align: center;
  position: relative; 
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: last baseline;
}

.label--farmer {
  display: block;
  font-size: 1.8rem;
  color: var(--primary-brown);
  margin-top: 220px;
  position: relative; 
  z-index: 30; 
  text-align: center;
}

.label--round {
  font-size: 1.8rem;
  background: var(--primary-orange);
  color: #fff;
  display: inline-flex;
  width: 65px; 
  height: 65px;
  border-radius: 50%;
  padding: 8px;
  text-align: center;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.price__tax {
  color: var(--primary-orange);
  font-size: 1.4rem;
  margin-left: 3px;
}

.price__num {
  color: var(--primary-orange);
  font-size: 4.8rem;
}

.label--rect {
  font-size: 0.9rem;
  color: var(--primary-orange);
  writing-mode: vertical-rl;
  border: 1px solid var(--primary-orange);
  padding: 6px 3px 3px 3px;
  letter-spacing: 0.4rem;
  display: flex; 
  align-items: center;
  margin-left: 3px;
  transform: translateY(8px);
}

.lineUp__name, .lineUp__quantity, .label--round, .price__num {
  font-weight: 800;
}

@media screen and (min-width: 769px) {
  .lineUp__list{
    gap: 100px;
  }

  .section--lineUp {
    background-image: url('../images/reason_pc_wave.png');
  }
}

/* ------------------------------
  Our Promise
------------------------------ */
.section--promise {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-image: linear-gradient(
  rgba(0, 0, 0, 0.6) 
  ), url('../images/promise-img.jpg');

  padding: 60px 20px 30px;
}

.promise__topic {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  color: var(--primary-beige);
  position: relative;        
  display: block;     
}

.promise__topic::before,
.promise__topic::after {
 content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-beige);
}

.promise__topic::before {
  top: -10px;
}

.promise__topic::after {
  bottom: -10px;            
}

.promise__content {
  margin: 32px 24px;
}

.promise__text {
  color: var(--primary-beige);
  font-size: 1.2rem;
  line-height: 2;
  margin-top: 50px;
  text-align: center;
}

.promise__img img {
  width: 100%;
}

@media screen and (min-width: 769px) {
    .promise__topic {
    font-size: 3.2rem;
  }

  .promise__text {
    font-size: 1.6rem;
    line-height: 3;
  }

  .section--promise {
    padding: 60px 280px 30px;
  }
}

/* 円グラフ */
.chart,
.farming {
  width: 100%;
  height: auto;
  max-width: 350px;
  margin: 32px;
}

.section__lead2 {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
}

.chart-area,
.comparison-area {
  display: flex;
  justify-content: center; 
  align-items: center;     
  flex-direction: column;
  text-align: center;
}

/* organic円グラフ・ベン図 pc */
@media screen and (min-width: 769px) {
   .section--organic-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 60px;
  }

  .chart-area,
  .comparison-area {
    justify-content: center; 
    align-items: center;
  }

  .chart,
  .farming {
    max-width: 600px; 
    margin: 0 auto;
  }

  .section__lead2 {
    font-size: 2rem;
    line-height: 1.8;
  }
}
/* organic 769px */

/* ------------------------------
  Voice
------------------------------ */
.section--voice {
  background-color: var(--primary-beige); 
  position: relative; 
  background-image: url('../images/voice_bg_wave.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* スライドと矢印の配置基準 */
.voice__wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.voice {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  transition: transform 0.5s ease;
}

.voice__item {
  flex: 0 0 100%; /* 親幅に合わせて1アイテムずつ */
  box-sizing: border-box;
  padding: 20px;
}

.voice__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
}

.voice__arrow--left {
  left: 15px;
}

.voice__arrow--right {
  right: 15px;
}

.voice__title {
  font-size: 3.0rem;
}

.voice__name {
  font-size: 1.6rem;
  line-height: 2.0;
}

.divider {
  height: 2px;
  background-color: var(--primary-brown);
  margin: 8px 0;
}

.voice__text {
  font-size: 1.3rem;
  line-height: 1.8;
}

.voice__img {
  height: 100px;
  width: auto; 
  display: block;
  margin-left: auto;
  margin-right: 0;
}

/* voice pc */
@media screen and (min-width: 769px) {
  .section--voice {
    padding: 80px 120px;
    background-image: url('../images/voice_pc_wave.png');
  }

  .voice__wrapper {
    overflow: visible;
  }

  .section__topic {
    font-size: 3.2rem;
    line-height: 1.3;
  }

  .section__lead {
    font-size: 2.0rem;
    line-height: 1.8;
  }

  /* 横並びに */
  .voice {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .voice__item {
    flex: 1;
    border-radius: 16px;
    padding: 32px;
    font-size: 1.6rem;
    text-align: left;
  }

  .voice__arrow {
    display: none;
  }

  .voice__title {
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .voice__name {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .voice__text {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
/* voice 769px */

/* ------------------------------
  FAQ
------------------------------ */
.faq {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
}

.faq__q {
  font-weight: 600;
  font-size: 1.5rem;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer
}

.faq__q img:first-child {
  margin-right: 26px;
}

.faq__q img:last-child {
  margin-left: 26px;
  width: 15px;
  height: auto;
  transition: transform 0.3s ease; /* 矢印の回転アニメーション */
}

.faq__q.is-open img:last-child {
  transform: rotate(180deg); 
}

.faq__a {
  padding: 0 20px 0 20px; 
  font-size: 1.2rem;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  margin-bottom: 20px; 
}

.faq__a img:first-child {
    margin-right: 10px;
    align-self: flex-start; 
}

.faq__a.is-open {
  padding: 20px; 
  padding-top: 0;
}

/* Q&A pc */
@media screen and (min-width: 769px) {
  .section--faq {
    padding: 80px 120px;
  }

  .faq {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq__q img:last-child {
    display: none;
  }

  .faq__q {
    justify-content: flex-start; /* 左寄せ */
    gap: 10px; /* アイコンとテキストの間隔 */
    padding: 20px;
    margin-left: 45px;
  }

  .faq__a {
    max-height: none;
    gap: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    overflow: visible;
    border-bottom: 2px solid var(--primary-brown);
    width: 90%;
    margin: 0 auto;
  }

  .faq__a img:first-child {
    margin-right: 10px;
    align-self: flex-start;
  }

  .faq__a:last-of-type {
    border-bottom: none;
  }
}
/* Q&A 769px  */

/* ------------------------------
  Footer
------------------------------ */
.footer {
  background-color:#fff;
  padding: 30px 16px;
}

.footer__top img {
  width: 65px;
  margin: 0 auto 12px;
}

.copy {
  font-size: 1.2rem;
}

@media screen and (min-width: 769px) {
  .footer {
    padding: 40px 120px;
  }

  .footer__inner {
    display: flex;
    justify-content: space-between; /* 左右に配置 */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .copy {
    text-align: right;
  }

  .footer__top img {
    width: 100px;
  }

}
