:root {
  --tyg-pink: #ffd4d8;
  --tyg-pink-soft: #fff4f5;
  --tyg-green: #76a66b;
  --tyg-green-dark: #4f7d50;
  --tyg-text: #544a47;
  --tyg-muted: #847a76;
  --tyg-border: #efe5e3;
  --tyg-shadow: 0 18px 42px rgba(84, 74, 71, .12);
  --tyg-container: 1120px;
}

html { scroll-behavior: smooth; }
body.tyg-front-page {
  margin: 0;
  color: var(--tyg-text);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.9;
  letter-spacing: .04em;
}
.tyg-front-page * { box-sizing: border-box; }
.tyg-front-page img { max-width: 100%; height: auto; vertical-align: middle; }
.tyg-front-page a { color: inherit; text-decoration: none; }
.tyg-skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 9999;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--tyg-border);
}
.tyg-skip-link:focus { left: 8px; }
.tyg-container {
  width: min(calc(100% - 32px), var(--tyg-container));
  margin-inline: auto;
}
.tyg-head {
  background: #fff;
  position: relative;
  z-index: 20;
}
.tyg-head__top {
  padding: 10px 0 6px;
}
.tyg-site-title {
  margin: 0;
  font-size: 12px;
  color: var(--tyg-muted);
}
.tyg-nav-wrap {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid #fff;
  border-bottom: 1px solid var(--tyg-border);
  backdrop-filter: blur(10px);
  z-index: 30;
}
.admin-bar .tyg-nav-wrap { top: 32px; }
.tyg-nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.tyg-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  color: var(--tyg-green-dark);
  min-width: 240px;
}
.tyg-brand__main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: .08em;
  font-weight: 400;
}
.tyg-brand__sub {
  margin-top: 8px;
  font-size: 12px;
  color: var(--tyg-muted);
  letter-spacing: .18em;
}
.tyg-nav__toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--tyg-border);
  border-radius: 999px;
  background: #fff;
  color: var(--tyg-green-dark);
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: .12em;
}
.tyg-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--tyg-text);
}
.tyg-nav__menu a {
  display: block;
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: .1em;
  position: relative;
}
.tyg-nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--tyg-green);
  transition: transform .25s ease;
}
.tyg-nav__menu a:hover::after { transform: scaleX(1); }

.tyg-hero {
  height: clamp(420px, 62vw, 720px);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background: var(--tyg-pink-soft);
}
.tyg-hero__slider,
.tyg-hero__slide {
  position: absolute;
  inset: 0;
}
.tyg-hero__slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  animation: tygHero 18s infinite;
}
.tyg-hero__slide--2 { animation-delay: 6s; }
.tyg-hero__slide--3 { animation-delay: 12s; }
.tyg-hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.38) 45%, rgba(255,255,255,.08));
}
.tyg-hero__copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--tyg-container));
  margin-inline: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--tyg-text);
}
.tyg-hero__eyebrow {
  margin: 0 0 16px;
  color: var(--tyg-green-dark);
  font-size: 13px;
  letter-spacing: .18em;
  font-weight: 700;
}
.tyg-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1.2;
  letter-spacing: .06em;
  color: var(--tyg-green-dark);
  text-shadow: 0 3px 0 rgba(255,255,255,.75);
}
.tyg-hero__copy > p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--tyg-text);
}
@keyframes tygHero {
  0% { opacity: 0; transform: scale(1.04); }
  7% { opacity: 1; }
  33% { opacity: 1; }
  41% { opacity: 0; transform: scale(1.11); }
  100% { opacity: 0; transform: scale(1.04); }
}

