@charset "UTF-8";
/* ========================================
   Main SCSS File
   ======================================== */
/* ========================================
   Foundation Index - 基礎ファイルのインポート
   ======================================== */
/* ========================================
   Variables - デザイントークン
   ======================================== */
/* ========================================
   Mixins - 再利用可能なスタイルパターン
   ======================================== */
/* ========================================
   Reset CSS - ブラウザのデフォルトスタイルをリセット
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #4A2108;
  background-color: #F9F6F3;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

/* ========================================
   Base Styles - 基本的なスタイル
   ======================================== */
body {
  font-size: 16px;
  font-weight: 400;
  color: #4A2108;
  background-color: #F9F6F3;
  line-height: 1.6;
}

h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 32px;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  font-weight: 700;
}

p {
  font-size: 16px;
  color: #4A2108;
}

a {
  color: #4A2108;
  transition: all 300ms ease-in-out;
}

a:hover {
  color: #6B4423;
}

button {
  font-size: 16px;
  font-weight: 500;
  transition: all 300ms ease-in-out;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}
.text-center {
  text-align: center;
}

.text-muted {
  color: #8B6F5F;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.p-1 {
  padding: 8px;
}

.p-2 {
  padding: 16px;
}

.p-3 {
  padding: 24px;
}

.p-4 {
  padding: 32px;
}

/* ========================================
   Layout Index - レイアウトファイルのインポート
   ======================================== */
/* ========================================
   Header Layout
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(249, 246, 243, 0.95);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid #E8DFD5;
}

.header__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

@media (min-width: 768px) {
  .header__container {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .header__container {
    padding: 0 32px;
  }
}
.header__logo {
  font-size: 32px;
  font-weight: 700;
  color: #4A2108;
}

.header__nav {
  display: flex;
  gap: 24px;
}

.header__nav-link {
  font-size: 16px;
  color: #4A2108;
  transition: color 300ms ease-in-out;
  position: relative;
  text-decoration: none;
}

.header__nav-link:hover {
  color: #4A2108;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: #4A2108;
  border-radius: 999px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.header__nav-link:hover::after {
  transform: scale(1, 1);
}

@media (min-width: 768px) {
  .header__container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .header__nav {
    gap: 32px;
  }
}
/* ========================================
   Project Index - プロジェクトファイルのインポート
   ======================================== */
/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #F9F6F3;
}

.hero__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__container {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .hero__container {
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
  }
}
.hero__content {
  order: 2;
}

@media (min-width: 1024px) {
  .hero__content {
    order: 1;
  }
}
/* ========================================
   Slide-in Animation
   ======================================== */
