@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700");

html {
  scroll-behavior: smooth;
}

/* mainvisual */
.mainvisual{
  background:linear-gradient(90deg,rgba(255,255,255,0.78) 0%,rgba(255,255,255,0.48) 35%,rgba(255,255,255,0.12) 60%,rgba(255,255,255,0) 100%)
  ,url("../images/index/fv-main.webp") no-repeat top /cover;
}
.mainvisual-container{
  min-height: 690px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.mainvisual-wrapper{padding-top: 5rem; }
.mainvisual-wrapper .slope{width: 590px; height: 120px; text-align: center; padding-left: 6rem; }


.catchcopy{
  font-size: clamp(26px, 6.5vw, 56px);
  padding-top: 24px;
  position: relative;
  color: #00479d;
  z-index: 1;
  display: inline-block;
}
.catchcopy .font-small{font-size: 36px; margin: 0 10px;color: #00479d;}
.catchcopy::before {
  content: "";
  position: absolute;
  inset: 0px -60px -40px -40px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.65) 45%,
    rgba(255, 255, 255, 0) 75%
  );
  z-index: -1;
  pointer-events: none;
}
.catchcopy-text{
  padding: 32px 0; 
  font-size: clamp(17px, 1.65vw, 23px); 
  font-weight: 800; 
  line-height: 1.7; 
  letter-spacing: .04em; 
  color: #000;
}

.catchcopy-label img{
  max-width: 450px;
}
.catchcopy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.catchcopy-badges li {
  width: 160px;
}
.image-note {
  /*margin: 6px 0 0;*/
  padding: 6px 0 0;
  color: #777;
  font-size: 12px;
  text-align: left;
}

/* mainvisual 1024px以下 */
@media (max-width: 1024px) {
  .mainvisual-container{
    min-height: 480px;
    background-position: center top;
  }
  .mainvisual-wrapper{
    padding-top: 3rem;
  }
  .mainvisual-wrapper .slope{
    width: 460px;
    height: auto;
    padding-left: 3rem;
  }
  .catchcopy-label img{
    max-width: 400px;
  }
  .catchcopy{
    padding-top: 0.5rem;
    font-size: 36px;
  }
  .catchcopy .font-small{font-size: 30px;}
  .catchcopy-text{ font-size: 18px; padding-top: 1rem;}
  .catchcopy-badges { gap: 10px;}
  .catchcopy-badges li { width: 140px;}
  .catchcopy-badges li::before { inset: 5px;}
}

/* mainvisual 768px以下 */
@media (max-width: 768px) {
  .mainvisual-container{
    min-height: 380px;
    padding: 0 1.5rem;
    background-position: center top;
  }
  .mainvisual-wrapper{
    padding-top: 2.5rem;
  }
  .mainvisual-wrapper .slope{
    width: 80%;
    max-width: 360px;
    height: auto;
    padding-left: 0;
    margin: 0 auto;
  }

  .catchcopy-label img{ max-width: 300px;}
  .catchcopy{ font-size: 30px;}
  .catchcopy .font-small{font-size: 24px;}
  .catchcopy::before {
    inset: -10px -60px -20px 0px;
    background: radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.65) 45%,
      rgba(255, 255, 255, 0) 75%
    );
    z-index: -1;
    pointer-events: none;
  }

  .catchcopy-text{ font-size: 1rem; padding: 8px 0 16px; }
  .catchcopy-badges { gap: 10px; padding: 0 0 10px;}
  .catchcopy-badges li { width: 90px; font-size: 16px;}
  .badge-icon { font-size: 20px; margin-bottom: 3px;}
  .catchcopy-label{ padding: 20px 0 0;}
  .catchcopy-label::before,.catchcopy-label::after { margin-right: 5px;}
  .catchcopy-label::after { margin-left: 5px;}
  .image-note {
    padding: 0 0 6px;
    font-size: 10px;
  }
}