.tyg-main {
  background:
    radial-gradient(circle at 0 15%, rgba(255, 212, 216, .36), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fff 100%);
}
.tyg-section {
  padding: clamp(64px, 8vw, 112px) 0;
  text-align: center;
}
.tyg-section--soft {
  background: linear-gradient(180deg, rgba(255,244,245,.95), rgba(255,255,255,.95));
}
.tyg-title-min {
  margin: 0 auto 42px;
  color: var(--tyg-green-dark);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: .12em;
  text-align: center;
}
.tyg-title-min::after {
  content: "";
  display: block;
  width: 62px;
  height: 1px;
  margin: 22px auto 0;
  background: var(--tyg-pink);
}
.tyg-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  color: var(--tyg-green-dark);
  font-size: 16px;
}
.tyg-intro p { margin: 0 0 1.2em; }
.tyg-lead {
  max-width: 760px;
  margin: 0 auto 36px;
  color: var(--tyg-muted);
}
.tyg-card-list {
  display: grid;
  gap: 30px;
}
.tyg-card-list--primary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}
.tyg-card-list--secondary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tyg-card-wrap p {
  margin: 18px 0 0;
  color: var(--tyg-muted);
  font-size: 14px;
}
.tyg-image-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--tyg-shadow);
  background: var(--tyg-pink-soft);
  min-height: 260px;
}
.tyg-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.tyg-image-card--small,
.tyg-image-card--small img { min-height: 220px; }
.tyg-image-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.06);
}
.tyg-image-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(70,80,62,.08), rgba(70,80,62,.38));
  color: #fff;
  text-align: center;
}
.tyg-image-card__title {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: .05em;
  text-shadow: 0 3px 12px rgba(0,0,0,.35);
}
.tyg-image-card__title small {
  display: block;
  margin-top: 12px;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: .12em;
  font-weight: 400;
}
.tyg-chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.tyg-chip-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 46px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(118,166,107,.28);
  background: #fff;
  color: var(--tyg-green-dark);
  box-shadow: 0 8px 18px rgba(84, 74, 71, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tyg-chip-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(84, 74, 71, .1);
}
.tyg-chip-grid--muted a {
  color: var(--tyg-muted);
  border-color: var(--tyg-border);
}
.tyg-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  text-align: left;
}
.tyg-feature-card {
  padding: 34px 28px;
  background: #fff;
  border: 1px solid var(--tyg-border);
  box-shadow: var(--tyg-shadow);
}
.tyg-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--tyg-green);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}
.tyg-feature-card h3 {
  margin: 0 0 12px;
  color: var(--tyg-green-dark);
  font-size: 20px;
  letter-spacing: .08em;
}
.tyg-feature-card p { margin: 0; color: var(--tyg-muted); font-size: 14px; }
.tyg-column-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  text-align: left;
}
.tyg-column-grid article {
  background: #fff;
  border-top: 4px solid var(--tyg-pink);
  padding: 30px 26px;
  box-shadow: var(--tyg-shadow);
}
.tyg-column-grid__label {
  margin: 0 0 10px;
  color: var(--tyg-green);
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 700;
}
.tyg-column-grid h3 {
  margin: 0 0 14px;
  color: var(--tyg-green-dark);
  font-size: 19px;
  line-height: 1.6;
}
.tyg-column-grid p:last-child { margin: 0; color: var(--tyg-muted); font-size: 14px; }
.tyg-section--policy { padding-bottom: clamp(70px, 8vw, 120px); }
.tyg-policy-box {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
  border: 1px solid var(--tyg-border);
  box-shadow: var(--tyg-shadow);
  text-align: left;
}
.tyg-policy-box p { margin: 0 0 1em; }
.tyg-policy-box p:last-child { margin-bottom: 0; }
.tyg-footer {
  padding: 54px 0;
  background: var(--tyg-green-dark);
  color: rgba(255,255,255,.86);
  text-align: center;
}
.tyg-footer__brand {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: .12em;
  color: #fff;
}
.tyg-footer p { margin: 0 0 8px; }
.tyg-footer__copy { font-size: 12px; opacity: .8; }

@media (max-width: 960px) {
  .tyg-nav { min-height: 82px; }
  .tyg-nav__toggle { display: inline-flex; }
  .tyg-nav__menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px;
    border: 1px solid var(--tyg-border);
    background: #fff;
    box-shadow: var(--tyg-shadow);
  }
  .tyg-nav__menu.is-open { display: flex; }
  .tyg-nav__menu a { padding: 14px 0; }
  .tyg-card-list--primary,
  .tyg-card-list--secondary,
  .tyg-feature-grid,
  .tyg-column-grid {
    grid-template-columns: 1fr;
  }
  .tyg-image-card,
  .tyg-image-card img,
  .tyg-image-card--small,
  .tyg-image-card--small img { min-height: 250px; }
}
@media (max-width: 782px) {
  .admin-bar .tyg-nav-wrap { top: 46px; }
}
@media (max-width: 640px) {
  .tyg-head__top { display: none; }
  .tyg-nav { min-height: 72px; }
  .tyg-brand { min-width: auto; }
  .tyg-brand__main { font-size: 21px; }
  .tyg-brand__sub { font-size: 10px; }
  .tyg-hero { min-height: 460px; }
  .tyg-hero__slider::after { background: rgba(255,255,255,.62); }
  .tyg-hero h1 { font-size: 34px; }
  .tyg-section { padding: 56px 0; }
  .tyg-title-min { font-size: 25px; margin-bottom: 32px; }
  .tyg-intro { font-size: 15px; text-align: left; }
  .tyg-chip-grid { gap: 10px; }
  .tyg-chip-grid a { min-width: calc(50% - 5px); font-size: 13px; }
}
