@charset "UTF-8";

/* ==========================================================================
   リセットCSS
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #111;
  background-color: #fff;
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

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

a:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

button:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
   共通スタイル
   ========================================================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.inner {
  width: 100%;
  max-width: 1116px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__logo {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  line-height: 1;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-item {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #111;
}

.header__nav-item--active {
  color: #1a73e8;
}

.header__nav-link {
  display: block;
  transition: color 0.3s ease;
}

.header__nav-link:hover {
  color: #1a73e8;
}

.header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 24px;
  background-color: #1a73e8;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.header__cta:hover {
  background-color: #1557b0;
}

/* ==========================================================================
   イベント概要セクション
   ========================================================================== */
.event-overview {
  padding: 100px 0 0;
  background-color: #fff;
}

.event-overview__header {
  margin-bottom: 0;
}

.event-overview__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #111;
  letter-spacing: 2px;
  line-height: 1.4;
  margin: 0;
}

.event-overview__body {
  padding: 5px 0 30px 0;
}

.event-overview__description {
  max-width: 100%;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  color: #333;
}

/* テーブル */
.event-table {
  width: 100%;
  max-width: 1055px;
  margin: 40px auto 0;
  border-top: 1px solid #ddd;
}

.event-table__row {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.event-table__header {
  width: 200px;
  padding: 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  color: #111;
  background-color: #fff;
  flex-shrink: 0;
}

.event-table__data {
  flex: 1;
  padding: 30px 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #111;
  background-color: #fff;
}

/* ==========================================================================
   CTAセクション
   ========================================================================== */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  margin-top: 40px;
  background-color: #fafafa;
}

.cta__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #111;
  letter-spacing: 1.6px;
  margin-bottom: 30px;
}

.cta__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #333;
  margin-bottom: 30px;
}

.cta__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 80px;
  background-color: #1a73e8;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.1px;
  transition: background-color 0.3s ease;
}

.cta__button:hover {
  background-color: #1557b0;
}

.cta__button-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   メリットセクション
   ========================================================================== */
.benefits {
  padding: 140px 0;
  background-color: #fff;
}

.benefits__header {
  text-align: center;
  margin-bottom: 80px;
}

.benefits__subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  color: #1a73e8;
  margin-bottom: 15px;
}

.benefits__title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  letter-spacing: 2px;
}

/* ポイントカード */
.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefits__item {
  display: flex;
  align-items: stretch;
}

.benefits__item--reverse {
  flex-direction: row-reverse;
}

.benefits__item-image {
  width: 451px;
  height: 360px;
  flex-shrink: 0;
}

.benefits__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  background-color: #fff;
}

.benefits__item-inner {
  max-width: 497px;
}

.benefits__item-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #111;
  margin-bottom: 10px;
}

.benefits__item-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1.4px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.benefits__item-title .highlight {
  color: #1a73e8;
}

.benefits__item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #333;
}

/* ==========================================================================
   セミナーセクション
   ========================================================================== */
.seminar {
  padding: 140px 0;
  background-color: #fff;
}

.seminar__header {
  text-align: center;
  margin-bottom: 80px;
}

.seminar__subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  color: #1a73e8;
  margin-bottom: 15px;
}

.seminar__title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  letter-spacing: 2px;
}

/* ==========================================================================
   個別相談セクション
   ========================================================================== */
.consultation {
  padding: 120px 0 40px;
  background-color: #fff;
}

.consultation__header {
  text-align: center;
  margin-bottom: 80px;
}

.consultation__subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  color: #1a73e8;
  margin-bottom: 15px;
}

.consultation__title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  letter-spacing: 2px;
  line-height: 1.5;
}

/* カード */
.consultation__cards {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.consultation__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: #fff;
  border: 1px solid #1a73e8;
}

.consultation__card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
}

.consultation__card-icon img {
  width: 100%;
  height: 100%;
}

.consultation__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  color: #111;
}

.consultation__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #333;
  margin-bottom: 40px;
}

