
/* 基本設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  background-color: #faf9f7;
  color: #535353;
  line-height: 1.8;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  
}

.page-wrapper {
  max-width: 750px;
  margin: 0 auto;
  background-color: #ffffff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

/* ヘッダー */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5d5d0;
}

.header-container {
  max-width: 750px;
  margin: 0 auto;
  padding: 30px 50px;
}

.header-logo {
  margin: 0;
}

.header-logo a {
  display: inline-block;
  text-decoration: none;
}

.header-logo img {
  height: 15px;
  width: auto;
  display: block;
}

/* ボタン設定 */
 .btn {
    margin: 10px auto;
  display: block;
  width: 80%;
  }
a:hover {
  position: relative;
  top: 2px;
  left: 2px;
}
/* メインコンテンツ */
.main {
  margin: 0 auto;
  padding: 0 0 80px;
}
 
/* タイトル */
.page-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 40px;
  color: #3e3e3e;
  text-align: center;
  padding: 80px 50px;
  margin: 0;
  font-weight: 400;
  background-color: #ffffff;
}

/* コンテンツラッパー */
.content-wrapper {
  background-color: #ffffff;
  padding: 0 50px;
}

/* 情報行 */
.info-row {
  display: flex;
  border-bottom: 1px solid #e5d5d0;
  min-height: 80px;
  background-color: #ffffff;
}

.info-row:last-child {
  border-bottom: none;
}

/* ラベル */
.info-label {
  width: 35%;
  padding: 30px 20px;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #bd6c64;
  background-color: #ffffff;
}

/* コンテンツ */
.info-content {
  width: 65%;
  padding: 30px 20px;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #535353;
  line-height: 1.5;
  background-color: #ffffff;
}

/* コンテンツ内の小さいテキスト（詳細情報） */
.info-content .detail {
  font-size: 20px;
  display: block;
  margin-top: 5px;
}

/* フッター */
/* フッター */
.footer {
  background-color: #b67c74;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
}

.footer-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 50px;
}

.footer-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-title a {
  color: #ffffff;
  text-decoration: none;
}

.footer-title a:hover {
  text-decoration: underline;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin: 0 auto 10px;
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.9;
}


/* タブレット対応 (768px以下) */
@media screen and (max-width: 768px) {

  .header-container {
    padding: 20px 30px;
  }
  
  .header-logo img {
    height: 10px;
  }
  .page-title {
    font-size: 28px;
    padding: 50px 30px;
  }

  .content-wrapper {
    padding: 0 30px;
  }

  .info-label {
    font-size: 18px;
    padding: 20px 15px;
  }

  .info-content {
    font-size: 18px;
    padding: 20px 15px;
  }

  .info-content .detail {
    font-size: 16px;
  }

  .info-row {
    min-height: 60px;
  }

 .footer-content {
    padding: 0 30px;
  }
  
  .footer-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .footer-divider {
    margin-bottom: 10px;
  }
  
  .footer-copyright {
    font-size: 12px;
  }
}
/* スマホ対応 (480px以下) */
@media screen and (max-width: 480px) {
  
  .header-container {
    padding: 15px 20px;
  }
  
  .header-logo img {
    height: 10px;
  }

  .page-title {
    font-size: 20px;
    padding: 40px 20px;
  }

  .content-wrapper {
    padding: 0 20px;
  }

  .info-label {
    width: 35%;
    font-size: 12px;
    padding: 15px 10px;
    line-height: 1.6;
  }

  .info-content {
    width: 65%;
    font-size: 12px;
    padding: 15px 10px;
    line-height: 1.6;
  }

  .info-content .detail {
    font-size: 10px;
  }

  .info-row {
    min-height: 50px;
  }

   .footer {
    padding: 15px 0;
  }

  .footer-content {
    padding: 0 20px;
  }

  .footer-title {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .footer-divider {
    margin-bottom: 5px;
  }

  .footer-copyright {
    font-size: 10px;
  }
}