/* mainvisual 480px以下 */
@media (max-width: 480px) {
  .mainvisual {
    background:
      linear-gradient(
        90deg,
        rgba(255,255,255,0.88) 0%,
        rgba(255,255,255,0.70) 42%,
        rgba(255,255,255,0.30) 68%,
        rgba(255,255,255,0.05) 100%
      ),
      url("../images/index/fv-main.webp") no-repeat 76% top / cover;
  }
  .mainvisual-container{
    min-height: 320px;
    padding: 0 16px;
  }
  .catchcopy{line-height: 1.4;}
  .catchcopy .font-small{margin: 0 5px;}
  .catchcopy-text{ padding: 16px 0; font-size: 14px; line-height: 1.4;}
  .catchcopy-badges{justify-content: center;}
  .catchcopy-badges li { width: 100px;}
  .catchcopy-label{ padding: 10px 0 0;}
  .catchcopy-label img{ max-width: 250px;}
}

/* hero-cta-band*/
.hero-cta-band {
  background: linear-gradient(90deg, #003273, #004ea8, #002c69);
  padding: 18px 20px 20px;
}
.hero-cta-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 24px;
  align-items: center;
}
.btn-white {
  min-height: 60px;
  border-radius: 8px;
  background: #fff;
  color: #00479d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 10px;
  font-weight: 900;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
}
.mini-estimate .icon,
.btn-white .icon,
.btn-orange .icon { font-size: 34px; line-height: 1; }
.btn-orange {
  min-height: 60px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ff8a1f 0%, #e95513 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 12px;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 6px 0 #c94507, 0 10px 18px rgba(0, 0, 0, .24);
  transition: .2s ease;
}
.btn-orange:hover,
.btn-white:hover,
.header-btn:hover {
  transform: translateY(-2px);
  opacity: .92;
}

/* mainvisual 1024px以下 */
@media (max-width: 1024px) {
  .hero-cta-band { padding: 20px; position: static; }
  .hero-cta-inner { grid-template-columns: 1fr; gap: 14px; }
  .btn-orange { font-size: 16px;}
}

/* area-nav*/
.area-nav {
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 91, 172, 0.12) 0%, rgba(0, 91, 172, 0) 28%),
    linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
  border-top: 1px solid #d9e5f2;
  padding: 22px 20px;
}
.area-nav-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  color: #111827;
  font-weight: 800;
}
.area-nav-inner a{
  color: #172033;
}
.area-nav-title {
  color: #00479d;
  padding-right: 28px;
  border-right: 1px solid #9fb5d1;
  font-size: 19px;
}
.area-nav a { transition: .2s; }
.area-nav a:hover { color: #e95513; }
.area-nav-more {
  margin-left: auto;
  color: #00479d;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .area-nav { position: static; }
  .area-nav-inner { gap: 26px; }
  .area-nav-more { margin-left: 0; }
}
@media (max-width: 768px) {
  .area-nav-inner { gap: 16px; }
}
@media (max-width: 480px) {
  .area-nav-title {font-size: 14px; padding-right: 10px;}
  .area-nav-inner { gap: 5px 10px; }
  .area-nav-inner a{font-size: 12px;}
  .area-nav { padding: 10px;}

  .hero-cta-band { padding: 10px; }
  .hero-cta-inner { 
    grid-template-columns: 1fr 1fr; gap: 10px; }
  .btn-orange,.btn-white { 
    padding: 8px 10px; min-height: 30px; font-size: 12px;
    gap: 14px;
  }
  .mini-estimate .icon,
  .btn-white .icon,
  .btn-orange .icon { font-size: 24px; line-height: 1; }
}


/* introduction*/
.introduction{
  background: linear-gradient(-60deg, #FEE124 0%, #FEE124 35%, #F11B0B 35%, #F11B0B 100%);
  width: 100%;
  z-index: 0;
  padding: 20px 0;
  display: inline-flex;
  justify-content: center;
}
.introduction-wrapper{
  max-width: 1200px;
  display: inline-flex;
}
.txt_box .section-title{
  color: #fff;
  font-size: 2.0rem;
  padding: 10px 20px;
}
.txt_box .section-text{
  color: #fff;
  padding: 20px;
}
.imd-item img{
  max-width: 300px;
}

/*problem */
.problem {
  padding: 80px 20px;
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 91, 172, 0.08) 0%, rgba(0, 91, 172, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}
.problem-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-catch {
  margin: 0 0 8px;
  text-align: center;
  color: #005bac;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.problem-catch::before {
  content: "＼";
  margin-right: 10px;
}
.problem-catch::after {
  content: "／";
  margin-left: 10px;
}
.problem .section-title {
  text-align: center;
  font-size: 36px;
  color: #123b68;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 20px;
}
.problem .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 4px;
  background: #ff6b35;
  transform: translateX(-50%);
}
.problem .section-subtitle {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
  color: #444;
  font-size: 16px;
  line-height: 1.9;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.problem-card {
  position: relative;
  padding: 30px 24px;
  background: #fff;
  border: 1px solid #dcebf8;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 76, 151, 0.08);
  transition: 0.3s ease;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 76, 151, 0.14);
  border-color: #2d6ab4;
}
.problem-image{
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 22px;
  background: #edf5fb;
}
.problem-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef7ff;
  border-radius: 50%;
  font-size: 30px;
}
.problem-card h3 {
  margin: 0 0 14px;
  color: #004c97;
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}
.problem-card p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}
.problem-message {
  max-width: 940px;
  margin: 42px auto 0;
  padding: 26px 32px;
  background: #fff;
  border-left: 6px solid #ff6b35;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 76, 151, 0.08);
}
.problem-message p {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}
.problem-message strong {
  color: #004c97;
}

