@charset "utf-8";

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

html {
  font-size: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  background-color: #faf9f7;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  max-width: 100%;
}

/* header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}

.header-box {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 0.6rem;
}

.header-logo {
  font-weight: normal;
}

.header-box a {
  color: #fff;
  background-color: #b09e8d;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* main */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(image/hero-image.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
}

h2 {
  font-size: 3.5rem;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.hero-text p {
  color: #4a4a4a;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-text a {
  background-color: #b09e8d;
  color: #fff;
  padding: 16px 40px;
  border-radius: 40px;
}

.content {
  padding: 100px 20px;
  text-align: center;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

h3 {
  font-size: 1.7rem;
  margin-bottom: 60px;
  color: #b09e8d;
}

.items ul {
  display: flex;
  gap: 45px;
}

.item {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.item-image,
.item-text {
  width: 100%;
}

.item-image img {
  object-fit: cover;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

h4 {
  font-size: 1.2rem;
  margin-top: 20px;
}

.item-text p {
  margin-top: 20px;
}

#contact {
  text-align: center;
  background-color: #e8e2d9;
  padding: 80px 20px;
}

h5 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

#contact p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

#contact a {
  background-color: #b09e8d;
  color: #fff;
  font-weight: bold;
  padding: 20px 60px;
  border-radius: 30px;
  font-size: 1.1rem;
}

/* footer */
footer {
  padding: 30px;
  font-size: 0.75rem;
  text-align: center;
  color: #777;
}

/* フェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.scroll-in {
  opacity: 1;
  transform: translateY(0);
}

@media  (max-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
  .items ul {
    flex-direction: column;
  }
}