.hero__content {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero__content.-visible {
  opacity: 1;
  transform: translateX(0);
}

.hero__image {
  margin-top: 0;
  order: 1;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero__image {
    order: 2;
  }
}
.hero__scroll {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 300ms ease-in-out;
  background: none;
  border: none;
  padding: 16px;
}

.scroll-bar:hover {
  opacity: 0.7;
}

.scroll-bar__text {
  font-size: 14px;
  color: #8B6F5F;
}

.scroll-bar__arrow {
  width: 24px;
  height: 24px;
  color: #6B4423;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
/* ========================================
   Works Section
   ======================================== */
.works {
  padding: 64px 16px;
  background-color: #FFFFFF;
}

@media (min-width: 768px) {
  .works {
    padding: 64px 24px;
  }
}
@media (min-width: 1024px) {
  .works {
    padding: 64px 32px;
  }
}
.works__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .works__container {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .works__container {
    padding: 0 32px;
  }
}
.works__title {
  font-size: 48px;
  font-weight: 700;
  color: #4A2108;
  margin-bottom: 8px;
}

.works__subtitle {
  font-size: 16px;
  color: #8B6F5F;
  margin-bottom: 64px;
}

.works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.works__item {
  background-color: #F9F6F3;
  padding: 24px;
  border-radius: 12px;
  transition: box-shadow 300ms ease-in-out;
  cursor: pointer;
}

.works__item:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.works__item-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 16px;
}

.works__item-title {
  font-size: 24px;
  font-weight: 700;
  color: #4A2108;
  margin-bottom: 8px;
}

.works__item-category {
  font-size: 14px;
  color: #8B6F5F;
}

.works__button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.works__button {
  border: 2px solid transparent;
  background-color: #4A2108;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s cubic-bezier(0.37, 0, 0.63, 1), color 0.3s cubic-bezier(0.37, 0, 0.63, 1), letter-spacing 0.5s cubic-bezier(0.37, 0, 0.63, 1);
}

.works__button:hover {
  border-color: #6B4423;
  background-color: #F9F6F3;
  color: #4A2108;
  letter-spacing: 0.2em;
}

/* ========================================
   Modal
   ======================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.modal--active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.modal__content {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .modal__content {
    padding: 48px;
  }
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #4A2108;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal__close:hover {
  color: #8B6F5F;
}

.modal__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .modal__body {
    flex-direction: row;
    gap: 48px;
  }
}
.modal__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 768px) {
  .modal__image {
    width: 50%;
    flex-shrink: 0;
  }
}
.modal__text {
  flex: 1;
}

.modal__title {
  font-size: 32px;
  font-weight: 700;
  color: #4A2108;
  margin-bottom: 16px;
}

.modal__category {
  font-size: 14px;
  color: #8B6F5F;
  margin-bottom: 16px;
}

.modal__description {
  font-size: 16px;
  color: #4A2108;
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal__tag {
  display: inline-block;
  background-color: #F9F6F3;
  color: #4A2108;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
}

/* ========================================
   About Section
   ======================================== */
.about {
  padding: 64px 16px;
  background-color: #F9F6F3;
}

@media (min-width: 768px) {
  .about {
    padding: 64px 24px;
  }
}
@media (min-width: 1024px) {
  .about {
    padding: 64px 32px;
  }
}
.about__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .about__container {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .about__container {
    padding: 0 32px;
  }
}
.about__title {
  font-size: 48px;
  font-weight: 700;
  color: #4A2108;
  margin-bottom: 8px;
}

.about__subtitle {
  font-size: 16px;
  color: #8B6F5F;
  margin-bottom: 64px;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about__content {
    grid-template-columns: 1fr 1fr;
  }
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__name {
  font-size: 32px;
  font-weight: 700;
  color: #4A2108;
}

.about__description {
  font-size: 16px;
  color: #4A2108;
  line-height: 1.8;
}

.about__image {
  display: flex;
  justify-content: center;
}

.about__image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #E8DFD5, #D4C4B0);
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  color: #8B6F5F;
  overflow: hidden;
}

.about__image-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.about__button-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 16px;
}

.about__button {
  border: 2px solid transparent;
  background-color: #4A2108;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s cubic-bezier(0.37, 0, 0.63, 1), color 0.3s cubic-bezier(0.37, 0, 0.63, 1), letter-spacing 0.5s cubic-bezier(0.37, 0, 0.63, 1);
}

.about__button:hover {
  border-color: #6B4423;
  background-color: #F9F6F3;
  color: #4A2108;
  letter-spacing: 0.2em;
}

/* ========================================
   About Page
   ======================================== */
.about-page {
  padding: 120px 16px 64px;
  background-color: #F9F6F3;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .about-page {
    padding: 120px 24px 64px;
  }
}
@media (min-width: 1024px) {
  .about-page {
    padding: 120px 32px 64px;
  }
}
.about-page__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .about-page__container {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .about-page__container {
    padding: 0 32px;
  }
}
.about-page__title {
  font-size: 56px;
  font-weight: 700;
  color: #4A2108;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .about-page__title {
    font-size: 64px;
  }
}
.about-page__subtitle {
  font-size: 18px;
  color: #8B6F5F;
  margin-bottom: 64px;
}

.about-page__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

@media (min-width: 1024px) {
  .about-page__content {
    grid-template-columns: 1fr 1fr;
  }
}
.about-page__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-page__name {
  font-size: 40px;
  font-weight: 700;
  color: #4A2108;
}

.about-page__furigana {
  font-size: 18px;
  color: #8B6F5F;
  margin-top: -12px;
  margin-bottom: 32px;
}

.about-page__description {
  font-size: 16px;
  color: #4A2108;
  line-height: 1.8;
}

.about-page__section-title {
  font-size: 24px;
  font-weight: 700;
  color: #4A2108;
  margin-top: 32px;
  margin-bottom: 16px;
}

