@charset "UTF-8";
/* 東京相談会ページ（モック tokyo-consultation.html より） */

* { box-sizing: border-box; }
:root {
  --red:        #c3402f;
  --ink:        #222222;
  --ink-soft:   #3c3c3c;
  --bg-card:    #f4f4f4;
  --content:    1000px;
  --header-h:   45px;
}

.mincho {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "游明朝", serif;
}
.serif-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: .15em;
}

.page { padding-top: 0; }
.container { width: 100%; max-width: var(--content); margin: 0 auto; padding: 0 24px;}

.section-title {
  color: var(--red); font-size: 30px; font-weight: 600; letter-spacing: .1em;
  padding-bottom: 12px; margin-bottom: 30px;
  border-bottom: 1px solid var(--red);
}

.cta-heading {
  text-align: center; color: var(--red); font-size: 26px; font-weight: 600;
  letter-spacing: .1em; margin-bottom: 22px;
}
.fair-cta {
  padding: 33px 0 50px; background: #F4F4F4; text-align: center;
}
.fair-cta__mail {
  margin-top: 16px; font-size: 14px; color: #707070;
}
.fair-cta__mail a { color: var(--red); display: inline-block;
}


.hero { position: relative; width: 100%; max-width: var(--content); margin: 0 auto; }
.hero__img-wrap { width: 100%; height: 400px; overflow: hidden; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 0% 0%; transform: scale(1.1) translate(4%, 2%) }

.container { position: relative; width: 100%; max-width: var(--content); margin: 0 auto; padding: 0 24px; }

.tk-intro {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 24px);
  padding: 20px 220px 50px 0;
}

.tk-intro__stamp {
  width: clamp(120px, 20vw, 200px);
  flex: 0 0 auto;
}

.tk-intro__body {
  min-width: 0;
}

.tk-intro__title {
  color: var(--red);
  font-size: clamp(28px, 5vw, 50px);
  letter-spacing: .12em;
  font-weight: 600;
  margin: 0;
}
.tk-intro__desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  margin-top: 10px;
}

.hero__badge {
  position: absolute;
  top: -50px;
  right: 0;
  width: 230px; height: 230px; border-radius: 50%;
  background: rgba(237,232,202); color: var(--ink-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; line-height: 1.1; box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.hero__badge .ym { font-size: 40px; font-weight: 500; margin: -7px 0 5px; }
.hero__badge .day {
  display: flex; justify-content: center; gap: 4px;
  font-size: 40px; font-weight: 500; list-style: none; padding: 0; margin: 0;
}
.hero__badge .date-unit { font-size: 23px; }
.hero__badge .sub { font-size: 22px; line-height: 1.2; margin-top: 3px; }

.feature-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 80px;
}
.feature-card__img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 2px; }
.feature-card__en {
  color: var(--ink-soft); font-size: 26px; margin: 10px 0 6px; text-align: center;
}
.feature-card__ja { font-size: 14px; color: var(--ink-soft); text-align: center; line-height: 1.9; }

.benefits { margin-bottom: 80px; }
.benefit-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.benefit-card {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: var(--bg-card); border-radius: 2px; padding: 18px 20px 18px 28px;
}

.benefit-icon { width: 150px; flex-shrink: 0;}
.benefit-card img { width: 150px; height: 150px; object-fit: contain; display: block; }
.benefit-text { flex: 1;}
.benefit-text p { font-size: 22px; line-height: 1.8; text-align: center; color: var(--ink-soft); letter-spacing: .04em; margin: 0;}
.benefit-text p span { font-size: 18px; }
.benefit-text--bag { padding-right: 20px; }

.kaisai { margin-bottom: 30px; }
.kaisai__desc { font-size: 18px; text-align: center; margin-bottom: 56px;}
.staff { display: flex; gap: 22px; align-items: center; justify-content: center; margin-bottom: 80px;}
.staff img { width: 150px; aspect-ratio: 1/1; object-fit: cover; flex: 0 0 auto; }
.staff__role { font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.staff__corp { font-size: 13px; color: var(--ink-soft); }
.staff__name { font-size: 20px; color: var(--ink); font-weight: 600; letter-spacing: .06em;}

@media (max-width: 820px) {
  .container { padding: 0 15px;}
  .section-title { font-size: 24px; padding-bottom: 8px; margin-bottom: 26px;}

  .hero__img-wrap { height: 380px; }
  .hero__img { object-position: 4% 0%; transform: scale(1.1) translate(0%, 2%) }
  .tk-intro {
    align-items: flex-start;
    gap: 0;
    padding: 20px 0 40px;
  }
  .tk-intro__stamp {
    width: 80px;
  }
  .tk-intro__body {
    flex: 1;
    min-width: 0;
  }
  .tk-intro__title {
    font-size: 32px;
    text-align: left;
    margin: 7px 0px 7px 7px;
  }
  .hero__badge {
    position: static;
    margin: 26px 0 20px -80px;
    width: calc(100% + 80px);
    height: auto;
    border-radius: 40px;
    flex-direction: row;
    justify-content: center;
    gap: 4px;
    padding: 10px 10px 8px 10px;
  }
  .hero__badge .ym { margin: 0; font-size: 26px; }
  .hero__badge .day { font-size: 34px; gap: 2px; }
  .hero__badge .date-unit { font-size: 15px; }
  .hero__badge .sub { font-size: 15px; margin: 0 0 0 6px; }
  .tk-intro__desc {
    margin: 0 0 0 -80px;
    width: calc(100% + 80px);
    text-align: left;
    font-size: 15px;
    line-height: 1.9;
  }

  .feature-cards { grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; max-width: 420px; margin-inline: auto; }
  .feature-card__en {
    color: var(--ink-soft); font-size: 26px; margin: 0 0 6px; text-align: center;
 }
  .benefits { margin-bottom: 60px; }
  .benefit-cards { grid-template-columns: 1fr; gap: 16px; max-width: 420px; margin-inline: auto; }
  .benefit-card { display: flex; align-items: center; gap: 18px; text-align: left; padding: 18px 16px; }
  .benefit-card img { margin: 0; width: 80px; height: 80px; }
  .benefit-text p { font-size: 20px; }
  .benefit-text p span { font-size: 16px; }
  .benefit-text--bag { padding-right: 10px; }
  .benefit-icon { width: 80px;}

  .kaisai__desc { font-size: 15px; text-align: left; margin-bottom: 40px;}
  .kaisai__grid { grid-template-columns: 1fr; gap: 26px; }

  .staff { gap: 20px;}
  .staff img { width: 135px; }
  .staff__name { font-size: 17px; letter-spacing: 0;}

  .cta-heading { font-size: 20px; margin-bottom: 16px; }
  .fair-cta { padding: 25px 15px 34px; }
}