@media (max-width: 768px) {
  .problem .section-subtitle {
    font-size: 14px;
  }
  .problem-grid {
    gap: 10px;
  }
  .problem-message {
    margin: 30px auto 0;
    padding: 20px 24px;
  }
  .problem-message p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .problem {
    padding: 40px 16px;
  }
  .problem-catch {
    font-size: 16px;
  }

  .problem-catch::before {
    margin-right: 5px;
  }
  .problem-catch::after {
    margin-left: 5px;
  }
  .problem .section-title {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem-card {
    padding: 15px 24px;
  }
  .problem .section-subtitle {
    font-size: 12px;
    margin: 0 10px 20px;
    text-align: left;
  }

  .problem-image{
    width: 75%;
    margin:0 auto 10px;
  }
  .problem-card h3 {
    margin: 0 0 10px;    
    font-size: 16px;
  }
  .problem-card p {
    font-size: 12px;
  }

  .problem-message {
    margin: 20px auto 0;
    padding: 15px 20px;
  }
  .problem-message p {
    font-size: 12px;
    line-height: 1.7;
    text-align: left;
  }

  .problem-message strong {
    color: #004c97;
    font-size: 14px;
  }

}

/* features */
.features {
  padding: 80px 20px;
  background: white;
}
.features-catch {
  margin: 0 0 8px;
  text-align: center;
  color: #005bac;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.features-catch::before { content: "＼"; margin-right: 10px;}
.features-catch::after { content: "／"; margin-left: 10px;}

.features .section-title {
  text-align: center;
  font-size: 36px;
  color: #123b68;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 18px;
}
.features .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff6b35;
}
.features .section-subtitle {
  margin: 0 auto 44px;
  text-align: center;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.9;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: #fff;
  position: relative;
  border: 2px solid #e3eef9;
  border-radius: 15px;
  padding: 40px 30px 80px;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(30,77,139,0.15);
  border-color: #2d6ab4;
}
.feature-image-1,
.feature-image-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
}
.feature-image-1 img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.feature-image-2 img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  display:block;
}
.feature-image-circle {
  border-radius: 50%;
  background: #eaf5ff;
}

.feature-title {
  font-size: 24px;
  color: #123b68;
  margin-bottom: 15px;
  font-weight: bold;
  position: relative;
}
/*
.feature-desc::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 200px;
  width: 100%;
  max-width: 260px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 91, 172, 0.25) 0,
    rgba(0, 91, 172, 0.25) 4px,
    transparent 4px,
    transparent 8px
  );
  transform: translateX(-50%);
}
*/

