@charset "utf-8";
/* CSS Document */
.boxwrap2 .leftbox .imgbox {
  width: 100%;
}
/* ===== commentbox scoped ===== */
.commentbox {
  background: #fff;
  padding: clamp(20px, 3vw, 32px);
  margin-top: clamp(20px, 3vw, 40px);
}
/* 見出し行 */
.commentbox .comment-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}
/* 右に伸びる横線 */
.commentbox .comment-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #222;
  margin-left: 10px;
}
/* アイコン画像 */
.commentbox .icon {
  flex: 0 0 auto;
}
.commentbox .icon img {
  width: 28px; /* 好きなサイズに */
  height: auto;
  display: block;
}
/* タイトル */
.commentbox .label {
  margin: 0;
  font-size: 16px;
  letter-spacing: .1em;
  white-space: nowrap;
}
/* 本文（default_txt2を活かす） */
.commentbox .default_txt2 {
  margin: 0;
  line-height: 1.9;
  color: #333;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}