@charset "UTF-8";
/* ============================================
   Tradition Home — TOP (SP)
============================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #332d1d;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.section-heading {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #111111;
  margin: 0 0 24px;
}
@media (min-width: 900px) {
  .section-heading {
    font-size: 32px;
    margin: 0 0 40px;
  }
}
.section-heading--underline {
  position: relative;
  padding-bottom: 16px;
}
.section-heading--underline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 175px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.eyebrow {
  font-weight: 700;
  font-size: 24px;
  color: #332d1d;
  margin: 0 0 4px;
}
@media (min-width: 900px) {
  .eyebrow {
    font-size: 48px;
    margin: 0 0 8px;
  }
}
.eyebrow--light {
  color: #ffffff;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Hubballi", cursive;
  font-size: 14px;
  color: #ffffff;
  background: #02542d;
  border-radius: 999px;
  padding: 8px 26px;
}
.pill-label--link {
  display: block;
  width: max-content;
  margin: 48px auto;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Hubballi", cursive;
  font-size: 14px;
  color: #ffffff;
  background: #02542d;
  border-radius: 999px;
  padding: 10px 30px;
  margin-top: 20px;
}
@media (min-width: 900px) {
  .btn-more {
    font-size: 18px;
    padding: 14px 40px;
  }
}

/* Utility: forces a line break on SP only */
@media (min-width: 900px) {
  .u-break-sp {
    display: none;
  }
}

/* ============================================
   Header
============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
@media (min-width: 900px) {
  .site-header__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 0;
  }
}
.site-header__logo img {
  width: 49px;
  height: auto;
}
@media (min-width: 900px) {
  .site-header__logo img {
    width: 92px;
  }
}
.site-header__nav {
  display: none;
}
@media (min-width: 900px) {
  .site-header__nav {
    display: block;
  }
  .site-header__nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .site-header__nav a {
    font-size: 14px;
    color: #111111;
  }
}
.site-header__menu {
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.site-header__menu span {
  display: block;
  height: 2px;
  width: 100%;
  background: #332d1d;
}
@media (min-width: 900px) {
  .site-header__menu {
    display: none;
  }
}

/* ============================================
   Global navigation
============================================ */
.global-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, background-color 0.35s ease, visibility 0s linear 0.35s;
}
.global-nav-overlay.is-open {
  background: rgba(0, 0, 0, 0.25);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, background-color 0.35s ease, visibility 0s linear 0s;
}
@media (min-width: 900px) {
  .global-nav-overlay {
    display: none;
  }
}

.global-nav {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 146px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  padding: 20px 16px 24px;
  z-index: 1000;
  transform: translateX(200%);
  transition: transform 0.35s ease;
}
.global-nav.is-open {
  transform: translateX(0);
}
@media (min-width: 900px) {
  .global-nav {
    display: none;
  }
}
.global-nav__close {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 20px auto;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.global-nav__close span {
  display: block;
  width: 3px;
  height: 22px;
  border-radius: 2px;
  background: #02542d;
}
.global-nav__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.global-nav__list a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  white-space: nowrap;
}

