/* =====================
Tablet Common Layout
===================== */

body {
  padding-top: 64px;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.section-head {
  width: 100%;
  margin: 0 0 40px;
  text-align: center;
}

.section-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.4;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 20px auto 30px;
  background: var(--color-red);
}

.section-lead {
margin: 0 auto;
color:#4d5d6c;
font-size: 15px;
text-align: left;
}

.section-lead br{
display: none;
}

.section-title-row {
display: inline-flex;
align-items: flex-start;
justify-content: center;
gap: 15px;
letter-spacing: 0.04em;
}

.section-head--icon .header-icon {
width: 32px;
flex: 0 0 auto;
margin-top: 2px;
}

.section-title span {
color: #1e5aa6;
font-weight: 700;
}


/* =====================
  Header
===================== */


.site-header {
  position: fixed;
  width: 100%;
  height: 64px;
  background-color: #fff;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #edf1f5;
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  height: 100%;
}

.header-main .logo {
  box-sizing: border-box;
  flex: 0 0 190px;
  width: 190px;
  margin: 0;
  height: 100%;
  padding: 15px 0 0;
}

.header-main .logo a {
  display: block;
}

.header-main .logo a:hover {
  opacity: 0.6;
}

.header-main .logo img {
  width: 100%;
  height: auto;
  margin: 0;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: flex;
  order: -1;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #edf1f5;
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #12263A;
  transition: .25s;
}

.nav-toggle-label span {
  position: relative;
}

.nav-toggle-label span::before {
  position: absolute;
  top: -7px;
}

.nav-toggle-label span::after {
  position: absolute;
  top: 7px;
}

.nav-toggle:checked + .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::after {
  top: 0;
  transform: rotate(-45deg);
}

.g-nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #edf1f5;
  box-shadow: 0 16px 40px rgba(18,38,58,.12);
  z-index: 1001;
}

.g-nav ul {
  display: block;
  height: auto;
  padding: 10px 18px;
  list-style: none;
  margin: 0;
}

.g-nav li {
  border-bottom: 1px solid #edf1f5;
}

.g-nav li:last-child {
  border-bottom: 0;
}

.g-nav a {
  display: block;
  color: #12263A;
  padding: 13px 4px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.g-nav a:hover {
  color: #1e5aa6;
}

.g-nav a::after {
  display: none;
}

.nav-toggle:checked ~ .g-nav {
  display: block;
}

.header-cta-area {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  margin-left: auto;
}

.header-cta-area .btn-cta-red {
  display: inline-block;
  text-align: center;
  padding: 9px 16px;
}

  
/* =====================
  Footer
===================== */


.site-footer{
  background:linear-gradient(135deg,#123a63 0%,#0a1723 55%,#020407 100%);
  color:#b8c4d0;
  padding:64px 0 20px;
  font-size:0.9rem;
}
.footer-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 20px;
  width:90%;
  max-width:900px;
  margin:0 auto 30px;
}

.footer-info{
  grid-column:1 / -1;
  padding-bottom: 40px;
}

.footer-services{
  grid-column:1;
}

.footer-nav{
  grid-column:2;
}

.footer-logo img{
  width:230px;
  margin-bottom:20px;
}

.footer-title{
  color:#fff;
  font-size:1.05rem;
  margin-bottom:18px;
  padding-bottom:6px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.company-tag{
  margin-bottom:10px;
  font-size:14px;
  font-weight:700;
  color:#eef3f8;
}

.footer-company-note{
  margin:0 0 18px;
  color:#d6dee7;
  font-size:14px;
  line-height:1.8;
}

.footer-address{
  line-height:1.8;
  color:#b8c4d0;
  font-style:normal;
  margin-bottom:16px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.16);
}

.footer-contact-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:stretch;
}

.footer-free-call{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:2px;
  order:2;
  min-height:78px;
  padding:14px 18px;
  border:1px solid rgba(255,255,255,.34);
  border-radius:6px;
  background:rgba(255,255,255,.08);
  color:#fff;
  width:100%;
}

.footer-free-call span{
  color:#f0c24a;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
}

.footer-free-call strong{
  color:#fff;
  font-size:25px;
  line-height:1.2;
  letter-spacing:.04em;
}

.footer-free-call-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-free-call-row span{
  color:#fff;
  font-size:inherit;
  font-weight:inherit;
  letter-spacing:inherit;
}

.footer-free-call:hover{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.58);
  color:#fff;
}

.footer-contact-sub{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  order:1;
  min-height:0;
  padding:0;
  background:transparent;
  color:#c8d3de;
  font-size:14px;
  line-height:1.5;
}

.footer-contact-sub span:first-child{
  color:#b8c4d0;
  font-size:13px;
}

.footer-contact-sub span:last-child{
  color:#fff;
  font-size:17px;
  font-weight:700;
}

.service-desc{
  font-size:14px;
  line-height:1.8;
  margin-bottom:15px;
}

.service-list{
  padding-left:18px;
}

.service-list li{
  margin-bottom:6px;
}

.external-link{
  display:inline-block;
  margin-top:15px;
  padding:11px 18px;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  border:1px solid rgba(255,255,255,.45);
  border-radius:4px;
  background:rgba(255,255,255,.08);
  transition:.3s;
}

.external-link:hover{
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.7);
  color:#fff;
}

.area-info p{
  font-size:14px;
  line-height:1.8;
}

.copyright{
  text-align:center;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,0.08);
  color:#7f8c99;
  font-size:12px;
}


/* =====================
  Top Page
===================== */


.hero {
  min-height: 500px;
  background:url('../img/key_bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-content {
  margin-left: 7%;
  max-width:800px;
}

.main-copy {
  font-family: 'Shippori Mincho', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  background: linear-gradient(to bottom, #aaa 20%, #fff 60%, #888 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.main-copy br{
  display: none;
}

.sub-copy {
  font-size: 1.2rem;
  margin-bottom: 40px;
  border-left: 3px solid var(--color-red);
  padding-left: 20px;
}

.wall-of-5min {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,0,0,0.5);
  padding:8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  width: fit-content;
}

.wall-of-5min .alert {
  font-size: 1.75rem;
  color: var(--color-red);
  font-weight: 800;
  border-right: 2px solid #4D5D6C;
  padding-right: 16px;
}

/* Security Awareness */

.security-awareness{
    padding:60px 0;
  background:#edf1f5;
}

.stats-box {
  margin:40px 0 0;
  display:grid;
  gap:20px;
}

.stats-alert-container {
  display: grid;
  grid-template-columns:3.5fr 6.5fr;
  gap:30px;
  align-items: center;
  padding:20px;
  background:#fff;
  border-radius:8px;
}

.stats-image {
  position: relative;
  height: 320px;
  overflow:hidden;
  border-radius:8px;
}

.stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(12%) brightness(.96) contrast(1.02);
}

.warning-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-red);
  color: #fff;
  padding: 4px 14px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.15em;
  z-index: 3;
}

.stats-content .label {
  display: inline-block;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background:var(--color-red-soft);
  padding: 3px 12px;
  margin-bottom: 18px;
}