/* ヒーローブロック */
.consultation__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 500px;
  background-color: #fff;
}

.consultation__hero-content {
  padding-left: 80px;
}

.consultation__hero-title {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.consultation__hero-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.consultation__hero-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #333;
  max-width: 467px;
  margin-bottom: 30px;
}

.consultation__hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 80px;
  background-color: #1a73e8;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.consultation__hero-button:hover {
  background-color: #1557b0;
}

.consultation__hero-image {
  width: 500px;
  height: 500px;
  flex-shrink: 0;
}

.consultation__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   フローセクション
   ========================================================================== */
.flow {
  padding: 60px 0;
  background-color: #fff;
}

.flow__header {
  text-align: center;
  margin-bottom: 60px;
}

.flow__title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1.6px;
  margin-bottom: 15px;
}

.flow__subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #1a73e8;
}

.flow__list{
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* まずPCは3列固定 */
  gap: 24px;
  align-items: stretch;
}


.flow__item {
  width: 282px;
  text-align: center;
  min-width: 0; /* これが無いと長文で列が崩れることがある */
}

.flow__item-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.flow__item-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  color: #111;
  margin-bottom: 30px;
}

.flow__item-image {
  width: 208px;
  height: 163px;
  margin: 0 auto;
}

.flow__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow__item *{
  max-width: 100%;
}

.flow__item-image img{
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   アクセスセクション
   ========================================================================== */
.access {
  padding: 60px 0;
  background-color: #fff;
}

.access__header {
  text-align: center;
  margin-bottom: 60px;
}

.access__title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1.6px;
  margin-bottom: 15px;
}

.access__subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #1a73e8;
}

.access__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.access__info {
  flex: 1;
}

.access__venue {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 50px;
}

.access__address-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.access__address-label {
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: #111;
}

.access__address-value {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #111;
}

.access__map {
  width: 641px;
  height: 460px;
  flex-shrink: 0;
}

.access__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   参加企業セクション
   ========================================================================== */
.companies {
  padding: 60px 0;
  background-color: #fff;
}

.companies__header {
  text-align: center;
}

.companies__title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1.6px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.companies__subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #1a73e8;
}

/* ==========================================================================
   FAQセクション
   ========================================================================== */
.faq {
  padding: 120px 0;
  background-color: #f0f6ff;
}

.faq__header {
  text-align: center;
  margin-bottom: 80px;
}

.faq__subtitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  color: #1a73e8;
  margin-bottom: 15px;
}

.faq__title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  letter-spacing: 2px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 926px;
  margin: 0 auto;
}

.faq__item {
  width: 100%;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.faq__question-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #111;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  flex-shrink: 0;
  padding-bottom: 5px;
}

.faq__question-text {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
}

.faq__answer {
  padding: 25px 30px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #333;
}

/* ==========================================================================
   フッター
   ========================================================================== */
.footer {
  background-color: #fff;
}

.footer__main {
  padding: 112px 0 80px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  max-width: 831px;
  margin: 0 auto;
}

.footer__logo {
  font-size: 24px;
  font-weight: 700;
  color: #1a73e8;
  letter-spacing: 2.4px;
  line-height: 1.5;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__info-item {
  font-size: 80%;
  font-weight: 700;
  line-height: 28px;
  color: #111;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background-color: #1a73e8;
}

.footer__bottom .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
}

.footer__links {
  display: flex;
  gap: 30px;
}

.footer__link {
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  color: #fff;
}

.footer__link:hover {
  text-decoration: underline;
}


.footer__scroll-top:hover {
  background-color: #f5f5f5;
}

.footer__scroll-top-icon {
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
}

/* ==========================================================================
   レスポンシブ対応
   ========================================================================== */
