@charset "UTF-8";

/* ==============================
   変数設定
============================== */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #F8F8F5;
  color: #000000;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==============================
   ヘッダー
============================== */
/*ヘッダー*/
section h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 10%;
}

/* ==============================
   フッター
============================== */
/*フッター*/
.site-footer {
  text-align: center;
  font-size: 1rem;
  padding: 1rem;
  background-color: #F8F8F5;
  border-top: 1px;
}

/* ==============================
   トップページ
============================== */
/*main*/
.main-visual {
  position: relative;
}

.img {
  width: auto;
  height: 800px;
  display: block;
}

.main-title {
  position: absolute;
  top: 300px;
  left: 100px;
  bottom: 1rem;
  left: 1rem;
  font-size: 3rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .main-title {
    font-size: 1rem;
    top: 150px;
    left: 20px;
  }
}
/*About*/
.about-section {
  text-align: center;
  margin-top: 40px;
}
.about-section .about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 20px 10%;
}
.about-section .about-content img {
  width: 186px;
  height: 279px;
  border-radius: 25%;
}
@media (max-width: 768px) {
  .about-section .about-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
  }
  .about-section .about-content img {
    width: 60vw;
    height: auto;
    max-width: 320px;
    margin: 0 auto;
  }
}

/*works*/
.works-section {
  text-align: center;
  margin-top: 40px;
}
.works-section .works-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  margin: 20px 10% 20px 10%;
}
.works-section .work-item img {
  border-radius: 10px;
  box-shadow: 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .works-section .works-item img {
    flex: 1 1 100%;
  }
}
.works-section .view-more {
  margin-top: 30px;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid #000000;
  border-radius: 20px;
  background-color: transparent;
  transition: 0.3s;
}
.works-section .view-more:hover {
  background-color: #A6BFA0;
  color: #fff;
}

/*contact*/
.contact-section {
  text-align: center;
  margin-top: 120px;
}
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 10%;
}
.contact-section form input,
.contact-section form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-section form input[type=submit] {
  width: auto;
  background-color: transparent;
  border: 1px solid #000000;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.contact-section form input[type=submit]:hover {
  background-color: #A6BFA0;
  color: #fff;
}
@media (max-width: 768px) {
  .contact-section .works-list {
    margin: 20px 16px;
    gap: 12px;
  }
  .contact-section .work-item {
    flex: 0 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

/* ==============================
   Works 実績ページ
============================== */
.works-page {
  background-color: #F8F8F5;
  /* スマホ対応 */
}
.works-page .works-main {
  position: relative;
  text-align: center;
}
.works-page .works-main img {
  width: 100%;
  height: auto;
  display: block;
}
.works-page .works-main .works-title {
  position: absolute;
  bottom: 1rem;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.7);
}
.works-page .works-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 10%;
}
.works-page .works-list .work-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.works-page .works-list .work-item .work-image {
  flex: 0 0 45%;
}
.works-page .works-list .work-item .work-image img {
  width: 100%;
  height: auto;
  max-width: 480px;
  border-radius: 8px;
  border: 1px solid #ddd;
  object-fit: cover;
}
.works-page .works-list .work-item .work-info {
  flex: 1;
  padding: 1.5rem;
  border: 1px dashed #A6BFA0;
  border-radius: 8px;
  background: #fff;
}
.works-page .works-list .work-item .work-info h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.works-page .works-list .work-item .work-info .work-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #000000;
}
.works-page .pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}
.works-page .pagination a,
.works-page .pagination span {
  padding: 0.6rem 1rem;
  border: 1px solid #000000;
  border-radius: 4px;
  font-size: 0.95rem;
}
.works-page .pagination .current {
  background-color: #A6BFA0;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 768px) {
  .works-page .works-list {
    gap: 2rem;
  }
  .works-page .works-list .work-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .works-page .works-list .work-item .work-image {
    width: 100%;
    max-width: 100%;
  }
  .works-page .works-list .work-item .work-info {
    width: 100%;
    padding: 1rem;
    text-align: left;
  }
}

/* ==============================
   ハンバーガーメニュー
============================== */
/* 色は必要に応じて変更 */
:root {
  --accent: #A6BFA0;
  --bg: #F8F8F5;
}

/* ボタン */
.hamburger-menu {
  display: block;
  position: fixed;
  width: 56px;
  height: 56px;
  background-color: var(--accent);
  position: fixed;
  top: 0;
  right: 16px;
  margin: 0;
  border: 0;
  padding: 0;
  border-radius: 8px;
  z-index: 20001;
  cursor: pointer;
  transition: opacity 0.3s;
}

.hamburger-menu:hover {
  opacity: 0.8;
}

.hamburger-menu span {
  width: 32px;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 12px;
  transition: 0.35s ease;
  border-radius: 2px;
}

.hamburger-menu span:nth-child(1) {
  top: 16px;
}

.hamburger-menu span:nth-child(2) {
  top: 26px;
}

.hamburger-menu span:nth-child(3) {
  top: 36px;
}

/* 三→× アニメーション */
.hamburger-menu.active span:nth-child(1) {
  top: 26px;
  transform: rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  top: 26px;
  transform: rotate(-45deg);
}

/* active時の色を黒にして背景と同化しないように */
.hamburger-menu.active span {
  background: #000;
}

/* ==============================
   オーバーレイメニュー
============================== */
#hamburger-navigation {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 19000;
}

#hamburger-navigation.active {
  opacity: 1;
  visibility: visible;
}

#hamburger-navigation img {
  width: 150px;
  position: absolute;
  top: 20px;
  left: 20px;
}

#hamburger-navigation .sections {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

#hamburger-navigation .sections li {
  margin: 24px 0;
}

#hamburger-navigation .sections a {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  text-decoration: none;
}

.no-scroll {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20000;
  background: #F8F8F5;
}/*# sourceMappingURL=style.css.map */