.stats-content .main-point {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28;
  margin:0 0 24px;
  color:#12263A;
}

.stats-content .highlight {
  font-size:32px;
  color: var(--color-red);
}

.stats-content .stats-desc {
  font-size:15px;
  color: #4d5d6c;
  border-left: 3px solid var(--color-red);
  padding-left: 18px;
  margin:0;
}

.stats-graph-panel{
  padding:30px;
  background:#fff;
  border-radius:8px;
}

.stats-graph-copy span{
  display:inline-block;
  padding: 3px 12px;
  background:var(--color-red-soft);
  color:var(--color-red);
  font-size:14px;
  font-weight:700;
  letter-spacing:.08em;
  margin-bottom:12px;
}

.stats-graph-copy h3{
  color:#12263A;
  font-size:28px;
  line-height:1.45;
  margin:0 0 16px;
}

.stats-graph-copy h3 br{
  display: none;
}

.stats-graph-copy p{
  color:#4D5D6C;
  font-size:15px;
  margin:0 0 40px;
}

.stats-graph-copy p br{
  display: none;
}

.stats-graph-image{
  background:transparent;
  padding:0;
}

.stats-graph-image img{
  width:100%;
  display:block;
}


/* compare-section */


.compare-section {
  background:#fff;
    padding:60px 0;
}

.compare-header {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.section-title-row .section-title br{
display: none;
}

.compare-header .section-title span {
  color:#1e5aa6;
  font-weight:700;
}

.compare-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  margin:40px 0 60px;
}

.product-transition{
  margin-top:16px;
}

.compare-card {
  background:#edf1f5;
  border-radius:10px;
  box-shadow:none;
  overflow:hidden;
}

.compare-card:first-child{
  background:#fff7f8;
}

.compare-card:nth-child(2){
  background:#f2f6fb;
}

.compare-image {
  position:relative;
}

.compare-image img {
  width:100%;
  display:block;
}

.compare-image>span{
  width:auto;
  min-width:150px;
  padding:6px 14px;
  color:#fff;
  font-size:13px;
  font-weight:500;
  text-align:center;
  border-radius:20px;
  position:absolute;
  top:14px;
  left:14px;
}

.label.gray { background:#4D5D6C; }
.label.blue { background:#1e5aa6; }

.compare-body {
  padding:24px 20px 28px;
  text-align:center;
}

.compare-body h3 {
  display:flex;
  align-items:baseline;
  justify-content:center;
  width:auto;
  margin:0 auto 20px;
  padding-bottom:8px;
}

.big {
  font-size:56px;
  font-weight:700;
  margin-right:8px;
  line-height:1;
}

.compare-body h3 span:not(.big) {
  font-size:20px;
  line-height:1.3;
}

.compare-title.red {
  color:var(--color-red);
  border-bottom:2px solid var(--color-red);
}

.compare-title.red .big {
  color:var(--color-red);
}

.compare-title.blue {
  color:#1e5aa6;
  border-bottom:2px solid #1e5aa6;
}

.compare-title.blue .big {
  color:#1e5aa6;
}

.compare-text {
  font-size:14px;
  text-align:left;
}

/* product card */

.product-highlight-inner {
  background:#fff;
  border:1px solid #1e5aa6;
  border-radius:12px;
  margin:40px 0;
  padding:0 0 40px;
}

.product-highlight-inner>h3{
  margin:0 0 40px;
  padding:14px 0;
  background:#1e5aa6;
  color:#fff;
  font-size:20px;
  font-weight:700;
  text-align:center;
  line-height:1;
  border-radius:12px 12px 0 0;
}

.product-highlight-inner>h3>span{
  margin-left:10px;
  font-size:15px;
}

/* film compare */

.film-compare {
  display:flex;
  gap:36px;
  width:90%;
  margin:0 auto 30px;
  position:relative;
}

.compare-item {
  flex:1;
  text-align:center;
  position:relative;
}

.badge {
  position:absolute;
  top:12px;
  left:12px;
  margin:0;
  padding:4px 16px;
  font-size:13px;
  border-radius:20px;
  background:#4D5D6C;
  color:#fff;
  z-index:2;
}

.badge.green {
  background:#1e5aa6;
}

.compare-arrow{
  position:absolute;
  top:40%;
  left:50%;
  transform:translate(-50%,-60%);
  display:inline-block;
  padding:12px 28px 12px 14px;
  font-size:14px;
  font-weight:700;
  color:#fff;
  background:#1e5aa6;
  clip-path:polygon(0 0,85% 0,100% 50%,85% 100%,0 100%);
  text-align:center;
  line-height:1.4;
  z-index:3;
}

.compare-item .caption{
  color:#4D5D6C;
  font-size:15px;
  text-align:left;
  line-height:1.7em;
}

/* features */

.feature-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  width:90%;
  margin:0 auto;
  padding:0 0 30px;
}

.feature-box-item {
  background:#fff;
  border:1px solid #edf1f5;
  border-radius:8px;
  padding:24px 20px;
  text-align:center;
  box-shadow:0 8px 24px rgba(18,38,58,.08);
}

.feature-box-item img {
  width:100px;
  margin-bottom:10px;
}

.feature-box-item h4 {
  font-size:16px;
  font-weight:700;
  margin:0 0 8px;
}

.feature-box-item p {
  font-size:13px;
  color:#4D5D6C;
  line-height:1.6;
  margin:0;
  text-align:left;
}

/* ベネフィット系（災害・UV） */

.feature-box-item.highlight h4 {
  color:var(--color-red);
}

.comfort-banner{
  width:90%;
  margin:20px auto 0;
  padding:0;
  background:#fff;
  border:1px solid #dce6ee;
  border-left:5px solid #1e5aa6;
  border-radius:8px;
  overflow:hidden;
}

.comfort-banner-copy{
  padding:30px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}

.comfort-banner-image{
  height:280px;
}

.comfort-banner-image img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
}

.comfort-banner span{
  display:block;
  color:#1e5aa6;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  margin-bottom:8px;
}

.comfort-banner h3{
  margin:0 0 18px;
  color:#12263A;
  font-size:20px;
  line-height:1.5;
}

.comfort-banner p{
  margin:0;
  color:#566676;
  font-size:14px;
}

.comfort-note{
  display:block;
  margin:4px 0 14px !important;
  padding:14px 10px 14px 20px;
  color:#33495f !important;
  font-size:16px !important;
  font-weight:700;
  line-height:1.6 !important;
  background:#eef4fb;
  border-radius:8px;
}

.comfort-note + p{
  margin:14px 0;
}

.comfort-banner-link{
  margin:14px 0;
  width:136px;
  padding:10px 20px;
  border-radius:4px;
  background:#2d6fbb;
  color:#fff;
  font-weight:700;
  font-size:14px;
  text-align: center;
  transition:background-color .3s ease, box-shadow .3s ease;
}

.comfort-banner-link:hover{
  background:#1e5aa6;
  color:#fff;
  box-shadow:0 0 10px rgba(30, 90, 166, .24);
}

