@charset "utf-8";

/* ＝＝＝＝ 全体ベース（アクセシビリティ考慮） ＝＝＝＝ */
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.7;
  background-color: #f4f6f9;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  text-decoration: none;
  color: inherit;
}
.fade {
  transition: 0.3s ease-in-out;
}
.fade:hover {
  opacity: 0.7;
}

/* ＝＝＝＝ ヘッダー ＝＝＝＝ */
.topbar {
  width: 100%;
  background-color: #014099;
  height: 6px;
}
.header-hero {
  background: url('https://www.his-barrierfree.com/LP/special/images/back_202603.jpg') center/cover no-repeat fixed;
  text-align: center;
  padding: 60px 20px;
}
.header-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 40px 20px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.header-hero .badge {
  display: inline-block;
  background-color: #ff6600;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 20px;
}
.header-hero h1 {
  font-size: 28px;
  margin: 0 0 20px 0;
  font-weight: bold;
  line-height: 1.5;
  color: #014099;
}
.hero-date {
  display: block;
  font-size: 18px;
  margin-top: 8px;
  font-weight: 600;
  color: #333;
}
.header-hero p {
  font-size: 16px;
  margin: 0;
  color: #333;
  font-weight: 500;
}

/* ＝＝＝＝ メインコンテンツ ＝＝＝＝ */
.content-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.intro-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 25px;
  background-color: #f0f7ff;
  border-radius: 8px;
  border-left: 5px solid #014099;
}
.intro-text a {
  color: #014099;
  text-decoration: underline;
  font-weight: bold;
}

.section_title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 30px 0;
  padding-bottom: 10px;
  border-bottom: 3px solid #ff6600;
  color: #333;
}

/* 商品グリッド */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 18px;
  color: #fff;
  margin: 0;
  padding: 15px 20px;
  font-weight: bold;
  line-height: 1.5;
  min-height: 140px; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}
.product-title.domestic {
  background-color: #5db92e;
}
.product-title.overseas {
  background-color: #014099;
}
.product-title span {
  display: block;
  color: #ffff00;
  font-size: 15px;
  margin-bottom: 5px;
}

.product-img-wrap {
  display: flex;
  width: 100%;
  height: 200px;
  background-color: #eee;
}
.product-img-wrap img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.p01 {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}
.p01 span {
  color: #cc0000;
  font-weight: bold;
  display: inline-block;
  margin-top: 5px;
}

.price-wrap {
  text-align: right;
  border-top: 1px dashed #ccc;
  padding-top: 15px;
  margin-top: auto;
  background-color: #fafafa;
  margin: 0 -20px -20px -20px;
  padding: 15px 20px 20px 20px;
}
.p03 {
  color:#cc0000;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
.p03 span {
  font-size: 16px;
}
.p04 {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
}

.btn {
  display: block;
  text-align: center;
  padding: 16px;
  background: #ff6600;
  color: #ffffff;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
  box-shadow: 0 4px 0 #cc5200;
  transition: 0.2s;
  position: relative;
}
.btn::after {
  content: '＞';
  position: absolute;
  right: 20px;
  font-weight: bold;
}
.btn:hover {
  background: #ff771a;
  transform: translateY(2px);
  box-shadow: 0 2px 0 #cc5200;
}

/* ＝＝＝＝ フッター部分 ＝＝＝＝ */
.footer-wrapper {
  background-color: #fff;
  padding-top: 40px;
  border-top: 4px solid #014099;
}
.footer-contact {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-note {
  width: 100%;
  color: #cc0000;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 30px;
  padding: 15px;
  background-color: #fff0f0;
  border-radius: 5px;
}

.contact-left {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}
.contact-left img {
  max-width: 300px;
  margin-bottom: 15px;
}
.contact-address {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.contact-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.contact-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  background-color: #ffffff;
  border: 1px solid #999;
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.contact-action-btn:hover {
  background-color: #f8f8f8;
  transform: translateY(1px);
  box-shadow: 0px 0px 2px rgba(0,0,0,0.1);
}
.contact-action-btn.blue-text {
  color: #014099;
}
.contact-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: currentColor;
}

.link2 {
  background-color: #014099;
  padding: 20px;
  text-align: center;
}
.link {
  background-color: #01bbe6;
  padding: 30px 20px;
  text-align: center;
}
.linktxt {
  color: #FFFFFF;
  font-size: 13px;
  line-height: 2.4;
  margin: 0;
}
.linktxt strong, .linktxt b {
  font-size: 15px;
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #FFDE36;
}
a.link01 {
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}
a.link01:hover {
  text-decoration: underline;
  color: #FFDE36;
}
.fd {
  text-align: center;
  font-size: 13px;
  background-color: #222;
  color: #ccc;
  padding: 20px;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  opacity: 0.9;
  transition: 0.3s;
  cursor: pointer;
}
.pagetop:hover {
  opacity: 1;
  transform: scale(1.05);
}
.pagetop img {
  width: 60px;
}


/* ロゴコンテナのスタイル */
.header-hero .header-logo {
  display: inline-block;
  max-width: 280px; /* オレンジ枠と同じくらいのサイズ */
  width: 100%;
  margin: 0 auto 20px;
}
.header-hero .header-logo img {
  width: 100%;
  height: auto;
  display: block;
}
/* テキスト版のバッジは非表示にする */
.header-hero .badge {
  display: none !important;
}

これで、白背景にロゴが綺麗に収まるようになります。