@charset "UTF-8";
/* CSS Document */
/* ===== 右下固定パネル（Smart, Simple, Accessible） ===== */ :root {
  /* サイトのブランドに合わせて調整 */
  --ict-accent: #D52525; /* コーポレートの赤 */
  --ict-text: #333;
  --ict-bg: #fff;
  --ict-shadow: 0 12px 32px rgba(0, 0, 0, .18);
  --ict-radius: 14px;
}
.ict-floating {
  position: fixed;
  /*  right: clamp(5px, 1vw, 10px);*/
  top: clamp(190px, 2vw, 20px);
  right: 0;
  width: min(300px, 92vw);
  background: var(--ict-bg);
  color: var(--ict-text);
  border-radius: var(--ict-radius);
  box-shadow: var(--ict-shadow);
  z-index: 2147483647; /* 最前面に */
  font-family: inherit;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  text-align: center;
}
.ict-floating__header {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 1px 14px 0;
}
.ict-floating img.qr {
  height: 150px;
  margin: 0 auto 15px;
}
.ict-floating h2 {
  font-size: 18px;
  margin: 0 auto;
  display: block;
  width: 100%;
  height: 40px;
  background-color: #F1DE80;
  color: #000;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}
.ict-floating__badge {
  flex: none;
  display: inline-block;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ict-accent);
  background: #fff4f4;
  border: 1px solid currentColor;
  border-radius: 999px;
  letter-spacing: .02em;
}
.ict-floating__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.ict-floating__lead {
  margin: 6px 14px 4px;
  font-size: 16px;
  text-align: center;
  color: var(--ict-accent);
  font-weight: bold;
}
.ict-floating__grid {
  list-style: none;
  margin: 4px 12px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
/* Buttons */
.ict-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  width: 100%;
  padding: 12px 10px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  transition: transform .04s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease, border-color .12s ease;
  will-change: transform;
  outline-offset: 2px;
}
.ict-btn:active {
  transform: translateY(1px);
}
.ict-btn--primary {
  background: var(--ict-accent);
  color: #fff;
  border-color: var(--ict-accent);
}
.ict-btn--primary:hover {
  filter: brightness(1.05);
}
.ict-btn--secondary {
  background: #fff;
  color: var(--ict-accent);
  border-color: var(--ict-accent);
}
.ict-btn--secondary:hover {
  background: #fff7f7;
}
.ict-btn--primary-ghost {
  background: #ffecec;
  color: var(--ict-accent);
  border-color: #ffd9d9;
}
.ict-btn--primary-ghost:hover {
  background: #ffe2e2;
}
.ict-btn--ghost {
  background: #f6f7f8;
  color: var(--ict-text);
  border-color: #e5e7ea;
}
.ict-btn--ghost:hover {
  background: #eef0f2;
}
/* 印刷時は非表示 */
@media print {
  .ict-floating {
    display: none !important;
  }
}
/* 低モーション環境 */
@media (prefers-reduced-motion: reduce) {
  .ict-btn {
    transition: none;
  }
}
.ict_kengaku_pdf {
  width: 990px;
  margin: 0 auto;
}
.ict_kengaku_pdf:last-child {
  margin: 0 auto 50px;
}
.btn_googleform {
  display: block;
  width: 100%;
  height: 80px;
  background-color: #2f9f5e;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 80px;
}
.btn_googleform:hover {
  opacity: 0.7;
  transition: 0.5s;
}
.ict_kengaku_pdf a img {
  width: 900px;
  height: auto !important; /* ←ここがポイント */
  display: block;
  margin: 0 auto;
}
.ict_kengaku_pdf:last-child {
  margin: 0 auto 50px;
}
@media (max-width: 979px) {
  .ict_kengaku_pdf {
    width: calc(600/750 * 100vw);
    margin: 0 auto;
  }
}
@media (max-width: 979px) {
  .ict-floating {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto !important;   /* ← 上固定を必ず解除 */
    width: 100%;
    transform: translateY(0);
    background: var(--ict-bg);
    color: var(--ict-text);
    border-radius: var(--ict-radius);
    box-shadow: var(--ict-shadow);
    z-index: 2147483647; /* 最前面に */
    font-family: inherit;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
    text-align: center;
  }
}