/*  Benefits Section */

#benefits {
  background:url('../img/interface/bg-window-blue.png') center/cover no-repeat;
    padding:60px 0;
  position: relative;
  overflow: hidden;
}

#benefits .section-title {
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin:0 0 60px;
}

.benefit-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:0 16px 40px rgba(18,38,58,.12);
  transition: none;
  border-radius:10px;
}

.benefit-image {
  width: 100%;
  height:180px;
  background: #222;
  overflow: hidden;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.benefit-content {
  padding: 30px 20px 30px 22px;
  flex-grow: 1;
}

.benefit-content h3 {
  font-size: 22px;
  color: #001a33;
  margin:0 0 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  line-height:1em;
}

.benefit-content h3::before {
  content: "";
  width: 4px;
  height: 1.2em;
  background: #4682B4;
  margin-right: 12px;
  display: inline-block;
}

.benefit-tags {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-section{
  margin:0 0 60px;
}

.trust-box{
  display:flex;
  gap:34px;
  align-items:center;
  background:linear-gradient(135deg,#fff 0%,#f4ead8 100%);
  padding:24px 20px 24px 24px;
  border-radius:8px;
  box-shadow:0 16px 40px rgba(18,38,58,.12);
}

.trust-image{
  flex:1;
}

.trust-image img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
}

.trust-content{
  flex:1;
}

.trust-title{
  font-size:20px;
  margin:0 0 16px;
}

.trust-text{
  padding:0 0 16px;
  font-size:14px;
  line-height:1.7;
  color:#4D5D6C;
  margin-bottom:16px;
  border-bottom:1px solid rgba(0,0,0,0.2);
}

.trust-mark{
  display:flex;
  align-items:center;
  gap:12px;
}

.trust-mark img{
  width:48px;
}

.trust-mark p{
  font-size:13px;
  color:#4D5D6C;
  margin:0;
}

/* action_btn */

.benefit-tags span {
  background: #f0f4f8;
  color: #4682B4;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #d1d9e0;
}

/* info-navigation */

.info-navigation{
  background:#222;
}

.info-flex{
  display:flex;
}

.info-gate{
  flex:1;
  padding:60px 5%;
  position:relative;
  overflow:hidden;
  color:#fff;
  display:flex;
  align-items:center;
}

/* 背景（動く） */

.info-gate::before{
  content:"";
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1);
  transition:transform .7s ease;
  will-change:transform;
  z-index:0;
}

.clime-data-gate::before{
  background-image:url('../img/interface/stats_bg.png');
}

.area-gate::before{
  background-image:url('../img/interface/area_bg.png');
}

/* オーバーレイ */

.info-gate::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(15,35,80,0.7) 0%,
    rgba(0,30,60,0.2) 70%
  );
  z-index:1;
}

/* hover */

.info-gate:hover::before{
  transform:scale(1.06);
}

.info-gate::after{
  opacity:1;
}

.info-gate:hover::after{
  background:linear-gradient(
    to right,
    rgba(15,35,80,0.7) 0%,
    rgba(0,30,60,0.2) 70%
  );
}

.gate-content{
  position:relative;
  z-index:2;
  max-width:420px;
}

.sub-title{
  font-size:12px;
  letter-spacing:2px;
  opacity:.7;
}

.gate-title{
  font-size:26px;
  margin:15px 0 20px;
  font-weight:700;
  line-height:1.4;
}

.gate-content p{
  font-size:15px;
  line-height:1.8;
  opacity:.9;
}

.gate-btn{
  display:inline-block;
  margin-top:25px;
  padding:10px 30px;
  border:1px solid rgba(255,255,255,0.7);
  text-decoration:none;
  color:#fff;
  font-size:14px;
  transition:.3s;
}

.gate-btn:hover{
  background:#fff;
  color:#000;
  border-color:#fff;
}


/* =====================
  News
===================== */


.news-section{
  background:#fff;
  padding:40px 0;
}

.news-heading{
  margin:0 0 30px;
}

.news-heading .product-kicker{
  padding:0 0 6px;
  color:#d4af37;
  font-size:12px;
  font-weight:400;
  letter-spacing:2px;
  border-bottom:1px solid #d4af37;
}

.news-heading h2{
  color:#12263A;
  font-size:28px;
  line-height:1.4;
  margin:0 0 20px;
}

.news-heading p{
  color:#4D5D6C;
  line-height:1;
  margin:0;
  font-size:14px;
}

.news-list{
  display:grid;
  gap:0;
  border-top:1px solid #dfe7ef;
}

.news-item{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:24px;
  padding:24px 0;
  background:transparent;
  border-bottom:1px solid #dfe7ef;
}

.news-item time{
  color:#1e5aa6;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  white-space:nowrap;
}

.news-category{
  display:inline-block;
  margin-bottom:8px;
  padding:2px 9px;
  background:#f0f4f8;
  color:#1e5aa6;
  border:1px solid #d7e4f0;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.news-item h3{
  margin:0 0 8px;
  color:#12263A;
  font-size:18px;
  line-height:1.55;
}

.news-item p{
  margin:0;
  color:#4D5D6C;
  font-size:14px;
  line-height:1.8;
  white-space:pre-wrap;
}

.news-empty{
  padding:24px 0;
  color:#667;
  font-size:14px;
  border-bottom:1px solid #dfe7ef;
}


/* =====================
  Products
===================== */


.product-hero{
  background:
    linear-gradient(90deg, rgba(18,38,58,.74) 0%, rgba(18,38,58,.52) 48%, rgba(18,38,58,.12) 100%),
    url('../img/interface/stats_bg.png') center/cover no-repeat;
  color:#fff;
  padding:100px 0;
  overflow:hidden;
}

.product-hero-inner{
  display:block;
}

.product-kicker{
  display:inline-block;
  color:#d4af37;
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  margin-bottom:14px;
}

.product-hero h1{
  font-size:30px;
  line-height:1.28;
  margin:0 0 18px;
}

.product-hero p{
  color:#dce5ee;
  font-size:16px;
  line-height:2;
  margin:0;
}

.comfort-section{
    padding:60px 0;
  background:#edf1f5;
}

.comfort-section .section-title br{
  display: none;
}

.comfort-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.comfort-card{
  background:#fff;
  border:1px solid #e1e7ee;
  border-radius:8px;
  padding:0 28px 34px;
  box-shadow:0 12px 30px rgba(15,35,80,.06);
  overflow:hidden;
}

.comfort-card-image{
  width:calc(100% + 56px);
  height:180px;
  margin:0 -28px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f2f6fb;
  position:relative;
  overflow:hidden;
}

.comfort-card-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  position:relative;
  z-index:0;
}

.comfort-card-image .comfort-card-icon{
  position:absolute;
  top:50%;
  right:24px;
  width:80px;
  height:auto;
  transform:translateY(-50%);
  object-fit:contain;
  opacity:.92;
  z-index:2;
}

.comfort-card-image.uv-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at right top, rgba(255,255,255,.58), transparent 36%),
    linear-gradient(135deg, rgba(83,210,255,.48) 0%, rgba(30,90,166,.34) 100%);
  pointer-events:none;
  z-index:1;
}

