
.mix-org {
  --mix-brown: #603813;
  --mix-yellow: #f6cf55;
  --mix-yellow-soft: #fff8e7;
  --mix-cream: #fbf7ef;
  --mix-border: #ead8b8;
  --mix-line: #eee6d8;
  width: 100%;
  color: var(--mix-brown);
  container-type: inline-size;
}

.mix-org *,
.mix-org *::before,
.mix-org *::after { box-sizing: border-box; }

.mix-org img { max-width: 100%; }

/* キャッチコピー：1カラムでワイド */
.mix-org__catchcopy {
  width: 100%;
  margin: 0 0 24px !important;
  padding: 0 0 10px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--mix-yellow) !important;
  background: none !important;
  color: var(--mix-brown) !important;
  font-size: clamp(24px, 2.8vw, 32px) !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

/* アイキャッチ＋紹介文：2カラム */
.mix-org__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, .92fr);
  gap: clamp(22px, 4%, 34px);
  align-items: start;
  margin: 0 0 30px;
}

.mix-org__visual {
  overflow: hidden;
  border-radius: 13px;
  background: var(--mix-yellow-soft);
  aspect-ratio: 16 / 9;
}

.mix-org__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mix-org__no-image {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: var(--mix-yellow);
  letter-spacing: .18em;
}

.mix-org__introduction {
  min-width: 0;
  align-self: start;
}

.mix-org__intro-text {
  color: var(--mix-brown);
  font-size: 14px;
  line-height: 1.95;
}

.mix-org__intro-text > *:first-child { margin-top: 0; }
.mix-org__intro-text > *:last-child { margin-bottom: 0; }

/* 3カラム画像：16:9でトリミング */
.mix-org__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 38px;
}

.mix-org__gallery-item {
  min-width: 0;
  margin: 0;
}

.mix-org__gallery-image-wrap {
  overflow: hidden;
  border: 1px solid var(--mix-border);
  border-radius: 12px;
  background: var(--mix-cream);
  aspect-ratio: 16 / 9;
}

.mix-org__gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .25s ease;
}

.mix-org__gallery-item:hover .mix-org__gallery-image {
  transform: scale(1.025);
}

.mix-org__gallery-caption {
  margin-top: 9px;
  color: var(--mix-brown);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

/* 基本情報：白65% */
.mix-org__basic {
  margin: 0 0 38px;
  padding: 24px 26px;
  border: 1px solid var(--mix-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, .65);
}

.mix-org__section-title,
.mix-org__heading {
  margin: 0 0 16px !important;
  padding: 0 0 8px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--mix-yellow) !important;
  background: none !important;
  color: var(--mix-brown) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.mix-org__section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mix-org__section-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--mix-yellow);
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.mix-org__basic-list { margin: 0; }

.mix-org__basic-row {
  display: grid;
  grid-template-columns: minmax(145px, 30%) minmax(0, 1fr);
  border-top: 1px solid var(--mix-line);
}

.mix-org__basic-row:first-child { border-top: 0; }

.mix-org__basic-row dt,
.mix-org__basic-row dd {
  margin: 0;
  padding: 14px 8px;
}

.mix-org__basic-row dt {
  color: var(--mix-brown);
  font-size: 13px;
  font-weight: 700;
}

.mix-org__basic-row dd {
  color: var(--mix-brown);
  font-size: 13px;
  line-height: 1.75;
}