/* ============================================
   Footer
============================================ */
.site-footer {
  background: #ffffff;
  padding: 64px 24px 0;
  text-align: center;
}
@media (min-width: 900px) {
  .site-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "logo    contact" "tagline contact" "line    wordmark" "line    license";
    column-gap: 80px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 24px 0;
    text-align: left;
  }
}
.site-footer__logo {
  width: 165px;
  margin: 0 auto 16px;
}
@media (min-width: 900px) {
  .site-footer__logo {
    grid-area: logo;
    margin: 0 0 16px;
  }
}
.site-footer__tagline {
  font-size: 14px;
  margin-bottom: 32px;
}
@media (min-width: 900px) {
  .site-footer__tagline {
    grid-area: tagline;
    font-size: 18px;
  }
}
.site-footer__rule {
  border: none;
  border-top: 1px solid rgba(51, 45, 29, 0.2);
  margin: 32px 0;
}
@media (min-width: 900px) {
  .site-footer__rule {
    display: none;
  }
}
@media (min-width: 900px) {
  .site-footer__line {
    grid-area: line;
    align-self: start;
  }
}
.site-footer__line-title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
}
@media (min-width: 900px) {
  .site-footer__line-title {
    font-size: 24px;
  }
}
.site-footer__line-text {
  font-size: 14px;
  margin-bottom: 24px;
}
@media (min-width: 900px) {
  .site-footer__line-text {
    font-size: 18px;
  }
}
.site-footer__qr {
  width: 137px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .site-footer__qr {
    margin: 0;
  }
}
.site-footer__contact {
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
}
.site-footer__contact p:first-child {
  margin-bottom: 16px;
}
@media (min-width: 900px) {
  .site-footer__contact {
    grid-area: contact;
    font-size: 18px;
  }
}
.site-footer__wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 32px 0 16px;
}
.site-footer__wordmark img:first-child {
  width: 32px;
  height: 15px;
}
.site-footer__wordmark img:last-child {
  width: 122px;
  height: 14px;
}
@media (min-width: 900px) {
  .site-footer__wordmark {
    grid-area: wordmark;
    justify-content: flex-start;
    margin: 32px 0 16px;
  }
}
.site-footer__license {
  font-size: 10px;
  margin-bottom: 24px;
}
@media (min-width: 900px) {
  .site-footer__license {
    grid-area: license;
  }
}
.site-footer__copyright {
  background: #02542d;
  color: #ffffff;
  font-size: 10px;
  padding: 16px;
}
.site-footer__copyright p {
  margin: 0;
}
@media (min-width: 900px) {
  .site-footer__copyright {
    grid-column: 1/-1;
    text-align: center;
    margin-top: 24px;
  }
}

/* ============================================
   Responsive: center the SP/TB layout, release it on PC
============================================ */
@media (min-width: 600px) and (max-width: 899px) {
  body {
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  }
}
@media (min-width: 900px) {
  body {
    max-width: none;
    box-shadow: none;
  }
}
/* ============================================
   CONCEPT page
============================================ */
.concept-hero {
  position: relative;
}
.concept-hero__photo {
  width: 100%;
  height: 219px;
  object-fit: cover;
  display: block;
}
@media (min-width: 900px) {
  .concept-hero__photo {
    height: 800px;
  }
}
.concept-hero .hero__leaves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 900px) {
  .concept-hero .hero__leaves {
    display: block;
    height: 950px;
  }
}

.concept-intro {
  position: relative;
  z-index: 1;
  padding: 40px 24px 0;
  text-align: center;
  margin-top: -60px;
}
@media (min-width: 900px) {
  .concept-intro {
    max-width: 1120px;
    margin: -150px auto 0;
    padding: 96px 24px 0;
    text-align: left;
  }
}
.concept-intro__heading {
  font-weight: 300;
  font-size: 24px;
  color: #332d1d;
  line-height: 1.3;
  margin: 0 0 32px;
}
@media (min-width: 900px) {
  .concept-intro__heading {
    font-size: 48px;
    line-height: 2;
    white-space: nowrap;
    margin: 0 0 48px;
  }
}
.concept-intro__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  color: #332d1d;
}
@media (min-width: 900px) {
  .concept-intro__text {
    font-size: 32px;
    line-height: 1.45;
    max-width: 800px;
  }
}

.concept-top-illust {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  height: 140px;
  margin-top: 24px;
}
@media (min-width: 900px) {
  .concept-top-illust {
    justify-content: flex-start;
    height: auto;
    margin-top: 48px;
    gap: 30px;
  }
}
.concept-top-illust img {
  height: 120px;
  width: auto;
}
@media (min-width: 900px) {
  .concept-top-illust img {
    height: 260px;
  }
}