.comfort-card-image.uv-image img{
  filter:saturate(.9) brightness(1.06) contrast(.94);
}

.comfort-number{
  display:flex;
  align-items:center;
  gap:12px;
  color:#1e5aa6;
  font-family:'Shippori Mincho','Yu Mincho','Hiragino Mincho ProN',serif;
  font-size:23px;
  font-style:normal;
  font-weight:700;
  letter-spacing:.06em;
  margin-bottom:10px;
}

.comfort-number::after{
  content:"";
  display:block;
  width:42px;
  height:1px;
  background:#1e5aa6;
  opacity:.45;
}

.comfort-card h3{
  margin:0 0 14px;
  color:#12263A;
  font-size:20px;
  line-height:1.5;
}

.comfort-card p{
  margin:0;
  color:#4D5D6C;
  font-size:14px;
}

.comfort-usecase{
  margin-top:34px;
  padding:30px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.84) 52%, rgba(255,255,255,.20) 100%),
    url('../img/public.png') center/cover no-repeat;
  border-radius:8px;
  border:1px solid #dfe8f1;
}

.comfort-usecase-copy h3{
  margin:0 0 12px;
  color:#12263A;
  font-size:22px;
}

.comfort-usecase-copy p{
  margin:0 0 30px;
  color:#536170;
}

.comfort-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  list-style:none;
  padding:0;
  margin:0;
}

.comfort-tags li{
  padding:4px 12px;
  background:#f0f4f8;
  color:#4682B4;
  border:1px solid #d1d9e0;
  border-radius:20px;
  font-size:0.75rem;
  font-weight:700;
}

.product-summary{
  position:relative;
  background:#fff;
    padding:40px 0;
}

.product-summary::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:90%;
  margin:0 auto;
  height:1px;
  background:#dce4ec;
  transform:translateX(-50%);
}

.summary-card{
  margin-bottom:10px;
  background:#fff;
  border:1px solid #e1e7ee;
  border-radius:8px;
  padding:28px;
  box-shadow:0 12px 30px rgba(15,35,80,.06);
}

.summary-card:not(.primary){
  display:grid;
  grid-template-columns:78px 1fr;
  column-gap:20px;
  align-items:start;
}

.summary-card.primary{
  background:
    linear-gradient(90deg, rgba(30,90,166,.92), rgba(30,90,166,.68)),
    url('../img/reason-icon-risk.png') center/cover no-repeat;
  color:#fff;
  grid-column:1 / -1;
}

.summary-label{
  display:inline-block;
  color:#d4af37;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  margin-bottom:14px;
}

.summary-card h2,
.summary-card h3{
  margin:0 0 14px;
  line-height:1.45;
}

.summary-card:not(.primary) h3,
.summary-card:not(.primary) p{
  grid-column:2;
}

.summary-card p{
  margin:0;
  color:#4D5D6C;
}

.summary-card.primary p{
  color:#dce5ee;
}

.summary-card img{
  grid-row:1 / span 2;
  width:78px;
  height:78px;
  object-fit:contain;
  margin:0;
}

.summary-card.primary p{
  color:#dce5ee;
}

.summary-card img{
  width:78px;
  height:78px;
  object-fit:contain;
  margin-bottom:18px;
}


.reason-process{
padding:60px 0;
}

.process-list{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px;
margin:0;
padding:0;
list-style:none;
}

.process-list li,
.process-list li:nth-child(2),
.process-list li:nth-child(3),
.process-list li:nth-child(4){
position:relative;
min-width:0;
margin-right:0;
padding:20px 24px 30px;
background:#fff;
border:1px solid #dbe6f0;
border-radius:8px;
box-shadow:0 14px 34px rgba(18,38,58,.08);
z-index:auto;
}

.process-list li:nth-child(2){
background:#f7fbff;
}

.process-list li:nth-child(3){
background:#f2f8ff;
}

.process-list li:nth-child(4){
background:#eaf2fb;
}

.process-list li::after,
.process-list li:not(:last-child)::after{
display:none;
}

.process-list span{
display:flex;
align-items:center;
gap:12px;
color:#1e5aa6;
font-size:13px;
font-weight:800;
letter-spacing:.12em;
margin-bottom:16px;
}

.process-list span::after{
content:"";
display:block;
width:56px;
height:1px;
background:#1e5aa6;
opacity:.45;
}

.process-list strong{
display:block;
font-size:18px;
line-height:1.55;
margin-bottom:10px;
overflow-wrap:normal;
}

.process-list p{
font-size:14px;
line-height:1.8;
margin:0;
}

/* product lineup */

.product-lineup-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
margin:0 0 40px;
}

.lineup-intro {
width: 100%;
margin: 0 auto 50px;
padding: 40px 0 0;
border-top: 1px solid #cdd4db;
text-align: center;
}

.lineup-intro h3 {
margin: 0 0 30px;
font-size: 24px;
font-family: 'Shippori Mincho','Yu Mincho','Hiragino Mincho ProN',serif;
font-weight: 700;
line-height: 1;
}

.lineup-intro p {
margin: 0;
color: #4d5d6c;
font-size: 16px;
}

.lineup-card{
  position:relative;
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid #cdd8e4;
  border-radius:8px;
  box-shadow:0 12px 30px rgba(15,35,80,.07);
  overflow:hidden;
}

.lineup-card-image{
  position:relative;
  height:180px;
  margin:0;
  overflow:hidden;
  background:#eaf2fb;
}

.lineup-card-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.lineup-card-image span{
  position:absolute;
  left:0;
  top:0;
  z-index:2;
  min-width:132px;
  padding:7px 18px 7px 16px;
  background:#123a63;
  color:#fff;
  font-size:13px;
  font-weight:800;
  line-height:1.35;
  letter-spacing:.08em;
  border-radius:0 0 18px 0;
}

.product-lineup-grid .lineup-card:nth-child(1){
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #b8872d, #e7c66a) border-box;
}