.mix-org__basic-row a {
  color: var(--mix-brown);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.mix-org__sns {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mix-org__sns a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid var(--mix-border);
  border-radius: 999px;
  background: rgba(251, 247, 239, .65);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

/* 詳細情報：白65% */
.mix-org__details { margin-bottom: 40px; }

.mix-org__heading {
  display: block;
}

.mix-org__detail-list {
  display: grid;
  gap: 10px;
}

.mix-org__detail-row {
  display: grid;
  grid-template-columns: minmax(140px, 24%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #eee0c7;
  border-radius: 10px;
  background: rgba(255, 255, 255, .65);
}

.mix-org__detail-label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 15px 14px;
  background: rgba(251, 247, 239, .65);
}

.mix-org__detail-label h3 {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: var(--mix-brown) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.mix-org__detail-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mix-yellow);
}

.mix-org__detail-icon::before,
.mix-org__detail-icon::after {
  content: "";
  position: absolute;
  background: #fff;
}

.mix-org__detail-icon--people::before {
  width: 15px; height: 8px; border-radius: 8px 8px 4px 4px; bottom: 8px;
}
.mix-org__detail-icon--people::after {
  width: 7px; height: 7px; border-radius: 50%; top: 7px;
}
.mix-org__detail-icon--calendar::before {
  width: 16px; height: 14px; border: 2px solid #fff; border-radius: 2px; background: transparent;
}
.mix-org__detail-icon--calendar::after {
  width: 12px; height: 2px; top: 11px;
}
.mix-org__detail-icon--person::before {
  width: 8px; height: 8px; border-radius: 50%; top: 7px;
}
.mix-org__detail-icon--person::after {
  width: 14px; height: 9px; border-radius: 8px 8px 4px 4px; bottom: 7px;
}
.mix-org__detail-icon--note::before {
  width: 14px; height: 16px; border: 2px solid #fff; border-radius: 2px; background: transparent;
}
.mix-org__detail-icon--note::after {
  width: 8px; height: 2px; transform: rotate(-40deg);
}

.mix-org__detail-content {
  min-width: 0;
  padding: 15px 18px;
  color: var(--mix-brown);
  font-size: 13px;
  line-height: 1.8;
}

.mix-org__detail-content > *:first-child { margin-top: 0; }
.mix-org__detail-content > *:last-child { margin-bottom: 0; }

@container (max-width: 700px) {
  .mix-org__hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mix-org__gallery { gap: 12px; }
  .mix-org__gallery-caption { font-size: 11px; }

  .mix-org__basic-row {
    grid-template-columns: 135px minmax(0, 1fr);
  }

  .mix-org__detail-row {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .mix-org__detail-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .mix-org__catchcopy {
    font-size: 23px !important;
    margin-bottom: 20px !important;
  }

  .mix-org__hero {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 26px;
  }

  .mix-org__gallery {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .mix-org__gallery-caption { font-size: 13px; }

  .mix-org__basic { padding: 21px 17px; }

  .mix-org__basic-row,
  .mix-org__detail-row {
    grid-template-columns: 1fr;
  }

  .mix-org__basic-row { padding: 11px 0; }

  .mix-org__basic-row dt,
  .mix-org__basic-row dd {
    padding: 3px 0;
  }

  .mix-org__detail-label { padding: 12px 14px; }
  .mix-org__detail-content { padding: 15px 16px; }
}

/* v0.6.0：団体・施設・行政の共通表示 */
.mix-org__terms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
}

.mix-org__term-separator {
  display: inline-block;
  margin: 0 2px;
}

/* サービス内容 */
.mix-org__detail-icon--service::before {
  width: 16px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 3px;
  background: transparent;
}
.mix-org__detail-icon--service::after {
  width: 8px;
  height: 2px;
  box-shadow: 0 -4px 0 #fff, 0 4px 0 #fff;
}

/* 相談できること */
.mix-org__detail-icon--consultation::before {
  width: 17px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 6px;
  background: transparent;
  top: 7px;
}
.mix-org__detail-icon--consultation::after {
  width: 6px;
  height: 6px;
  border-left: 2px solid #fff;
  transform: rotate(-35deg);
  bottom: 6px;
  left: 10px;
  background: transparent;
}

/* 手続き */
.mix-org__detail-icon--procedure::before {
  width: 14px;
  height: 17px;
  border: 2px solid #fff;
  border-radius: 2px;
  background: transparent;
}
.mix-org__detail-icon--procedure::after {
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  background: transparent;
}
