@charset "Shift_JIS";
/* 共通スタイル */
body{
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #f9f6f1;
  color: #3e5b45;
  line-height: 1.8;
  font-size: 16px;
}
main{
  margin: 0px;
  padding: 0px;
}
h1, h2{
  font-weight: bold;
  margin-bottom: 1em;
}

h2{
  color: #6b4f3b;
  font-size: 1.4rem;
}
h3{
  color: #6b4f3b;
  font-size: 1.2rem;
}
.h3z{
	font-size: 120%;
	position: relative;
	padding-left: 23px;/*アイコン分のスペース*/
	font-weight: bold;
	color: #3e5b45;
}
.h3z::before{
  content: "■";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
	line-height: 1.4rem;
  left: 0;/*アイコンの位置*/
  top: 0;/*アイコンの位置*/
}
p, li{
  margin-bottom: 1em;
}

ul{
  padding-left: 1.2em;
}
.a1{
    text-decoration:underline;
    text-decoration-color: #3e5b45;
    color: #3e5b45;
  }
img.responsive{
  width: 100%;
  height: auto; /* 縦横比を維持 */
  display: block;
  margin: 0 auto; /* 中央寄せ */
}

/* PC（768px以上の画面幅）の場合 */
@media (min-width: 768px) {
  img.responsive{
    width: 60%;
  }
}
/* ヒーローセクション */
.hero{
  height: 65vh;
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center;     /* 縦中央 */
  position: relative;
  background-image: url('image/top.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
}
.hero-overlay{
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px 15px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}

.hero-inner h1{
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
.hero-inner p{
  font-size: 16px;
  margin-bottom:-20px;
}
@media (min-width: 768px) {
  .hero{
  background-image: url('image/S__297615400.jpg');
    height: 45vh;
    min-height: 100px;
  }
}
/* 表紙ふわっ */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* 各セクション */
.section{
  padding: 40px 20px;
  background-color: #fff;
  margin-bottom: 10px;
}
.info-section{
  padding: 40px 20px;
  background-color: #f8f5f0;
}

.info-section h2{
  font-size: 1.4rem;
  color: #6b4f3b;
  margin-bottom: 24px;
  text-align: center;
}

.info-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-row{
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
}

.info-row dt{
  font-weight: bold;
  color: #3e5b45;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.info-row dd{
  margin: 0 0 0 10px;
  font-size: 16px;
  line-height: 1.5;
}
/* ボタン */
.btn{
  display: inline-block;
  background-color: #3e5b45;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
}
.staff-section{
  padding: 40px 20px;
  background-color: #fff;
}
/* スタッフ紹介 */
.staff-section h2{
  font-size: 1.4rem;
  color: #6b4f3b;
  margin-bottom: 20px;
}
.staff-section{
  padding: 40px 20px;
  background-color: #fff;
}

.staff-section h2{
  font-size: 1.4rem;
  color: #6b4f3b;
  margin-bottom: 24px;
  text-align: center;
}

/* グリッド：スマホでは1列、PCでは2列 */
.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .staff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* スタッフカード */
.staff-card{
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  background-color: #fdfdf9;
}

/* 上段（スマホ用：縦、PC用：横） */
.staff-top{
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  text-align: center; /* スマホ時のテキスト中央寄せ（任意） */
}

@media (min-width: 768px) {
  .staff-top{
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
}

/* 写真 */
.staff-photo{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px auto; /* スマホ時：中央寄せ */
  border: 2px solid #6b4f3b;
}

@media (min-width: 768px) {
  .staff-photo{
    margin: 0;
    margin-right: 16px;
  }
}
/* テキスト部分 */
.staff-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.staff-name{
  font-weight: bold;
  font-size: 1.1rem;
  color: #3e5b45;
  margin-bottom: 4px;
}

.staff-role{
  font-size: 0.9rem;
  color: #666;
}

/* コメント */
.staff-comment{
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  background-color: #f3efe6;
  padding: 15px;
  border-radius: 10px;
}
/* フッター */
.footer{
  text-align: center;
  background-color: #3e5b45;
  color: #fff;
  padding: 20px;
  font-size: 0.9rem;
}