@charset "UTF-8";

/* ========== フォント読み込み ========== */
@font-face {
  font-family: 'CustomFont';
  src: url('../fonts/nikumaru.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

/* ========== ベース設定 ========== */
body {
  margin: 0;
  font-family: 'CustomFont', sans-serif;
  background-color: #faf7f3;
}


/* ========== SNSリンク ========== */
.sns-links {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sns-icon {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.sns-icon:hover {
  transform: scale(1.2);
}

.sns-icon.youtube   { background-image: url('../img/youtube-gray.png'); }
.sns-icon.instagram { background-image: url('../img/insta_gray.png'); }
.sns-icon.line      { background-image: url('../img/line-gray.png'); }

/* ========== レスポンシブ対応 ========== */
@media screen and (max-width: 1100px) {

  .sns-links {
    display: none;
  }
}


/* ここまで */

.title{
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 20px;
  margin-bottom: 100px;
  padding-top: 190px;
}
.title_letter{
  font-size: 2em;
}
.title h1{
  color: rgb(54, 54, 54);
  font-size: 1.5em;
}
.title p{
  color: rgb(133, 108, 76);
}
.title img{
  width: 70px;
}

/* ここまで */
/* ========== お問い合わせセクション ========== */
.contact {
  background-color: white;
  padding: 50px 20px;
  border-radius: 30px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 100px;
  font-size: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 5px;
  color: rgb(54, 54, 54);
}
.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: sans-serif;
  font-size: 16px;
}
.form-group textarea {
  resize: vertical;
}
.form-group button {
  align-self: center;
  padding: 10px 30px;
  background-color: rgb(167, 124, 68);
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.form-group button:hover {
  background-color: rgb(143, 105, 56);
}

/* ========== レスポンシブ対応 ========== */
@media screen and (max-width: 1100px) {
  main {
    padding: 0 20px;
  }
}

@media screen and (max-width: 600px) {
  .title_letter {
    font-size: 1.5em;
  }
  .title {
    margin-bottom: 50px;
    padding-top: 190px;
  }
  .title h1 {
    font-size: 1.3em;
  }
  .title img {
    width: 45px;
  }
  .contact {
    font-size: 15px;
  }
}

@media screen and (max-width: 420px) {
  .contact h2 {
    font-size: 1.2em;
  }
}