/* ============================================
   Repeating block: わたしたちの想い / こだわり 01-03
============================================ */
.concept-block {
  position: relative;
  padding: 64px 24px 0;
}
@media (min-width: 900px) {
  .concept-block {
    max-width: 1120px;
    margin: 0 auto;
    padding: 120px 24px 0;
    display: flex;
    align-items: center;
    gap: 40px;
  }
}
.concept-block__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 900px) {
  .concept-block__row {
    flex: 1;
    min-width: 0;
    gap: 40px;
  }
}
.concept-block__label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.15em;
  font-weight: 300;
  font-size: 16px;
  color: #332d1d;
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .concept-block__label {
    font-size: 32px;
  }
}
.concept-block__badge {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #02542d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  margin-top: 4px;
}
@media (min-width: 900px) {
  .concept-block__badge {
    width: 130px;
    height: 80px;
    border-radius: 40px;
    font-size: 48px;
  }
}
.concept-block__body {
  flex: 1;
  min-width: 0;
}
.concept-block__heading {
  font-weight: 600;
  font-size: 20px;
  color: #02542d;
  line-height: 1.3;
  margin: 0 0 20px;
}
@media (min-width: 900px) {
  .concept-block__heading {
    font-size: 42px;
    margin: 0 0 32px;
  }
}
.concept-block__heading--brand {
  font-weight: 800;
  font-size: 32px;
  font-family: "Inter", sans-serif;
}
@media (min-width: 900px) {
  .concept-block__heading--brand {
    font-size: 72px;
  }
}
.concept-block__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #332d1d;
  white-space: pre-line;
}
@media (min-width: 900px) {
  .concept-block__text {
    font-size: 32px;
    line-height: 1.45;
    max-width: 620px;
  }
}
.concept-block__illust {
  display: block;
  height: auto;
  margin: 32px auto 0;
}
@media (min-width: 900px) {
  .concept-block__illust {
    flex-shrink: 0;
    margin: 0;
  }
}
.concept-block--01 .concept-block__illust {
  width: 150px;
}
@media (min-width: 900px) {
  .concept-block--01 .concept-block__illust {
    width: 180px;
  }
}
.concept-block--02 .concept-block__illust {
  width: 136px;
}
@media (min-width: 900px) {
  .concept-block--02 .concept-block__illust {
    width: 170px;
  }
}
.concept-block__illust-group {
  position: relative;
  width: 260px;
  max-width: 260px;
  margin: 32px auto 0;
  height: 160px;
}
@media (min-width: 900px) {
  .concept-block__illust-group {
    flex-shrink: 0;
    margin: 0;
    width: 300px;
    max-width: none;
    height: 160px;
  }
}
.concept-block__illust-group img {
  position: absolute;
}

.concept-illust-03a {
  left: 60px;
  top: 0;
  width: 112px;
}
@media (min-width: 900px) {
  .concept-illust-03a {
    left: 0;
    top: 0;
    width: 165px;
  }
}

.concept-illust-03b {
  left: 155px;
  top: 12px;
  width: 88px;
}
@media (min-width: 900px) {
  .concept-illust-03b {
    left: 172px;
    top: 16px;
    width: 128px;
  }
}

/* ============================================
   伝統 / 現代 diagram
============================================ */
.concept-diagram {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 24px 0;
}
@media (min-width: 900px) {
  .concept-diagram {
    max-width: 1120px;
    margin: 0 auto;
    padding: 140px 24px 0;
  }
}
.concept-diagram__wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.concept-diagram__arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 136px;
  width: auto;
  z-index: 0;
}
@media (min-width: 900px) {
  .concept-diagram__arrow {
    height: 339px;
  }
}
.concept-diagram__arrow--1 {
  transform: translate(-50%, -50%) rotate(180deg);
}
.concept-diagram__circle {
  position: relative;
  z-index: 1;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 900px) {
  .concept-diagram__circle {
    width: 338px;
    height: 338px;
  }
}
.concept-diagram__circle--trad {
  background: #08703e;
  border: 3px solid #f5d942;
  color: #ffffff;
  margin-right: -20px;
}
@media (min-width: 900px) {
  .concept-diagram__circle--trad {
    margin-right: -40px;
  }
}
.concept-diagram__circle--modern {
  background: #f5d942;
  border: 3px solid #02542d;
  color: #111111;
  margin-left: -20px;
}
@media (min-width: 900px) {
  .concept-diagram__circle--modern {
    margin-left: -40px;
  }
}
.concept-diagram__title {
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 8px;
}
@media (min-width: 900px) {
  .concept-diagram__title {
    font-size: 48px;
    margin: 0 0 16px;
  }
}
.concept-diagram__list {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.9;
}
@media (min-width: 900px) {
  .concept-diagram__list {
    font-size: 32px;
    line-height: 1.9;
  }
}

.concept-contact {
  padding: 64px 24px;
  display: flex;
  justify-content: center;
}
@media (min-width: 900px) {
  .concept-contact {
    padding: 100px 24px;
  }
}
