@charset "utf-8";

#our-commitment {
  background-color: #fffeff;
  padding: 2rem;
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

article {
  background-color: white;
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-bottom: 1rem;
  color: #8a5216;
  font-weight: bold;
  font-size: 20px;
}

h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.6;
}

figure {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

figcaption {
  font-size: 0.9em;
  color: #666;
  text-align: center;
  margin-top: 0.5rem;
}


.c_ttl_bold_01 {
    font-size: 25px;
}

header.scroll #nav {
    overflow: hidden;
    clear: both;
    text-align: center;
}

.header{
  margin: 0px auto 0px;
  /*ヘッダーの幅*/
  width: 100%;
  /*ヘッダーの高さ*/
  height: 100px;
  /*ヘッダーの色*/
  background-color: #f2dde0;
}
.nav{
  font-family: "Calistoga", serif;
  font-weight: 400;
  font-style: normal;
  /*ナビゲーションの横位置*/
  justify-content: center;
  /*ナビゲーションの縦位置*/
  padding-top: 20px;
  box-sizing: border-box;
}

ul{
  /*横並び*/
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  align-items: center;
}

.rgo{
  width: 108px;
  height: 62px;
}

a{
  /*ナビゲーションの色*/
  color: rgb(139, 73, 29);
  /*ナビゲーションの間隔*/
  margin-right: 60px;
}

body {
  line-height: 1.6;
  font-family: Arial, sans-serif;
}







/* フッダー */
.footer {
  padding: 2rem;
  font-size: 15px;
  color: #4b5564;
  background-color:  #f2dde0; 
}

/* フッターのロゴ部分 */
.footer__logo {
  display: inline-block;
  margin-bottom: 2rem;
}

/* ナビゲーションメニュー */
.footer__navi {
  list-style-type: none;
  padding-left: 0;
  font-family: "Calistoga", serif;
  font-weight: 400;
  font-style: normal;
}

.footer__navi2 {
  list-style-type: none;
  padding-left: 0;
}

.footer__navi li {
  margin-bottom: 0.75rem;
}

.footer__navi a {
  color: #8a5216;
  text-decoration: none;
}

/* グリッドレイアウト */
.grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* メディアクエリ - スマートフォンサイズ */
@media (max-width: 767px) {
  .md-flex {
    flex-direction: column;
  }

  .md-justify-between {
    justify-content: center;
  }

  .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    font-size: 12px;
  }
}

/* テーブルタップデバイスサイズ */
@media (min-width: 768px) and (max-width: 1023px) {
  .md-flex {
    flex-direction: column;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 14px;
  }
}

/* デスクトップサイズ以上 */
@media (min-width: 1024px) {
  .md-flex {
    flex-direction: row;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    font-size: 15px;
  }
}