.product-lineup-grid .lineup-card:nth-child(1) .lineup-card-image span{
  background:linear-gradient(135deg, #b8872d, #e7c66a);
  color:#fff;
  box-shadow:0 6px 16px rgba(184, 135, 45, .28);
}

.product-lineup-grid .lineup-card:nth-child(2){
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #12345b, #1e5aa6) border-box;
}

.product-lineup-grid .lineup-card:nth-child(2) .lineup-card-image span{
  background:linear-gradient(135deg, #12345b, #1e5aa6);
  color:#fff;
}

.product-lineup-grid .lineup-card:nth-child(3){
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #6fb7d8, #bfe7f5) border-box;
}

.product-lineup-grid .lineup-card:nth-child(3) .lineup-card-image span{
  background:linear-gradient(135deg, #6fb7d8, #bfe7f5);
  color:#0f3f5f;
}

.lineup-card-body{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:28px;
}

.lineup-card-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  margin-bottom:18px;
}

.lineup-card h3{
  min-width:0;
  margin:0;
  color:#12263A;
  font-size:clamp(22px,1.8vw,27px);
  line-height:1.2;
  letter-spacing:.06em;
}

.lineup-thickness{
  display:inline-block;
  flex:0 0 auto;
  margin:2px 0 0;
  padding:7px 12px;
  background:#f0f4f8;
  color:#12263A;
  border-radius:4px;
  font-size:12px;
  font-weight:800;
}

.lineup-card-body>p:not(.lineup-thickness):not(.lineup-badge){
  color:#4D5D6C;
  margin:0 0 20px;
  font-size: 15px;
}

.lineup-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 0 20px;
  padding:7px 14px;
  background:#f0f4f8;
  color:#1e5aa6;
  border:1px solid #d7e4f0;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  text-align:center;
}

.lineup-cp-mark{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:0 0 20px;
  padding:10px 14px;
  background:#fffaf0;
  border:1px solid #e4cf86;
  border-radius:6px;
  color:#8a6d1f;
  font-size:12px;
  font-weight:800;
  text-align:center;
}

.lineup-cp-mark img{
  width:42px;
  height:auto;
  flex:0 0 auto;
}

.lineup-card dl{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.lineup-card dl div{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-end;
  padding-top:14px;
  border-top:1px solid #e1e7ee;
}

.lineup-card dt{
  color:#4D5D6C;
  font-size:13px;
}

.lineup-card dd{
  margin:0;
  color:#12263A;
  font-size:18px;
  font-weight:800;
  text-align:right;
  line-height:1.3;
}

.lineup-usecase{
  display:flex;
  align-items:center;
  gap:14px;
  margin:auto -28px -28px;
  padding:18px 28px;
  background:#edf1f5;
}

.lineup-usecase-icon{
  position:relative;
  width:42px;
  height:42px;
  flex:0 0 auto;
  overflow:hidden;
}

.lineup-usecase-icon img{
  position:absolute;
  top:50%;
  left:50%;
  width:76px;
  max-width:none;
  height:auto;
  transform:translate(-50%,-50%);
}
.lineup-usecase-label{
  display:block;
  margin-bottom:4px;
  color:#536170;
  font-size:12px;
  font-weight:800;
}

.lineup-usecase p{
  margin:0 0 20px;
  color:#12263A;
  font-size:14px;
  font-weight:700;
  line-height:1.6;
}

.product-lineup-grid .lineup-card:nth-child(1) .lineup-usecase{
  background:linear-gradient(135deg, rgba(184, 135, 45, .14), rgba(231, 198, 106, .22));
  border-top:1px solid rgba(184, 135, 45, .34);
}

.product-lineup-grid .lineup-card:nth-child(1) .lineup-usecase-label{
  color:#9a7024;
}

.product-lineup-grid .lineup-card:nth-child(2) .lineup-usecase{
  background:linear-gradient(135deg, rgba(18, 52, 91, .10), rgba(30, 90, 166, .16));
  border-top:1px solid rgba(30, 90, 166, .28);
}

.product-lineup-grid .lineup-card:nth-child(2) .lineup-usecase-label{
  color:#1e5aa6;
}

.product-lineup-grid .lineup-card:nth-child(3) .lineup-usecase{
  background:linear-gradient(135deg, rgba(111, 183, 216, .14), rgba(191, 231, 245, .34));
  border-top:1px solid rgba(111, 183, 216, .34);
}

.product-lineup-grid .lineup-card:nth-child(3) .lineup-usecase-label{
  color:#0f6b91;
}

.consult-tel{
  display:inline-flex;
  min-height:54px;
  align-items:center;
  padding:0 24px;
  background:#1e5aa6;
  color:#fff;
  border-radius:4px;
  font-weight:800;
  letter-spacing:.06em;
}


/* =====================
Reasons
===================== */


.reason-hero{
background:
  linear-gradient(90deg, rgba(18,38,58,.9) 0%, rgba(18,38,58,.74) 48%, rgba(18,38,58,.22) 100%),
  url('../img/reason-hero-bg.png') center/cover no-repeat;
color:#fff;
padding:90px 0;
overflow:hidden;
}

.reason-hero-inner{
display:block;
}

.reason-hero-copy{
width:90%;
margin:0 auto;
}

.reason-hero h1{
font-size:clamp(30px,3.6vw,46px);
line-height:1.28;
margin:0 0 30px;
}

.reason-hero p{
color:#dce5ee;
font-size:16px;
margin:0;
}

.reason-hero p br{
display: none;
}

.reason-section{
background:#edf1f5;
padding:60px 0;
}

.reason-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:22px;
}

.reason-card{
background:#fff;
border:1px solid #e1e7ee;
border-radius:8px;
padding:0 22px 30px;
box-shadow:0 10px 24px rgba(15,35,80,.06);
overflow:hidden;
}

.reason-card:nth-child(3){
grid-column:1 / -1;
}

.reason-icon-space{
width:calc(100% + 44px);
height:150px;
margin:0 -22px 22px;
display:flex;
align-items:center;
justify-content:center;
background:#f2f6fb;
}

.reason-icon-space img{
display:block;
width:100%;
height:100%;
object-fit:cover;
}

.reason-number{
display:flex;
align-items:center;
gap:12px;
color:#1e5aa6;
font-family:'Shippori Mincho','Yu Mincho','Hiragino Mincho ProN',serif;
font-size:22px;
font-style:normal;
font-weight:700;
letter-spacing:.06em;
margin-bottom:14px;
}

.reason-number::after{
content:"";
display:block;
width:42px;
height:1px;
background:#1e5aa6;
opacity:.45;
}

.reason-card h3{
font-size:18px;
line-height:1.5;
margin:0 0 12px;
}

.reason-card p{
font-size:14px;
line-height:1.8;
margin:0;
}

.reason-proof{
background:
  linear-gradient(90deg, rgba(30, 90, 166, .92) 0%, rgba(30, 90, 166, .78) 48%, rgba(30, 90, 166, .58) 100%),
  url('../img/trust-image.jpg') center/cover no-repeat;
color:#fff;
padding:68px 0;
}

.reason-proof-inner{
display:grid;
grid-template-columns:200px 1fr;
gap:56px;
align-items:center;
}

.reason-proof-image{
background:#fff;
border-radius:8px;
padding:40px;
text-align:center;
}

.reason-proof-image img{
width:100%;
}

.reason-proof-content h2{
margin:0 0 22px;
font-family:'Shippori Mincho','Yu Mincho','Hiragino Mincho ProN',serif;
font-size:26px;
font-weight:700;
line-height:1.45;
}

.reason-proof-content p{
color:#dce5ee;
margin:0 0 44px;
}

.reason-text-link{
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 28px;
background:linear-gradient(to bottom, #d4af37 0%, #b8860b 100%);
color:#fff;
font-weight:700;
border-radius:4px;
border-right:1px solid rgba(80,58,16,.42);
border-bottom:2px solid rgba(80,58,16,.48);
box-shadow:none;
}

.reason-text-link:hover{
color:#fff;
filter:brightness(1.06);
}

.reason-cta{
background:
  linear-gradient(
    to right,
    rgba(239,230,214,1) 0%,
    rgba(239,230,214,.92) 36%,
    rgba(239,230,214,.52) 68%,
    rgba(239,230,214,.12) 100%
  ),
  url('../img/interface/partner_bg.png') right center/cover no-repeat;
padding:64px 0;
}

.reason-cta-inner{
display:grid;
grid-template-columns:1fr;
gap:44px;
align-items:start;
}

.reason-cta h2{
font-family:'Shippori Mincho','Yu Mincho','Hiragino Mincho ProN',serif;
font-size:30px;
font-weight:700;
line-height:1.45;
margin:0 0 14px;
}

.reason-cta p{
margin:0;
}

.reason-cta-actions{
display:flex;
gap:14px;
align-items:center;
flex-wrap:wrap;
justify-content:flex-start;
}


/* =====================
Crime-date
===================== */


.crime-hero{
background:
  linear-gradient(90deg, rgba(18,38,58,.74) 0%, rgba(18,38,58,.52) 48%, rgba(18,38,58,.12) 100%),
  url('../crime-date/img/key_bg.png') center/cover no-repeat;
padding:100px 0;
color:#fff;
text-align:left;
}

.crime-hero-inner{
width:90%;
margin:0 auto;
}

.crime-sub{
display:inline-block;
color:#d4af37;
font-size:12px;
font-weight:700;
letter-spacing:.18em;
margin-bottom:10px;
border-bottom:1px solid #d4af37;
}

.crime-hero h1{
font-size:30px;
margin:0 0 24px;
line-height:1.28;
}

.crime-hero p{
font-size:16px;
opacity:.9;
}

.crime-section{
  padding:40px 0;
background:#fff;
}

.crime-section.gray{
background:#edf1f5;
}

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

.section-num{
color:#1e5aa6;
font-size:18px;
font-weight:700;
letter-spacing:2px;
border-bottom:3px solid #1e5aa6;
}

.section-heading h2{
font-size:28px;
line-height:1.4;
color:#222;
}

.section-text{
font-size:16px;
color:#4D5D6C;
margin-bottom:45px;
}

.crime-image{
margin-top:50px;
}

.crime-image img{
width:100%;
display:block;
border-radius:10px;
}

.method-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:50px;
}

.method-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.evergreen-methods .method-card{
border:1px solid #e1e7ee;
box-shadow:0 12px 28px rgba(15,35,80,.08);
}

.method-card img{
width:100%;
display:block;
}

.method-photo{
width:100%;
height:210px;
padding:30px 0 0;
overflow:hidden;
background:#fff;
}

.method-photo img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.method-card h3{
font-size:22px;
margin:25px 25px 10px;
color:#2d6fbb;
}

.method-card p{
margin:0 25px 25px;
}

.check-list{
margin:0;
padding:0;
list-style:none;
display:grid;
gap:14px;
}

.check-list li{
position:relative;
padding:16px 18px 16px 46px;
background:#edf1f5;
border-radius:6px;
color:#4D5D6C;
line-height:1.7;
}

.check-list li::before{
content:"";
position:absolute;
left:18px;
top:23px;
width:14px;
height:8px;
border-left:3px solid #1e5aa6;
border-bottom:3px solid #1e5aa6;
transform:rotate(-45deg);
}

.crime-risk-layout{
display:grid;
grid-template-columns:1fr 1fr;
gap:32px;
align-items:start;
margin-top:8px;
}

.crime-risk-photo-col{
position:relative;
}

.crime-risk-photo-wrap{
position:relative;
border-radius:8px;
overflow:hidden;
background:#cdd5dc;
}

.crime-risk-photo-wrap img{
width:100%;
height:360px;
object-fit:cover;
display:block;
}

.crime-risk-caption{
position:absolute;
left:16px;
bottom:16px;
display:flex;
align-items:center;
gap:10px;
background:rgba(18,38,58,.82);
color:#fff;
padding:12px 16px;
border-radius:6px;
font-size:13px;
font-weight:700;
line-height:1.55;
max-width:calc(100% - 32px);
}

.crime-risk-caption-icon{
font-size:20px;
flex:0 0 auto;
color:#f0c24a;
}

.crime-risk-steps{
margin:0;
padding:0;
list-style:none;
display:grid;
gap:0;
}

.crime-risk-steps li{
display:flex;
align-items:center;
justify-content:space-between;
gap:12px;
padding:20px 0;
border-bottom:1px solid #e1e7ee;
}

.crime-risk-steps li:first-child{
padding-top:4px;
}

.crime-risk-steps li:last-child{
border-bottom:none;
}

.crime-risk-step-main{
display:flex;
align-items:flex-start;
gap:14px;
flex:1;
min-width:0;
}

.crime-risk-num{
flex:0 0 auto;
width:36px;
height:36px;
border-radius:50%;
background:#1e5aa6;
color:#fff;
font-size:18px;
font-weight:700;
display:flex;
align-items:center;
justify-content:center;
margin-top:2px;
}

.crime-risk-step-body strong{
display:block;
color:#1e5aa6;
font-size:18px;
margin-bottom:6px;
line-height:1.4;
}

.crime-risk-step-body p{
margin:0;
font-size:13px;
line-height:1.75;
}

.crime-risk-step-icon{
flex:0 0 auto;
width:100px;
height:100px;
object-fit:contain;
}

.crime-summary-banner{
display:flex;
align-items:center;
gap:16px;
margin-top:28px;
padding:18px 24px;
background:#eef4fb;
border:1px solid #c5d8ee;
border-left:4px solid #1e5aa6;
border-radius:6px;
}

.crime-summary-banner img{
width:50px;
height:50px;
object-fit:contain;
flex:0 0 auto;
}

.crime-summary-banner p{
margin:0;
font-size:18px;
line-height:1.7;
}

.crime-summary-banner strong{
color:#1e5aa6;
}

.crime-map-layout{
display:grid;
grid-template-columns:4fr 6fr;
overflow:hidden;
min-height:300px;
}

.crime-map-photo{
overflow:hidden;
}

.crime-map-photo img{
width:100%;
height:100%;
object-fit:cover;
display:block;
border-radius:8px;
}

.crime-map-checklist{
margin:0;
padding:20px 24px 0 40px;
list-style:none;
display:flex;
flex-direction:column;
justify-content:center;
gap:0;
background:#fff;
}

.crime-map-checklist li{
position:relative;
margin:0 0 20px;
padding:14px 16px 14px 44px;
border:1px solid #cdd8e4;
color:#33495f;
font-size:16px;
font-weight:500;
line-height:1.6;
}

.crime-map-checklist li::before{
content:"";
position:absolute;
left:17px;
top:20px;
width:14px;
height:8px;
border-left:3px solid #1e5aa6;
border-bottom:3px solid #1e5aa6;
transform:rotate(-45deg);
}

.crime-section .compare-grid{
margin-bottom:80px;
}

.crime-section .compare-card{
border:1px solid #cdd4db;
}

.crime-section .compare-card:first-child{
background:#fff7f9;
}

.crime-section .compare-card:nth-child(2){
background:#f3f8ff;
}

.crime-final-cta{
text-align:center;
padding:40px 0 20px;
}

.crime-final-cta-title{
font-family:'Shippori Mincho','Yu Mincho','Hiragino Mincho ProN',serif;
font-size:clamp(32px,4vw,40px);
font-weight:700;
line-height:1.45;
margin:0 0 30px;
}

.crime-final-cta-title>span{
background:linear-gradient(transparent 58%, yellow 58%);
}

.crime-final-cta-desc{
max-width:640px;
margin:0 auto 44px;
font-size:clamp(16px,1.6vw,20px);
}

.crime-final-cta-actions{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.crime-cta-primary{
display:inline-flex;
align-items:center;
justify-content:center;
min-width:260px;
min-height:64px;
padding:0 40px;
background:#1e5aa6;
color:#fff;
font-size:18px;
font-weight:700;
border-radius:6px;
text-decoration:none;
transition:background .3s;
}

.crime-cta-primary:hover{
background:#12263A;
color:#fff;
}

.crime-cta-secondary{
display:inline-flex;
align-items:center;
justify-content:center;
min-width:260px;
min-height:64px;
padding:0 40px;
background:#fff;
color:#1e5aa6;
font-size:18px;
font-weight:700;
border-radius:6px;
border:2px solid #1e5aa6;
text-decoration:none;
transition:background .3s, color .3s;
}

.crime-cta-secondary:hover{
background:#1e5aa6;
color:#fff;
}

.crime-final-tel{
display:inline-flex;
flex-direction:column;
align-items:center;
gap:4px;
margin-top:50px;
text-decoration:none;
color: #12263A;
}

.crime-final-tel-label{
font-size:14px;
font-weight:700;
letter-spacing:.12em;
color:#1e5aa6;
}

.crime-final-tel-row{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
white-space:nowrap;
}

.crime-final-tel-num{
font-size:30px;
font-weight:800;
letter-spacing:.04em;
line-height:1.2;
transition:color .3s;
color: #12263A;
}

.crime-final-tel:hover .crime-final-tel-num{
color:#1e5aa6;
}

.crime-final-tel-hours{
font-size:14px;
letter-spacing:.04em;
}


/* =====================
Area Page
===================== */


.area-hero{
padding:60px 0;
background:
  linear-gradient(90deg, rgba(18,38,58,.72) 0%, rgba(18,38,58,.52) 52%, rgba(18,38,58,.16) 100%),
  url('../img/interface/area_bg.png') center/cover no-repeat;
}

.area-hero-inner{
display:block;
}

.area-hero-copy{
width:90%;
margin:0 auto;
}

.area-hero-copy h1{
font-size:clamp(34px,4.2vw,54px);
line-height:1.35;
color:#fff;
margin:16px 0 24px;
letter-spacing:.06em;
}

.area-hero-copy p{
font-size:17px;
color:#dce5ee;
margin:0;
}

.area-hero-note{
width:100%;
margin:34px 0 0;
background:rgba(255,255,255,.12);
backdrop-filter:blur(8px);
border:1px solid rgba(255,255,255,.26);
border-left:5px solid var(--color-red);
border-radius:6px;
padding:20px 24px;
box-shadow:0 16px 36px rgba(18,38,58,.12);
}

.area-hero-note strong{
display:block;
color:#fff;
font-size:17px;
margin-bottom:6px;
}

.area-hero-note p{
margin:0;
color:#dce5ee;
font-size:13px;
line-height:1.7;
}

.area-overview{
padding:60px 0;
}

.area-feature-card{
border:1px solid #e1e8ef;
border-radius:8px;
margin-bottom: 10px;
padding:18px 16px 22px 30px;
background:linear-gradient(180deg,#fff 0%,#cfe4f5 100%);
}

.area-feature-card span{
display:inline-block;
color:var(--color-red);
font-size:24px;
font-weight:700;
letter-spacing:.12em;
}

.area-feature-card h3{
font-size:20px;
margin:0 0 10px;
line-height:1.5;
}

.area-feature-card p{
margin:0;
color:#4d5d6c;
font-size:15px;
line-height:1.6;
}

.area-cta{
  padding:60px 0;
background:
  linear-gradient(
    to right,
    rgba(239,230,214,1) 0%,
    rgba(239,230,214,0.9) 30%,
    rgba(239,230,214,0.4) 60%,
    rgba(239,230,214,0) 100%
  ),
  url('../img/interface/partner_bg.png') right center/cover no-repeat;
color:#222;
}

.area-cta-inner{
display:block;
}

.area-cta h2{
color:#222;
font-family:'Shippori Mincho','Yu Mincho','Hiragino Mincho ProN',serif;
font-size:32px;
font-weight:700;
line-height:1.5;
margin:10px 0 14px;
}

.area-cta p{
margin:0;
color:#4D5D6C;
font-size:15px;
}
.area-cta .product-kicker{
color:#d4af37;
}

.area-cta-actions{
display:flex;
align-items:center;
gap:16px;
flex-wrap:wrap;
justify-content:flex-start;
margin-top:28px;
}


/* =====================
Contact Page
===================== */


.contact-hero{
padding:90px 0;
background:
  linear-gradient(rgba(255,255,255,.40), rgba(255,255,255,.40)),
  url('../img/reason-icon-quality.png') center/cover no-repeat;
}

.contact-hero-inner{
width:80%;
margin:0 auto;
}

.contact-hero-copy h1{
margin:0 0 24px;
font-size:30px;
}

.contact-hero-copy p{
color:#4d5d6c;
font-size:16px;
}

.contact-guide{
padding:60px 0;
background:#fff;
}

.contact-guide-inner{
display:grid;
grid-template-columns:minmax(280px,.7fr) 1fr;
gap:52px;
align-items:start;
}

.contact-guide-copy h2{
margin:0 0 18px;
font-size:26px;
}

.contact-guide-copy p{
margin:0;
}

.contact-check-list{
display:grid;
gap:14px;
list-style:none;
margin:0;
padding:0;
}

.contact-check-list li{
position:relative;
padding:18px 20px 18px 52px;
background:#fff;
border:1px solid #dfe8f1;
border-radius:6px;
color:#33495f;
font-weight:700;
line-height:1.6;
}

.contact-check-list li::before{
content:"";
position:absolute;
left:20px;
top:25px;
width:15px;
height:8px;
border-left:3px solid #1e5aa6;
border-bottom:3px solid #1e5aa6;
transform:rotate(-45deg);
}

.contact-form-section{
padding:60px 0;
background:#edf1f5;
}

.contact-form-head{
max-width:820px;
margin:0 auto 42px;
text-align:center;
}

.contact-form-head h2{
margin:0 0 30px;
font-size:28px;
font-family: 'Shippori Mincho','Yu Mincho','Hiragino Mincho ProN',serif;
font-weight:700;
line-height:1;
}

.contact-form-head p{
margin:0;
color:#4d5d6c;
}

.contact-phone-note{
display:grid;
grid-template-columns:52px auto;
column-gap:16px;
align-items:center;
justify-content:center;
width:min(470px, 100%);
margin:18px auto 0;
padding:18px 28px;
text-align:center;
background:rgba(255,255,255,.72);
border:1px solid #dfe8f1;
border-radius:8px;
}

.contact-phone-note::before{
content:"";
grid-row:1 / 4;
width:60px;
height:60px;
background:url('../img/interface/tell_icon.png') center/42px 42px no-repeat;
}

.contact-phone-note span{
display:block;
margin:0;
font-size:14px;
font-weight:700;
line-height:1.4;
}

.contact-phone-note a{
display:block;
margin:0 0 10px;
color:#1e5aa6;
font-size:30px;
font-weight:800;
line-height:1.15;
text-decoration:none;
letter-spacing:.04em;
}

.contact-phone-note small{
display:block;
font-size:13px;
line-height:1.4;
}

.contact-form{
max-width:980px;
margin:0 auto;
padding:38px;
background:#fff;
border:1px solid #dfe8f1;
border-radius:8px;
box-shadow:0 18px 42px rgba(15,35,80,.08);
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:22px;
}

.contact-form label,
.form-purpose{
display:block;
}

.contact-form label span,
.form-purpose legend{
display:block;
font-size:14px;
font-weight:700;
margin-bottom:8px;
}

.contact-form em{
display:inline-block;
margin-left:6px;
color:var(--color-red);
font-size:11px;
font-style:normal;
letter-spacing:.08em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea{
width:100%;
min-height:54px;
padding:13px 14px;
border:1px solid #cfdbe6;
border-radius:4px;
background:#fff;
color:#263849;
font:inherit;
letter-spacing:.04em;
}

.contact-form textarea{
min-height:180px;
resize:vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
outline:2px solid rgba(30,90,166,.18);
border-color:#1e5aa6;
}

.form-purpose{
margin:28px 0;
padding:22px;
border:1px solid #dfe8f1;
border-radius:6px;
background:#f8fbfd;
}

.form-purpose label{
display:inline-flex;
align-items:center;
gap:8px;
margin:8px 18px 8px 0;
color:#455768;
font-weight:700;
line-height:1.5;
}

.form-purpose input{
width:18px;
height:18px;
accent-color:#1e5aa6;
}

.form-message{
margin-top:28px;
}

.form-actions{
margin-top:28px;
padding-top:26px;
display:flex;
align-items:center;
justify-content:space-between;
gap:24px;
border-top:1px solid #dfe8f1;
}

.form-actions p{
margin:0;
color:#5b6a79;
font-size:13px;
line-height:1.7;
}

.modal-open{
overflow:hidden;
}

.contact-confirm-modal{
position:fixed;
inset:0;
z-index:2000;
display:none;
align-items:center;
justify-content:center;
padding:28px;
background:rgba(18,38,58,.48);
}

.contact-confirm-modal[aria-hidden="false"]{
display:flex;
}

.contact-confirm-panel{
width:min(920px,100%);
max-height:min(86vh,900px);
overflow:auto;
padding:34px;
background:#fff;
border-radius:8px;
box-shadow:0 24px 70px rgba(0,0,0,.24);
}

.contact-confirm-head{
margin-bottom:18px;
}

.contact-confirm-head h2{
margin:0;
font-size:24px;
line-height:1.45;
}

.contact-confirm-head p{
margin:0;
line-height:1.8;
}

.confirm-list{
display:grid;
gap:12px;
margin:0;
}

.confirm-list div{
display:grid;
grid-template-columns:160px 1fr;
gap:18px;
padding:10px 0;
background:transparent;
border:0;
border-bottom:1px dashed #cfdbe6;
border-radius:0;
}

.confirm-list dt{
color:#667584;
font-size:13px;
font-weight:700;
}

.confirm-list dd{
margin:0;
color:#263849;
font-size:14px;
line-height:1.8;
word-break:break-word;
}

.confirm-actions{
display:flex;
justify-content:flex-end;
align-items:center;
gap:14px;
margin-top:28px;
padding-top:24px;
}

.confirm-back{
min-height:52px;
padding:0 22px;
border:1px solid #cfdbe6;
border-radius:4px;
background:#fff;
color:#33495f;
font-weight:700;
cursor:pointer;
}

.confirm-back:hover{
background:#edf1f5;
}

.thanks-hero{
padding:100px 0 120px;
}

.thanks-hero-inner{
max-width:700px;
}

.thanks-hero h1{
margin:16px 0 40px;
font-size:clamp(30px,3.1vw,32px);
line-height:1.35;
}

.thanks-hero p{
margin:0 0 14px;
color:#4d5d6c;
font-size:15px;
}

.thanks-actions{
display:flex;
align-items:center;
gap:22px;
flex-wrap:wrap;
margin-top:60px;
}

.thanks-links{
padding:96px 0;
background:#fff;
}

.thanks-link-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
}

.thanks-link-grid a{
display:block;
min-height:100%;
padding:30px;
background:#f8fbfd;
border:1px solid #dfe8f1;
border-radius:8px;
color:#33495f;
}

.thanks-actions .btn-main-content{
font-size:1rem;
}

.thanks-link-grid a:hover{
border-color:#1e5aa6;
box-shadow:0 12px 28px rgba(15,35,80,.08);
}

.thanks-link-grid span{
display:block;
margin-bottom:10px;
color:#1e5aa6;
font-size:12px;
font-weight:800;
letter-spacing:.14em;
}

.thanks-link-grid strong{
display:block;
margin-bottom:12px;
font-size:22px;
line-height:1.45;
}

.thanks-link-grid p{
margin:0;
font-size:14px;
line-height:1.85;
}

/* reference price table (products) */
.price-table-head{
  width:100%;
  margin:48px auto 24px;
  padding:32px 0 0;
  text-align:center;
  border-top:1px solid #bbb;
}

.price-table-head h3{
  margin:0 0 24px;
  color:#12263a;
  font-size:24px;
  line-height:1.45;
}

.price-table-head p{
  max-width:760px;
  margin:0 auto 16px;
  color:#555;
  font-size:14px;
  line-height:1.9;
}

.price-table-head .price-table-notice{
  font-weight:600;
  margin-bottom:0;
}

.price-table-wrap{
  overflow-x:auto;
  margin:32px 0 0;
  border:1px solid #dce4ec;
  border-radius:8px;
  background:#fff;
}

.price-table{
  width:100%;
  min-width:860px;
  border-collapse:collapse;
  background:#fff;
}

.price-table th{
  background:#1e5aa6;
  color:#fff;
  padding:12px 0;
  font-size:13px;
  text-align:center;
}

.price-table td{
  padding:12px 16px;
  border-top:1px solid #e1e7ee;
  text-align:center;
  color:#333;
  font-size:14px;
}

.price-table td strong{
  font-weight:700;
}

.price-table td:first-child{
  text-align:left;
}

.price-table td span{
  display:block;
  margin-top:4px;
  color:#777;
  font-size:12px;
}