/* ハンバーガーメニュー */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #111;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media screen and (max-width: 1200px) {
  .header__logo {
    font-size: 24px;
  }

  .header__nav-list {
    gap: 20px;
  }

  .benefits__item-image {
    width: 400px;
    height: 320px;
  }

  .consultation__hero-image {
    width: 50%;
  }

  .access__map {
    width: 50%;
    height: auto;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .header__hamburger {
    display: flex;
    order: 3;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
  }

  .header__nav.is-open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .header__nav-link {
    display: block;
    padding: 15px 0;
    width: 100%;
  }

  .header__cta {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .header__overlay.is-visible {
    display: block;
  }

  .hero {
    height: 500px;
  }

  .event-overview__title {
    font-size: 28px;
  }

  .event-table {
    margin-top: 30px;
  }

  .event-table__row {
    flex-direction: column;
  }

  .event-table__header {
    width: 100%;
    padding: 20px;
  }

  .event-table__data {
    padding: 20px;
  }

  .cta {
    margin-top: 30px;
  }

  .benefits__item {
    flex-direction: column !important;
  }

  .benefits__item-image {
    width: 100%;
    height: 300px;
  }

  .benefits__item-content {
    padding: 40px 20px;
  }

  .consultation__cards {
    flex-direction: column;
  }

  .consultation__hero {
    flex-direction: column;
    height: auto;
  }

  .consultation__hero-content {
    padding: 40px 20px;
    order: 2;
  }

  .consultation__hero-image {
    width: 100%;
    height: 300px;
    order: 1;
  }

  .flow__list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .access__content {
    flex-direction: column;
    gap: 40px;
  }

  .access__map {
    width: 100%;
    height: 300px;
  }

  .footer__content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .header {
    padding: 12px 15px;
  }

  .header__logo {
    font-size: 18px;
  }

  .hero {
    height: 300px;
  }

  .event-overview {
    padding: 40px 0 0;
  }

  .event-overview__title {
    font-size: 24px;
    padding: 0 20px;
  }

  .event-overview__body {
    padding: 5px 0 20px 0;
  }

  .event-overview__description {
    padding: 0 20px;
    font-size: 16px;
    line-height: 28px;
  }

  .event-table {
    margin-top: 20px;
  }

  .cta {
    margin-top: 20px;
    padding: 60px 20px;
  }

  .benefits {
    padding: 60px 0;
  }

  .benefits__header {
    margin-bottom: 40px;
  }

  .benefits__title,
  .consultation__title,
  .faq__title {
    font-size: 24px;
  }

  .benefits__item-title {
    font-size: 20px;
  }

  .cta__title {
    font-size: 22px;
    padding: 0 20px;
  }

  .cta__button {
    padding: 16px 40px;
    font-size: 16px;
  }

  .consultation {
    padding: 60px 0 40px;
  }

  .consultation__header {
    margin-bottom: 40px;
  }

  .flow {
    padding: 40px 0;
  }

  .flow__header {
    margin-bottom: 40px;
  }

  .flow__title,
  .access__title,
  .companies__title {
    font-size: 22px;
  }

  .access {
    padding: 40px 0;
  }

  .access__header {
    margin-bottom: 40px;
  }

  .access__venue {
    font-size: 24px;
  }

  .access__address-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .companies {
    padding: 40px 0;
  }

  .faq {
    padding: 60px 0;
  }

  .faq__header {
    margin-bottom: 40px;
  }

  .faq__list {
    gap: 30px;
  }

  .faq__question-text {
    font-size: 16px;
  }

  .footer__main {
    padding: 60px 20px 40px;
  }

  .footer__bottom .inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==========================================================================
   フォーカス表示の強化（アクセシビリティ対応）
   ========================================================================== */
:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

/* スキップリンク */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: #1a73e8;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
  .cta__button,
  .header__cta,
  .consultation__hero-button {
    border: 2px solid #fff;
  }

  .consultation__card {
    border-width: 2px;
  }
}

/* モーション軽減設定対応 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ======================================================================
   Responsive Patch (append-only)
   既存デザインを崩さず、はみ出し・固定幅・余白をスマホで安定させる
   ====================================================================== */

/* 1) container/inner の左右余白を統一（containerにもガターを持たせる） */
.container{
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1116px){
  .container{
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px){
  .inner{
    padding: 0 16px;
  }
}

/* 2) Header: PCはそのまま、SPは左右paddingを揃えてロゴ巨大化を抑える */
@media (min-width: 1025px){
  .header{
    padding-right: 0; /* 右側が詰まって見える場合の保険 */
  }
}
@media (max-width: 1024px){
  .header{
    padding-left: 20px; /* もともと left:40 固定だったので、SPは左右バランス */
    padding-right: 20px;
  }
}

/* 3) Hero: height固定をやめ、画像比率に追従（スマホで“でかすぎ問題”回避） */
.hero{
  height: auto;              /* 固定824pxを解除 */
  aspect-ratio: 16 / 9;      /* まずは安全な比率。画像に合わせて調整可 */
  max-height: 824px;         /* PCの大きさは維持 */
}
.hero__image{
  position: absolute;
  inset: 0;
  object-fit: cover;         /* containだと余白が出やすいのでcover推奨 */
  background-color: #f5f5f5;
}
/* もし“絶対に余白ゼロで見切れたくない”なら、cover→containに戻してOK */

/* 4) Event table: PCは横、SPは縦で読みやすく */
@media (max-width: 768px){
  .event-table{
    max-width: 100%;
    margin: 24px auto 0;
  }
  .event-table__header,
  .event-table__data{
    padding: 16px;
  }
  .event-table__data{
    padding-top: 0;
  }
}

/* 5) CTA: ボタンが画面からはみ出さないように */
.cta__button{
  max-width: 100%;
}
@media (max-width: 768px){
  .cta__button{
    width: 100%;
    justify-content: center;
    padding: 16px 56px;   /* 右矢印分の余白を残す */
    font-size: 16px;
  }
  .cta__button-icon{
    right: 18px;
    transform: translateY(-50%); /* rotate(90deg)を解除。矢印が横向きで自然に */
  }
}

/* 6) Benefits: 画像の固定幅を“縮められる”ようにして崩れにくく */
.benefits__item-image{
  max-width: 100%;
}
@media (max-width: 1024px){
  .benefits__item-image{
    width: 100%;
    height: 280px;
  }
  .benefits__item-content{
    padding: 28px 16px;
  }
}

/* 7) Consultation cards: gapが広すぎるのでSPは詰める */
@media (max-width: 768px){
  .consultation__cards{
    gap: 16px;
  }
  .consultation__card{
    padding: 24px 16px;
  }
  .consultation__card-icon{
    width: 56px;
    height: 56px;
  }
}

/* 8) Consultation hero: 左padding固定(80px)がSPで地獄になるので調整 */
@media (max-width: 1024px){
  .consultation__hero-content{
    padding-left: 20px;   /* 80px固定を解除 */
    padding-right: 20px;
  }
}
@media (min-width: 1025px){
  .consultation__hero-content{
    padding-right: 40px;  /* PCで文章が画面端に寄りすぎるのを防ぐ */
  }
}

/* 9) Flow: 固定幅282pxが多端末でキツいので、縮められるように */
.flow__item{
  width: auto;
  max-width: 320px;
}
@media (min-width: 1025px){
  .flow__list{
    flex-wrap: wrap;
  }
}

/* 10) Access: 住所の長文折り返し（スマホで横スクロール防止） */
.access__address-value,
.event-table__data,
.consultation__hero-text{
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 11) Footer: bottomの左右余白が消えることがあるので補強 */
.footer__bottom{
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 769px){
  .footer__bottom{
    padding-left: 0;
    padding-right: 0;
  }
}


/* ======================================================================
   出展企業（companies） 検索＆カード
   ====================================================================== */
.companies__toolbar{
  margin: 24px 0 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.companies__search{
  width: min(720px, 100%);
}

.companies__search input{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
}

.companies__search input:focus{
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26,115,232,.12);
}

.companies__list{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

/* company-card */
.company-card{
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.company-card__header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.company-card__meta{ flex: 1; }

.company-card__name{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}

.company-card__summary{
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 12px;
}

.company-card__info{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px 12px;
  font-size: 13px;
  color: #111;
  margin: 0;
}

.company-card__info-row{ display: contents; }
.company-card__info dt{ font-weight: 700; color: #111; }
.company-card__info dd{ color: #333; }

.company-card__toggle{
  flex-shrink: 0;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid #1a73e8;
  color: #1a73e8;
  background: #f0f6ff;
  font-weight: 700;
}

.company-card__jobs{
  border-top: 1px solid #eee;
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fafafa;
}

/* job-card */
.job-card{
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}

.job-card__header{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.job-card__title{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.job-card__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #f3f3f3;
  color: #111;
  border: 1px solid #e6e6e6;
}

.badge--ok{
  background: #e9f7ee;
  border-color: #bfe8cf;
  color: #0f6b2e;
}

.badge--info{
  border: 1px solid #1a73e8;
  color: #1a73e8;
  background: #f0f6ff;
}

/* 必須3項目（勤務地/給与/休日） */
.job-card__dl{
  display: grid;
  gap: 10px;
  margin: 0;
}

.job-card__row{
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  padding: 10px;
  border-radius: 10px;
  background: #fafafa;
}

.job-card__row dt{ font-weight: 700; color: #111; }

/* responsive */
@media screen and (max-width: 768px){
  .company-card__header{
    flex-direction: column;
    align-items: stretch;
  }
  .company-card__toggle{
    width: 100%;
    text-align: center;
  }
  .company-card__info{
    grid-template-columns: 80px 1fr;
  }
}
/* ===== 特徴フィルター ===== */
.companies__filters{
  margin: 24px 0 12px;
  display: flex;
  justify-content: center;
}

.filter-group{
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
}

.filter-group__title{
  width: 100%;
  text-align: center;
  font-weight: 700;
  margin-bottom: 8px;
}

.filter-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}

.filter-chip input{
  accent-color: #1a73e8;
}

/* =========================================================
   出展企業・求人票（Companies & Jobs）
   ========================================================= */

/* ===== フィルター ===== */
.companies__filters{
  margin: 24px 0 12px;
  display: flex;
  justify-content: center;
}

.filter-group{
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
}

.filter-group__title{
  width: 100%;
  text-align: center;
  font-weight: 700;
  margin-bottom: 8px;
}

.filter-chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}

.filter-chip input{
  accent-color: #1a73e8;
}

/* ===== 企業一覧 ===== */
.companies__list{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

/* ===== 企業カード ===== */
.company-card{
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.company-card__header{
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 18px;
}

.company-card__meta{
  flex: 1;
}

.company-card__name{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.company-card__summary{
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.company-card__info{
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 6px 12px;
  font-size: 13px;
}

.company-card__info dt{
  font-weight: 700;
}

.company-card__toggle{
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #1a73e8;
  background: #f0f6ff;
  color: #1a73e8;
  font-weight: 700;
  white-space: nowrap;
}

/* ===== 求人票 ===== */
.company-card__jobs{
  border-top: 1px solid #eee;
  background: #fafafa;
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.job-card{
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 14px;
}

.job-card__title{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.job-card__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.badge{
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  background: #f3f3f3;
}

.badge--ok{
  background: #e9f7ee;
  border-color: #bfe8cf;
  color: #0f6b2e;
}

/* 必須3項目（勤務地 / 給与 / 休日） */
.job-card__dl{
  display: grid;
  gap: 10px;
}

.job-card__row{
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: #fafafa;
  font-size: 13px;
}

.job-card__row dt{
  font-weight: 700;
}

/* ===== SP対応 ===== */
@media (max-width: 768px){
  .company-card__header{
    flex-direction: column;
  }

  .company-card__toggle{
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   HERO：高さ600pxでセンター表示（左寄せ解消・切れ防止）
   どちらでも対応：
   1) <img class="hero__image">
   2) <div class="hero__image"><img ...></div>
   ========================================================= */

.hero{
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

/* hero__image が「img」でも「div」でもセンターになるようにする */
.hero_image{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

/* img を確実に高さ600pxに収めて中央表示 */
.hero_image img,
img.hero_image{
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto; /* 念のため */
}

/* SPは高さを少し下げる（任意：既存と整合） */
@media screen and (max-width: 1024px){
  .hero{ height: 500px; }
}
@media screen and (max-width: 768px){
  .hero{ height: 300px; }
}
/* =========================
   セミナーヒーロー（追加）
   ========================= */
.seminar-hero{
  padding: 80px 0 0;
}
@media (max-width: 768px){
  .seminar-hero{
    padding: 40px 0 0;
  }
}
/* セミナーヒーロー（このブロックだけ整える） */
.seminar-hero .consultation__hero{
  max-width: 1120px;
  margin: 0 auto;
  align-items: flex-start; /* ★ここが効く：上端を揃える */
  gap: 48px;
}

.seminar-hero .consultation__hero-content{
  padding-left: 0;  /* 流用の固定余白を無効化 */
  padding-right: 0;
}

.seminar-hero .consultation__hero-image{
  margin-top: 0;    /* もし入ってたら打ち消す */
}
/* =========================
   Filters UI
========================= */
.filters { margin: 32px 0; }

.filters__panel{
  border: 1px solid #e6ebf2;
  background: #fbfcff;
  border-radius: 16px;
  padding: 18px 18px;
}

.filters__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.filters__title{
  font-weight: 700;
  font-size: 16px;
  color: #111;
}

.filters__grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px 18px;
  align-items: start;
}

.filters__block--count{
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
  border-top: 1px solid #e6ebf2;
}

.filters__label{
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 8px;
  display: block;
}

/* chips */
.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.chip input{
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.chip span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #d7deea;
  background: #fff;
  color: #1f2937;
  font-size: 14px;
  line-height: 1;
  transition: transform .08s ease, border-color .15s ease, background .15s ease;
  user-select: none;
}

.chip span::before{
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 2px solid #9aa7bd;
  background: #fff;
  box-sizing: border-box;
}

.chip input:checked + span{
  border-color: #1a73e8;
  background: #eff6ff;
}

.chip input:checked + span::before{
  border-color: #1a73e8;
  background: #1a73e8;
  box-shadow: inset 0 0 0 2px #eff6ff;
}

.chip input:focus-visible + span{
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

.chip input:active + span{ transform: scale(0.98); }

/* select styling */
.select{
  position: relative;
  display: inline-block;
  width: 100%;
}

.filters__select{
  width: 100%;
  padding: 12px 40px 12px 12px;
  border-radius: 12px;
  border: 1px solid #d7deea;
  background: #fff;
  font-size: 14px;
  color: #111;
  appearance: none;
}

.select::after{
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

/* count + reset */
.filters__count{
  font-weight: 700;
  color: #111;
  margin: 0;
}

.filters__count .js-result-count{
  color: #1a73e8;
}

.filters__hint{
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

.filters__reset{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7deea;
  background: #fff;
  font-weight: 700;
  font-size: 13px;
}

.filters__reset:hover{
  border-color: #1a73e8;
  background: #eff6ff;
}

/* responsive */
@media (max-width: 768px){
  .filters__grid{
    grid-template-columns: 1fr;
  }
  .filters__block--count{
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ページトップボタン（右下） */
.footer__scroll-top{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 14px;

  background: #1a73e8;          /* ←白やめる */
  border: 1px solid #1a73e8;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1000;
}

.footer__scroll-top-icon{
  width: 22px;
  height: 22px;
  display: block;
}

/* もしSVGが「黒固定」なら白に寄せる（単色SVG想定） */
.footer__scroll-top-icon{
  filter: brightness(0) invert(1);
}

.footer__scroll-top:hover{
  transform: translateY(-2px);
}

.footer__scroll-top:focus-visible{
  outline: 3px solid #1a73e8;
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  font-size: 50%;
}

/* =========================
   アコーディオン初期状態の担保
   ========================= */
.company-card__jobs[hidden]{
  display: none !important;
}

