/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  color: #221814;
  line-height: 1.8;
  background: #fff;
}

a {
  color: #221814;
  text-decoration: none;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.site-header {
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 150px;
  height: auto;
}

.header-contact {
  border-bottom: 1px solid #221814;
  padding-bottom: 2px;
  font-size: 14px;
}

/* Hero */
.hero {
  height: 400px;              /* Heroの高さを指定 */
  background-size: cover;     /* 画面いっぱいに広げる */
  background-position: center; /* 中心を基準に配置 */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;        /* 縦中央揃え */
  justify-content: center;    /* 横中央揃え */
  color: white;               /* テキスト色 */
  text-align: center;
  padding: 50px 0px 0px;
  background-image: url(../img/DSC_0479.JPG)
}

.hero h1 {
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 80px 0;
}

.alt-bg {
  background: #f7f5f1;
}

.section h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 50px;
}

/* Cards */
.card {
  border: 1px solid #221814;
  padding: 30px;
  margin-bottom: 30px;
  transition: 0.3s ease;
}

.card:hover {
  background: #f3f1ec;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  margin-bottom: 15px;
}

.card a {
  border-bottom: 1px solid #221814;
  padding-bottom: 3px;
  font-size: 14px;
}

/* CTA */
.cta {
  background: #ece9e2;
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 15px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid #221814;
  transition: 0.3s ease;
  font-size: 14px;
}

.btn:hover {
  background: #221814;
  color: #fff;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e5e5;
  padding: 30px 0;
  text-align: center;
  font-size: 12px;
}

/* Responsive */
@media (min-width: 768px) {

  .card {
    padding: 40px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .site-header {
    padding: 20px 0;
  }

}