.feature-bottom-icon {
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 120px;
  height: 60px;
  border-radius: 190px 190px 0 0;
  background: #e3eef9;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 24px;
}
.feature-bottom-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.feature-desc {
  color: #555;
  line-height: 1.8;
}
.feature-highlight {
  color: #ff6b35;
  font-weight: bold;
}
@media (max-width: 1024px) {
  /*
  .feature-desc::before {
    bottom: 200px;
  }
    */
  .features-grid {gap: 10px;}
  .feature-card {
    padding: 20px 10px 80px;
  }
}
@media (max-width: 768px) {
  .features { padding: 60px 16px;}
  .feature-bottom-icon {
    bottom: 0px;
    width: 0px;
    height: 0px;
    border-radius: 0 0 0 0;
  }
  .feature-desc{
    align-items: center;
  }
  .features-grid {gap: 10px 20px;}
  .feature-card {
    padding: 20px 30px;
  }
  .feature-image-1,
  .feature-image-2 {
    width: 150px;
    height: 150px;
    margin: 0 auto 12px;
  }
  .feature-title {
    font-size: 20px;
  }
  /*
  .feature-desc::before {
    bottom: 110px;
  }*/
  .features .section-subtitle {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .features { padding: 40px 16px;}
  .features-catch {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
  }
  /*
  .features-catch::before { margin-right: 5px;}*/
  .features-catch::after { margin-left: 5px;}
  .features .section-title {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    letter-spacing: 0.12em;
  }
  .features .section-subtitle { 
    margin: 0 auto 20px;
    font-size: 12px;
    line-height: 1.2;
  }
  .features-grid {gap: 10px;}
  .feature-card {
    padding: 10px 30px;
  }
  .feature-head{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 18px;
  }

  .feature-image-1,
  .feature-image-2 {
    width: 60px;
    height: 60px;
    justify-content: flex-start;
    margin: 0 0 5px;
  }
  .feature-head .feature-image-circle {
    flex-shrink: 0;
    margin: 0;
  }
  .feature-title { 
    text-align: left;
    font-size: 18px;
    margin: 0;
    min-width: 180px;
  }

  .feature-desc::before {
    bottom: 65px;
  }
  .feature-desc {
    font-size: 12px;
    line-height: 1.4;
  }
}


/* area-coverage */
.area-coverage{
  padding: 60px 20px;
  background:
  radial-gradient(circle at 82% 8%, rgba(0, 91, 172, 0.12) 0%, rgba(0, 91, 172, 0) 28%),
  linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
}
.area-coverage .section-title {
  font-size: 36px;
  color: #123b68;
  text-align: center;
  padding: 20px 0;
  position: relative;
}
.area-coverage .section-title::after {
  content:'';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff6b35;
}
.area-coverage .lead{
  text-align: center;
  padding: 50px 0 40px;
  margin-bottom: 20px;
  color: #333;
}
.area-coverage .region-section {
  margin-bottom: 60px;
}
.area-coverage .region-title {
  font-size: 1.5rem;
  border-bottom: 2px solid #d3e3fd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.area-coverage .region-lead{
  margin-bottom: 20px;
}
.area-coverage .area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.area-coverage .pref-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
}
.area-coverage .pref-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(30,77,139,0.15);
  border-color: #2d6ab4;
}

.area-coverage .pref-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.area-coverage .pref-name::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 24px;
  background: #0b57d0;
  margin-right: 12px;
  border-radius: 4px;
}
.area-coverage .city-list {
  font-size: 0.9rem;
  color: #444746;
  line-height: 1.6;
}
.area-coverage .city-list span {
  display: inline-block;
  margin-right: 8px;
}
.area-coverage .note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #eee;
}
.area-coverage .btn-orange{
  max-width: 800px;
  margin: 0 auto 30px;
}
.area-coverage .section-subtitle {
  text-align: center;
  margin: 32px 0;
  color: #666666;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .area-coverage .section-title {
    font-size: 32px;
    padding: 16px 0;
  }
  .area-coverage .lead{
    text-align: unset;
  }
  .area-coverage .lead {
    padding: 24px 16px 8px;
    font-size: 14px;
    line-height: 1.6;
  }
  .area-coverage .region-lead{
    font-size: 0.8rem;
  }
  .area-coverage .section-subtitle {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .area-coverage{ padding: 20px 16px;}
  .area-coverage .section-title { font-size: 20px;}
  .area-coverage .lead{ 
    padding: 20px 16px 8px;
    font-size: 12px; 
    margin-bottom: 10px;
  }
  .area-coverage .area-grid { gap: 5px;}
  .area-coverage .region-section { margin-bottom: 30px;}
  .area-coverage .pref-card { padding: 10px 24px;}
  .area-coverage .pref-name { font-size: 16px; margin-bottom: 5px;}
  .area-coverage .pref-name::before {
    width: 4px;
    height: 18px;
    margin-right: 10px;
  }
  .area-coverage .city-list { font-size: 12px;}
  .area-coverage .btn-orange{ margin: 0 auto 15px;}
  .area-coverage .section-subtitle {
    text-align: unset;
    margin: 20px 5px;
    font-size: 12px;
  }
}

/* wagamachi */
.wagamachi{
  background: #fff;
  padding: 20px 0 50px;
}
.wagamachi .section-title {
  font-size: 36px;
  color: #1e4d8b;
  text-align: center;
  padding: 20px 0;
  position: relative;
}
.wagamachi .section-title::after {
  content:'';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff6b35;
}
.wagamachi-wrapper{
  display: grid;
  place-items: center;
  width: 100%;
}
.wagamachi-table{
  margin: 0 auto;
}
.wagamachi-table th,
.wagamachi-table td{
  border: 1px solid #000;
  padding: 10px;
  font-weight: 700;
}
.wagamachi-table th{
  background-color: #00479d;
  color: #fff;
}

.wagamachi-table a,.wagamachi-table p{color: #333; font-weight: 300;}
.wagamachi-table p span{color: #333; font-weight: 700;}
.wagamachi-table a span{color: #00479d; font-weight: 700;}
.wagamachi-table .orange{color: #ff6b35; font-size: 18px;}
.wagamachi-table .font-small{font-size: 14px; font-weight: 300;}
.wagamachi-table th:nth-child(1){width: 120px;}
.wagamachi-table th:nth-child(2){width: 460px;}
.wagamachi-table th:nth-child(3){width: 140px;}
.wagamachi-table td:nth-child(3){text-align: right;}

.wagamachi .lead {
  max-width: 720px;
  color: #666666;
  font-size: 0.9rem;
  margin: 0 auto 15px;
  text-align: right;
}
.wagamachi .lead{padding-bottom: 20px;}

@media (max-width: 768px) {
  .wagamachi .section-title {
    font-size: 28px;
    padding: 16px 0;
  }
  .wagamachi {
    padding-bottom: 32px;
  }
  .wagamachi-wrapper {
    padding: 0 16px;
    overflow-x: auto;      /* 横スクロールを許可 */
  }
  .wagamachi-wrapper td{font-size: 14.4px;}
  .wagamachi-table th:nth-child(1){width: 20%;}
  .wagamachi-table th:nth-child(2){width: 60%;}
  .wagamachi-table th:nth-child(3){width: 20%;}
  .wagamachi .lead {
    max-width: none;
    margin: 15px 0;
    text-align: center;
    font-size: 0.8rem;
    padding-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .wagamachi .section-title {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    letter-spacing: 0.12em;
  }
  .wagamachi .lead {
    padding: 0;
    font-size: 0.8rem;
    font-size: 12px;
  }
  .wagamachi-wrapper {padding: 0;}
  .wagamachi-table th:nth-child(1){width: 16%;}
  .wagamachi-table th:nth-child(2){width: 58%;}
  .wagamachi-table th:nth-child(3){width: 26%;}
  .wagamachi-table th,
  .wagamachi-table td{
    font-size: 12px;
    padding: 5px;
    font-weight: 700;
  }
  .wagamachi-table .orange{font-size: 12px;}
  .wagamachi-table .font-small{font-size: 10px;}
}


/* link-card */
.link-card{
  max-width: 800px;
  margin: 30px auto 0;
  display: grid;
}
.link-card-wrapper{
  place-items: center;
  border: 2px solid #e3eef9;
  border-radius: 15px;
  margin: 0 0 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.link-card-containar{
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 40px;
  padding: 10px 30px;
}
.link-card-containar2{
  display: grid;
  align-items: center;
  grid-template-columns: 0.5fr 1fr;
  gap: 20px;
  padding: 10px 30px;
}
.link-card-lead{color: #004c97; margin: 0 0 10px;}
.link-card-title{color: #003273; margin: 10px 0}
.link-card-text{color: #333; margin: 10px 0;}
.link-card-domain{color: #2f8de4;}

.link-card-image img{
  width: 100%;
  max-width: 200px;
}
.link-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30,77,139,0.15);
  border-color: #2d6ab4;
}
.section-container-scinex{
  margin: 10px auto 0;
  max-width: 800px;
  color: #333;
}

/* value */
.value {
  position: relative;
  padding: 50px 2rem 70px;
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 91, 172, 0.12) 0%, rgba(0, 91, 172, 0) 28%),
    linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
  overflow: hidden;
}
.value-catch {
  margin: 0 0 8px;
  text-align: center;
  color: #005bac;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.value-catch::before { content: "＼"; margin-right: 10px;}
.value-catch::after { content: "／"; margin-left: 10px;}

.value-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.value-wrapper .section-title {
  text-align: center;
  font-size: 36px;
  color: #123b68;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: 0.04em;
}
.value-wrapper .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff6b35;
}
.value-wrapper .section-subtitle{
  text-align: center;
  margin: 0 auto 48px;
  color: #333;
  font-size: 1.05rem;
}
.value-wrapper .section-subtitle strong {
  color: #005bac;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin: 0 auto;
}
.value-card {
  position: relative;
  background: #fff;
  border: 1px solid #dbeaf7;
  border-radius: 18px;
  padding: 16px 24px;
  box-shadow: 0 10px 28px rgba(0, 76, 151, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(0, 76, 151, 0.14);
  border-color: #004c97;
}
.value-header{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:12px;
}
.value-number{
  flex-shrink:0;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(
    135deg,
    #005bac,
    #2f8de4
  );
  color:#fff;
  font-weight:800;
}

.value-card h3{
  color: #004c97;
  font-size: 1.2rem;
  margin:0;
  line-height:1.5;
}
.value-photo {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 22px;
  background: #edf5fb;
}
.value-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.value-card-body {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: center;
}
.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #eaf5ff;
  margin: 0;
  flex-shrink: 0;
}
.value-icon img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  max-width: none;
  max-height: none;
}
.value-card p {
  margin: 0;
  color: #444;
  line-height: 1.9;
  font-size: 0.9rem;
}
.value-message {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 12px;
  padding: 26px 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e3eef9;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 76, 151, 0.08);
}
.value-message-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #eaf5ff;
}
.value-message-icon img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  max-width: none;
  max-height: none;
}
.value-message p {
  margin: 0;
  text-align: center;
  color: #333;
  line-height: 1.9;
  font-size: 1.05rem;
}
.value-message strong {
  color: #005bac;
  font-size: 1.12rem;
}
.value-badge {
  position: absolute;
  top: -10px;
  right: 18px;
  display: inline-block;
  padding: 10px 14px;
  background: #1f78d1;
  color: #fff600;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 14px rgba(0, 76, 151, 0.18);
}
@media (max-width: 1024px) {
  .value-badge {
    top: -5px;
    right: 8px;
    padding: 10px 10px;
  }
}

@media (max-width: 768px) {
  .value { padding: 40px 2rem 70px;}
  .value-catch { font-size: 1rem;}
  .value-wrapper .section-title { font-size: 28px;}
  .value-wrapper .section-subtitle { text-align: left; font-size: 0.95rem;}
  .value-card { padding: 15px 20px 20px;}
  .value-card h3 { font-size: 1.2rem;}
  .value-card-body { /*grid-template-columns: 1fr;*/ text-align: center;}
  .value-icon { margin: 0 auto;}
  .value-message { padding: 24px 20px;}
  .value-message p { text-align: left; font-size: 0.8rem;}
  .value-message strong { font-size: 1rem;}
  .value-card p { font-size: 0.85rem;}

  .services { padding: 60px 16px;}
  .services .section-subtitle{text-align: left;}
  .services-wrapper .section-subtitle { margin-bottom: 1.1rem; font-size: 0.9rem;}
  .services-wrapper .section-title {
    margin-bottom: 30px;
  }

  .value .section-subtitle{text-align: left;}
  .value-card p{text-align: left;}
  .section-subtitle-bottom{text-align: left; font-size: 0.9rem; margin: 1rem 0;}
  .value-wrapper .section-subtitle {
    margin-bottom: 1.1rem;
    font-size: 0.9rem;
  }
  .value-wrapper .section-title {
    margin-bottom: 30px;
    font-size: 32px;
  }


  .process-step:not(:last-child)::after{
    content: '';
  }

  .section-container-scinex{
    padding: 0 20px;
  }
  .link-card{padding: 0 20px; }

}

/* スマホ幅でさらに調整 */
@media (max-width: 480px) {
  .link-card{padding: 10px; margin: 20px 0 0;}
  .link-card-wrapper{margin: 0 0 20px;}
  .link-card-containar{ 
    grid-template-columns: 0.7fr 0.3fr;
    gap: 10px;
    padding: 10px;
    align-items: center;
  }
  .link-card-containar2{
    grid-template-columns: 0.4fr 0.6fr;
    gap: 10px;
    padding: 10px;
  }
  .link-card-lead{font-size: 12px; padding: 0 10px; margin: 0 0 10px;}
  .link-card-title{font-size: 14px; margin: 0 0 10px}
  .link-card-text{font-size: 12px; margin: 10px 0;}
  .link-card-domain{font-size: 8px;}
  .link-card-image img{ min-width: 100px;}

  .section-container-scinex{
    margin: 10px auto;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-container-scinex .section-subtitle{
    font-size: 12px;
  }
  .link-card2{
    margin: 0 0;
  }

  .value-catch::before { margin-right: 5px;}
  .value-catch::after { margin-left: 5px;}
  .value-wrapper .section-title {
    font-size: 18px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .value-wrapper .section-subtitle{
    margin: 0 auto 20px;
    font-size: 12px;
  }

  .value-grid { gap: 10px;}
  .value-card { padding: 10px 15px;}
  .value-number{ width:24px; height:24px; font-size: 12px;}
  .value-card h3{ font-size: 16px;}

  .value-photo { margin-bottom: 10px;}
  .value-icon { width: 44px; height: 44px;}
  .value-icon img { width: 50px; height: 50px;}
  .value-card-body { grid-template-columns: 60px 1fr; gap: 10px;}
  .value-card p { line-height: 1.5; font-size: 12px;}
  .value-badge { top: -5px; padding: 5px 10px;}
  .value-message { grid-template-columns: 1fr; padding: 0 20px 24px;}
  .value-message p { line-height: 1.5; font-size: 12px;}
  .value-message strong { font-size: 14px;}
}

/* process */
.process {
  padding: 80px 20px 100px;
  background: white;
}
.process-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.process-steps {
  display: flex;
  justify-content: space-between;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 34px;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  border: 2px solid #dcebf8;
  border-radius: 18px;
  padding: 10px 10px 40px;
  box-shadow: 0 12px 30px rgba(0, 76, 151, 0.1);
  transition: 0.3s ease;
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -37px;
  top: 45%;
  color: #2d6ab4;
  font-size: 36px;
  font-weight: bold;
}
.process-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2d6ab4, #1e4d8b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 5px;
}

.process-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}
.process-image img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.process-title {
  font-size: 18px;
  color: #123b68;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
}
.process-title::after{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #ff6b35;
}
.process-desc {
  padding-top: 10px;
  font-size: 14px;
  color: #666;
}
.process-wrapper .section-title{
  text-align: center;
  font-size: 36px;
  color: #123b68;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}
.process-wrapper .section-title::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff6b35;
}

@media (max-width: 1024px) {
  .process-step:not(:last-child)::after {
    right: -30px;
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .process {
    padding: 10px 16px 40px;
    background: white;
  }
  
  .process-wrapper .section-title{
    font-size: 32px;
  }
  .process-steps {
    padding: 10px 10px 20px;
    gap: 30px;
    flex-direction: column;
    align-items: stretch;
  }
  .process-step {
    margin: 0 150px;
    padding: 10px 10px 20px;
    display: grid;
    grid-template-columns: 50px 1fr 60px;
    grid-template-areas:
      "number title image"
      "number2 title2 image2";
    gap: 0 10px;
  }
  .process-step:not(:last-child)::after {
    content: '↓';
    right: unset;
    left: 46%;
    top: 100%;
    color: #2d6ab4;
    font-size: 24px;
    font-weight: bold;
  }
  .process-number {
    grid-area: number;
    width: 40px;
    height: 40px;
    font-size: 20px;
    align-content: center;
  }
  .process-image {
    grid-area: image;
    width: 50px;
    height: 50px;
  }
  .process-title {
    grid-area: title ;
    margin: 0;
  }
  .process-title::after{
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .process-desc {
    grid-area: title2 ;
    padding-top: 0;
    font-size: 12px;
    margin: 0 auto;
    text-align: left;
  }

}
@media (max-width: 480px) {
  .process-step {
    margin: 0;
  }
  .process-step:not(:last-child)::after {
    left: 45%;
  }
  .process-wrapper .section-title{
    font-size: 24px;
    margin-bottom: 10px;
    padding-bottom: 15px;
  }
}

.contact-catch {
  margin: 0 0 8px;
  text-align: center;
  color: #005bac;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.contact-catch::before {
  content: "＼";
  margin-right: 10px;
}
.contact-catch::after {
  content: "／";
  margin-left: 10px;
}
.contact-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 42px auto 24px;
}

.contact-fit-card {
  padding: 32px 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 76, 151, 0.08);
}

.contact-fit-good {
  border: 2px solid #dcebf8;
  border-top: 6px solid #005bac;
}

.contact-fit-note {
  border: 2px solid #f2d8c8;
  border-top: 6px solid #ff6b35;
}

.contact-fit-card h3 {
  margin: 0 0 18px;
  color: #004c97;
  font-size: 1.35rem;
  text-align: center;
  line-height: 1.5;
}

.contact-fit-note h3 {
  color: #b75222;
}

.contact-fit-card ul {
  margin: 0;
  padding-left: 1.2em;
}

.contact-fit-card li {
  margin-bottom: 10px;
  color: #444;
  line-height: 1.75;
  font-size: 0.95rem;
}

.contact-message {
  max-width: 900px;
  margin: 0 auto 34px;
  padding: 24px 28px;
  background: #fff;
  border: 2px solid #dcebf8;
  border-left: 6px solid #005bac;
  border-radius: 14px;
}

.contact-message p {
  margin: 0;
  color: #333;
  line-height: 1.9;
  text-align: center;
  font-weight: 700;
}
.reception-time{
  margin: 20px 0 0;
}

@media (max-width: 768px) {
  .contact-fit-grid {
    gap: 20px;
    margin: 32px auto 24px;
  }

  .contact-fit-card {
    padding: 15px 10px 24px;
  }

  .contact-fit-card h3 {
    font-size: 18px;
  }
  .contact-message {
    padding: 22px 20px;
  }
  .contact-message p {
    text-align: left;
    font-size: 0.95rem;
  }
  .contact-fit-card ul {
    padding-left: 0;
  }
  .contact-fit-card li {
    margin-bottom: 0;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-wrapper{
    padding: 20px 16px 40px;
  }

  .contact .section-title{
    font-size: 20px;
    padding: 0 0 10px;
    margin: 0 0 10px;
  }
  .contact .section-subtitle{
    font-size: 12px;
    text-align: left;
  }

  .contact-fit-grid {
    grid-template-columns: 1fr;
    gap: 5px;
    margin: 20px auto 10px;
  }

  .contact-fit-card {
    padding: 12px 10px;
  }
  .contact-fit-card h3 {
    font-size: 16px;
    margin: 0 0 10px;
  }
  .contact-fit-card li {
    margin-bottom: 0;
    font-size: 12px;
  }

  .contact-message {
    margin: 0 auto 20px;
    padding: 12px 28px;
  }
  .contact-message p {
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-button a {
    padding: 10px 60px;
    font-size: 16px;
  }
}

