@charset "UTF-8";

body {
  color: #131414;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  background: #fafafa;
}

.header {
  background: #000000;
  color: #fafafa;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  display: block !important;
}

.header-logo {
  font-size: 24px;
  font-weight: bold;
  color: #fafafa;
  letter-spacing: 0.1em;
  height: 72px;
  /* 下記のflexはクリックされる箇所を限定的にするために記述している */
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.header-logo_link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo_link__accent-color {
  color: #53c451;
}

.header-nav {
  padding: 0 16px;
}

.header-nav_list {
  height: 72px;
  display: flex;
  overflow: scroll;
  scrollbar-width: none;
}

.header-nav_list::-webkit-scrollbar {
  display: none;
}

.header-nav_item {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.header-nav_item:not(:first-child) {
  margin-left: 40px;
}

.header-nav_link {
  height: 100%;
  display: flex;
  align-items: center;
  color: #ffffff; /* 通常時の文字色 */
    text-decoration: none; /* 下線を消す */
    padding: 8px 12px; /* クリックしやすいように余白をつける */
    transition: color 0.3s ease, background-color 0.3s ease; /* なめらかに変化 */
}

.header-nav_link:hover {
  color: #53c451; /* ホバー時の文字色 */
  background-color: rgba(0, 123, 255, 0.1); /* 背景をうっすら青く */
  border-radius: 5px; /* 角を少し丸く */
  transform: scale(1.1);
}

/* .sns-links {
  padding: 2rem 1rem;
}

.sns-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
} */

/* .sns-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sns-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2);  グリーン系シャドウ 
} */

/*. sns-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  padding: 1rem;
}

.sns-card img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.sns-card span {
  font-size: 1.1rem;
  font-weight: bold;
} */

/* メディアクエリ：大きい画面用 */
@media (min-width: 600px) {
  .sns-links ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .sns-links ul {
    grid-template-columns: repeat(4, 1fr);
  }
}

.section{
  padding: 40px 0;
  }
  
  .section-title{
      font-size: 24px;
      font-weight: bold;
      text-align: center;
  }

.contact{
  background:url("../img/inquiry.jpg")center/cover;
}

.contact .section-title{
  color: #ffffff;
}

.contact-desc{
  color: #ffffff;
  margin-top: 40px;
}

.contact-btn-wrapper{
  margin-top: 40px;
  text-align: center;
}

footer{
  text-align: center;
  padding: 16px;
  background-color :#111111;
}

.footer-copyright{
  color:#fff;
  font-size: 12px;
}

.btn{
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  background-color: #000000;
  padding: 16px 24px; 
}

.btn:hover {
  background-color: #53c451; /* ホバー時の背景色（緑） */
  transform: scale(1.05); /* 少し拡大 */
}