.about-page__skills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-page__skills li {
  background-color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid #E8DFD5;
  color: #4A2108;
  font-size: 14px;
}

.about-page__timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-page__timeline-item {
  display: flex;
  gap: 24px;
  padding-left: 24px;
  border-left: 2px solid #4A2108;
}

.about-page__timeline-date {
  font-weight: 700;
  color: #4A2108;
  min-width: 80px;
}

.about-page__timeline-text {
  color: #4A2108;
  line-height: 1.6;
}

.about-page__image {
  display: flex;
  justify-content: center;
}

.about-page__image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #E8DFD5, #D4C4B0);
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  color: #8B6F5F;
}

.about-page__image-placeholder p {
  color: #8B6F5F;
  font-size: 14px;
}

.about-page__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
}

.about-page__cta-button {
  background-color: #4A2108;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 300ms ease-in-out;
  display: inline-block;
}

.about-page__cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #3A1A05;
  z-index: -1;
  transition: width 300ms ease-in-out;
}

.about-page__cta-button:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

/* ========================================
   Works Page
   ======================================== */
.works-page {
  padding: 120px 16px 64px;
  background-color: #F9F6F3;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .works-page {
    padding: 120px 24px 64px;
  }
}
@media (min-width: 1024px) {
  .works-page {
    padding: 120px 32px 64px;
  }
}
.works-page__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .works-page__container {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .works-page__container {
    padding: 0 32px;
  }
}
.works-page__title {
  font-size: 56px;
  font-weight: 700;
  color: #4A2108;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .works-page__title {
    font-size: 64px;
  }
}
.works-page__subtitle {
  font-size: 18px;
  color: #8B6F5F;
  margin-bottom: 64px;
}

.works-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .works-page__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
.works-page__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  padding: 48px;
  background-color: #FFFFFF;
  border-radius: 12px;
  transition: box-shadow 300ms ease-in-out;
}

@media (min-width: 768px) {
  .works-page__item {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 32px;
  }
}
.works-page__item:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.works-page__item-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.works-page__item-image-placeholder {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  aspect-ratio: auto;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  color: #8B6F5F;
}

.works-page__item-image-placeholder img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: inherit;
}

.works-page__item-image-placeholder p {
  color: #8B6F5F;
  font-size: 14px;
}

.works-page__item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.works-page__item-title {
  font-size: 24px;
  font-weight: 700;
  color: #4A2108;
}

.works-page__item-category {
  font-size: 14px;
  color: #8B6F5F;
}

.works-page__item-description {
  font-size: 16px;
  color: #4A2108;
  line-height: 1.8;
}

.works-page__item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
}

.works-page__item-tag {
  display: inline-block;
  background-color: #F9F6F3;
  padding: 4px 8px;
  border-radius: 9999px;
  border: 1px solid #E8DFD5;
  color: #4A2108;
  font-size: 14px;
}

.works-page__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
}

.works-page__cta-button {
  background-color: #4A2108;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 300ms ease-in-out;
  display: inline-block;
}

.works-page__cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: #3A1A05;
  z-index: -1;
  transition: width 300ms ease-in-out;
}

.works-page__cta-button:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
  padding: 64px 16px;
  background-color: #4A2108;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .contact {
    padding: 64px 24px;
  }
}
@media (min-width: 1024px) {
  .contact {
    padding: 64px 32px;
  }
}
.contact__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .contact__container {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .contact__container {
    padding: 0 32px;
  }
}
.contact__greeting {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.contact__title {
  font-size: 56px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .contact__title {
    font-size: 56px;
  }
}
.contact__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.contact__button {
  border: 2px solid transparent;
  background-color: #FFFFFF;
  color: #4A2108;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s cubic-bezier(0.37, 0, 0.63, 1), color 0.3s cubic-bezier(0.37, 0, 0.63, 1), letter-spacing 0.5s cubic-bezier(0.37, 0, 0.63, 1);
}

.contact__button:hover {
  border-color: #F9F6F3;
  background-color: #4A2108;
  color: #FFFFFF;
  letter-spacing: 0.15em;
}

.contact__footer {
  border-top: 1px solid rgba(249, 246, 243, 0.3);
  padding-top: 24px;
}

.contact__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
} 

/*# sourceMappingURL=style.css.map */
