/* ==========================================================================
   Variables
   ========================================================================== */
/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #F3E9DC;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .l-section {
    padding: 60px 0;
  }
}
.l-section--bg {
  background-color: #4B6545;
  color: #fff;
  box-shadow: inset 0 10px 20px -10px rgba(0, 0, 0, 0.5), inset 0 -10px 20px -10px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Components
   ========================================================================== */
.c-heading {
  font-family: "Shippori Mincho", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #4B6545;
}
@media (max-width: 768px) {
  .c-heading {
    font-size: 2rem;
  }
}
.l-section--bg .c-heading {
  color: #fff;
}

.c-lead {
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}
@media (max-width: 768px) {
  .c-lead {
    margin-bottom: 40px;
  }
}
.l-section--bg .c-lead {
  color: #fff;
}

.c-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #4B6545;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.c-btn:hover {
  background-color: rgb(97.5, 131.3, 89.7);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.c-btn--header {
  padding: 8px 20px;
  font-size: 0.9rem;
}
.c-btn--primary {
  background-color: #4B6545;
}
.c-btn--white {
  background-color: #fff;
  color: #4B6545;
}
.c-btn--white:hover {
  background-color: #f0f0f0;
}
.c-btn--lg {
  padding: 15px 50px;
  font-size: 1.1rem;
}

.u-required {
  color: #e74c3c;
  margin-left: 4px;
}

.u-text-sm {
  font-size: 0.85rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(243, 233, 220, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.l-header__logo {
  font-family: "Shippori Mincho", serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #4B6545;
}
@media (max-width: 768px) {
  .l-header__nav {
    display: none;
    /* Simple mobile menu handling for now */
  }
}
.l-header__list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.l-header__item {
  font-weight: 500;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.p-hero__bg img {
  display: block;
  width: 100%;
  height: auto;
}
.p-hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(243, 233, 220, 0.9), rgba(243, 233, 220, 0.4));
}
.p-hero__img {
  display: block;
  width: 70%;
  height: auto;
  margin: 3em auto;
}
.p-hero__content {
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.p-hero__sub {
  font-weight: bold;
  color: #4B6545;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
.p-hero__title {
  font-family: "Shippori Mincho", serif;
  font-size: 3.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #333;
}
@media (max-width: 768px) {
  .p-hero__title {
    font-size: 2.2rem;
  }
}
.p-hero__desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #666;
}
.p-hero__stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .p-hero__stats {
    gap: 20px;
  }
}
.p-hero__stat {
  display: flex;
  flex-direction: column;
  width: 10em;
  height: 10em;
  background: #4b6545;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-hero__stat-num {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
.p-hero__stat-unit {
  font-size: 1rem;
  font-weight: bold;
}
.p-hero__stat-label {
  font-size: 0.8rem;
  color: #fff;
  margin-top: 5px;
}

/* ==========================================================================
   About
   ========================================================================== */
.p-about__content {
  max-width: 800px;
  margin: 0 auto;
  background: #f9efe2;
  padding: 60px;
  border-radius: 20px;
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .p-about__content {
    padding: 30px;
  }
}
.p-about__lead,
.p-about span {
  font-weight: bold;
  color: #4B6545;
}
.p-about__text p {
  margin-bottom: 20px;
}
.p-about__text p:last-child {
  margin-bottom: 0;
}
.p-about__message {
  font-family: "Shippori Mincho", serif;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 40px;
  color: #4B6545;
}

/* ==========================================================================
   Skills
   ========================================================================== */
.p-skills__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.p-skill-card {
  background: #F3E9DC;
  padding: 30px;
  border-radius: 10px;
}
.p-skill-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.p-skill-card__title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #4B6545;
}
.p-skill-card__percent {
  font-weight: bold;
  color: #4B6545;
}
.p-skill-card__bar {
  height: 8px;
  background: rgba(75, 101, 69, 0.2);
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}
.p-skill-card__bar span {
  display: block;
  height: 100%;
  background: #4B6545;
  border-radius: 4px;
}
.p-skill-card__desc {
  font-size: 0.9rem;
  color: #666;
}

/* ==========================================================================
   Achievements
   ========================================================================== */
.p-achievements__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.p-achievement-box {
  text-align: center;
  padding: 40px;
  border: 2px solid #4B6545;
}
.p-achievement-box__title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #4B6545;
}

/* ==========================================================================
   Works
   ========================================================================== */
.p-works__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .p-works__list {
    grid-template-columns: 1fr;
  }
}

.p-work-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.p-work-card:hover {
  transform: translateY(-5px);
}
.p-work-card__content {
  padding: 30px;
}
.p-work-card__tag {
  display: inline-block;
  background: #F3E9DC;
  color: #4B6545;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.p-work-card__title {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.p-work-card__subtitle {
  font-weight: bold;
  color: #4B6545;
  margin-bottom: 15px;
}
.p-work-card__desc {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #666;
}
.p-work-card__note {
  font-size: 0.8rem;
  color: #999;
  font-style: italic;
}
.p-work-card__meta {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-weight: bold;
  color: #4B6545;
}
.p-work-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.p-work-card__tags li {
  background: #f5f5f5;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
}
.p-work-card__stats {
  display: flex;
  gap: 20px;
  background: #F3E9DC;
  padding: 15px;
  border-radius: 8px;
}
.p-work-card__stats dl dt {
  font-size: 0.8rem;
  color: #666;
}
.p-work-card__stats dl dd {
  font-size: 1.2rem;
  font-weight: bold;
  color: #4B6545;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.p-cta {
  color: #4B6545;
  text-align: center;
  padding: 80px 20px;
}
.p-cta__title {
  font-family: "Shippori Mincho", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-cta__title {
    font-size: 1.8rem;
  }
}
.p-cta__text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.p-contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-contact__info {
    grid-template-columns: 1fr;
  }
}
.p-contact__alert {
  background: #fff4e6;
  /* Light orange/beige */
  border: 2px solid #ffcc80;
  padding: 30px;
  border-radius: 10px;
}
.p-contact__alert-title {
  color: #e67e22;
  margin-bottom: 15px;
}
.p-contact__features {
  margin-top: 20px;
}
.p-contact__features li {
  margin-bottom: 5px;
  font-weight: bold;
}
.p-contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-contact__detail-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
.p-contact__detail-box h4 {
  color: #4B6545;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}
.p-contact__detail-box ul {
  list-style: disc;
  padding-left: 20px;
}
.p-contact__form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .p-contact__form-wrapper {
    padding: 20px;
  }
}
.p-contact__note {
  text-align: center;
  margin-bottom: 30px;
  color: #4B6545;
  font-weight: bold;
}

.p-form__item {
  margin-bottom: 25px;
}
.p-form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}
.p-form__input, .p-form__textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}
.p-form__input:focus, .p-form__textarea:focus {
  outline: none;
  border-color: #4B6545;
  box-shadow: 0 0 0 3px rgba(75, 101, 69, 0.1);
}
.p-form__textarea {
  height: 200px;
  resize: vertical;
}
.p-form__submit {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.l-footer {
  background: #2a2d31;
  color: #fff;
  padding: 60px 0 20px;
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .l-footer__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.l-footer__logo {
  font-family: "Shippori Mincho", serif;
  margin-bottom: 15px;
}
.l-footer__desc {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.8;
}
.l-footer__links ul {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .l-footer__links ul {
    flex-direction: column;
    gap: 10px;
  }
}
.l-footer__links a:hover {
  text-decoration: underline;
}
.l-footer__copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */