@charset "UTF-8";
/* ----------
共通部分 
-------------*/
body{
  font-family: "Poppins", "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: .05em;
  color: #1a1a1a;
}

a{
  text-decoration: none;
  color: #1a1a1a;
}
a:hover{
  color: #9B6E56;
}

img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}




/* 画面全体のレイアウト */
.hero-section {
    width: 100%;
    min-height: 100vh;      /* 最低でも画面の高さ分。中身が長ければ伸びる */
    display: flex;
    justify-content: center;
    align-items: center;     /* 中身が短いときは上下中央、長いときは自動調整 */
    padding: 40px 0;         /* 上下がキツキツにならないように余白を追加 */
    background-color: #fdfdfd;
}

/* 画像と文字を囲む箱 */
.main-visual {
    display: flex;
    flex-direction: column;  /* 上から下に並べる（文字、画像の順） */
    align-items: center;     /* 中身を左右中央に揃える */
    text-align: center;
    max-width: 90%;          /* 画面幅いっぱいに広がりすぎないように */
}

/* 画像（GIF）のサイズ調整 */
.main-visual img {
    width: 100%;             /* 親要素の幅に合わせる */
    max-width: 800px;        /* 大きくなりすぎないように制限 */
    height: auto;
    border-radius: 8px;      /* 角を少し丸くすると柔らかい印象になります */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* 軽い影をつけて立体感を出す */
}



.text-section {
  padding: 80px 20px;
  background-color: #f9f9f9; /* 背景を少しだけ変えてセクションを分ける */
  text-align: center;
}


.text-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.text-card {
  flex: 1;
  background: #f2f5e5;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03); /* 控えめな影 */
  transition: transform 0.3s ease;
}

.text-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #424040;
}

/* サイトに移動するボタン */
.view-site-container {
  margin: 80px 0; 
  text-align: center;
}
.btn-view-site{
  display: inline-block;
    padding: 20px 60px; 
     border: 1.5px solid #a67c52;
     color: #9B6E56;
     text-decoration: none;
     font-size: 1.2rem; 
     font-weight: 500;
     letter-spacing: 0.15em;
    position: relative;
  background: transparent;
  z-index: 1;
  transition: 0.3s; 
}
.btn-view-site:hover {
  color: #fff;
  background-color: #9B6E56;

}

/* スマホ用のレスポンシブ対応を追加 */
@media (max-width: 768px) {
  .text-container {
    flex-direction: column; /* スマホでは縦並びにする */
    gap: 20px;              /* カードとカードの間の縦の隙間 */
  }
}