
:root{
  --blue:#2d71b4;
  --green:#2ea38d;
  --orange:#ff8a3d;
  --text:#333;
  --gray:#666;
  --border:#e8edf2;
  --bg:#f8fafc;
  --l-blue:#eaf3f9;
  --l-green:#eaf4f2;
  --l-orange:#fcf3eb;  
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1240px;
    }
}
p {
    margin-bottom: unset;
}
[id] {
  scroll-margin-top: 120px;
}
/* =====RESPONSIVE ==== */
.pc-br { display:none; }
.ipad-br { display:none; }
.sp-br { display:none; }
@media (min-width:1200px){
  .pc-br{display:inline;}
}
@media (min-width:768px) and (max-width:1199px){
  .ipad-br{display:inline;}
}
@media (max-width:767px){
  .sp-br{display:inline;}
}
/*------------
header
-------------*/
    *,
*::before,
*::after{
box-sizing:border-box;
}
.site-header{
position:fixed;
top:0;
left:0;
width:100%;
height:90px;
background:#fff;
border-bottom:1px solid #e8eef6;
z-index:9999;
transition:all .3s ease;
}
.site-header.is-scrolled{
height:72px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.header-inner{
max-width:1600px;
height:100%;
margin:0 auto;
padding:0 20px;
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
}
.site-logo{
flex-shrink:0;
}
.site-logo a{
display:flex;
align-items:center;
text-decoration:none;
}
.site-logo img{
display:block;
height:60px;
width:auto;
transition:.3s;
}
.global-nav{
flex:1;
display:flex;
justify-content:flex-end;
}
.nav-menu{
display:flex;
align-items:center;
gap:38px;
margin:0;
padding:0;
list-style:none;
}
.nav-menu>li{
position:relative;
margin:0;
padding:0;
}
.nav-menu>li>a{
display:block;
padding:8px 0;
font-size:16px;
font-weight:600;
color:#1b315f;
text-decoration:none;
transition:.3s;
position:relative;
letter-spacing:.05em;
}
.nav-menu>li>a::after{
content:"";
position:absolute;
left:0;
bottom:-3px;
width:0;
height:2px;
background:#2f80ed;
transition:.3s;
}
.nav-menu>li>a:hover{
color:#2f80ed;
}
.nav-menu>li>a:hover::after{
width:100%;
}

.header-contact{
display:flex;
align-items:center;
gap:18px;
flex-shrink:0;
}
.tel-box{
display:flex;
flex-direction:column;
align-items:flex-end;
line-height:1.4;
}
.tel-box .small{
font-size:12px;
color:#7c8aa5;
}
.tel-box .tel{
font-size:24px;
font-weight:700;
color:#2d71b4;
text-decoration:none;
transition:.3s;
display: flex;
align-items: center;
gap: 8px;
}
.tel-box .tel span {
  display: flex;
  align-items: center;
}
.tel-box .tel img {
    width: 25px;
    height:25px;
}
.tel-box .tel:hover{
color:#31466b;
}
.header-contact .contact-btn{
display:inline-flex;
align-items:center;
justify-content:center;
height:52px;
padding:0 28px;
background:#6cac72;
color:#fff;
text-decoration:none;
font-size:15px;
font-weight:700;
border-radius:999px;
transition:.3s;
white-space:nowrap;
}
.header-contact .contact-btn:hover{
transform:translateY(-2px);
}

.hamburger{
display:none;
width:52px;
height:52px;
border:none;
background:none;
padding:0;
cursor:pointer;
position:relative;
flex-shrink:0;
}
.hamburger span{
position:absolute;
left:11px;
width:30px;
height:3px;
background:#32b067;
transition:.3s;
}
.hamburger span:nth-child(1){
top:16px;
}
.hamburger span:nth-child(2){
top:25px;
}
.hamburger span:nth-child(3){
top:34px;
}
body{
padding-top:90px;
}
@media(max-width:1024px){
.header-inner{
gap:10px;
}
.nav-menu{
gap:24px;
}
.nav-menu>li>a{
font-size:15px;
}
.tel-box{
display:none;
}
.header-contact .contact-btn{
padding:0 22px;
font-size:14px;
}
}

/* ===========================
   Drawer Menu
=========================== */

.mobile-menu{
    position:fixed;
    top:0;
    right:0;
    width:350px;
    height:100vh;
    background:#fff;
    z-index:10000;
    transform:translateX(100%);
    visibility:hidden;
    transition:
        transform .5s ease,
        visibility 0s linear .5s;
    overflow-y:auto;
    box-shadow:-10px 0 30px rgba(0,0,0,.15);
}

.mobile-menu.open{
    transform:translateX(0);
    visibility:visible;
    transition:transform .5s ease;
}

.mobile-menu-inner{
    position:relative;
    width:100%;
    margin:0 auto;
    padding:100px 30px 50px;
}

.close-menu{
    position:absolute;
    top:25px;
    right:20px;
    width:48px;
    height:48px;
    border:none;
    background:none;
    font-size:38px;
    line-height:1;
    color:#1b315f;
    cursor:pointer;
    transition:.3s;
}

.close-menu:hover{
    color:#2f80ed;
    transform:rotate(90deg);
}

.mobile-nav{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.mobile-nav li{
    width:100%;
    margin:0;
    border-bottom:1px solid #e8eef6;
    list-style:none;
}

.mobile-nav li:first-child{
    border-top:1px solid #e8eef6;
}

.mobile-nav li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
    font-size:17px;
    font-weight:600;
    color:#1b315f;
    text-decoration:none;
    transition:.3s;
}

.mobile-nav li a:hover{
    color:#2f80ed;
    padding-left:10px;
}

.mobile-contact{
    margin-top:35px;
    display:flex;
    flex-direction:column;
    gap:15px;
}
.mobile-tel{
    display:flex;
    align-items:center;
    justify-content:center;
    height:54px;
    border:2px solid #2d71b4;
    border-radius:999px;
    font-size:20px;
    font-weight:700;
    text-decoration:none;
    color:#2d71b4;
    transition:.3s;
}
.mobile-contact .mobile-tel img {
    width: 25px;
    height:25px;
}
.mobile-tel:hover{
    background:#2d71b4;
    color:#fff;
}

.mobile-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    height:56px;
    background:#6cac72;
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    border-radius:999px;
    box-shadow:0 10px 25px rgba(47,128,237,.2);
    transition:.3s;
}

.mobile-btn:hover{
    background:#6cac72;
    transform:translateY(-2px);
    color:#fff;
}
body.menu-open{
    overflow:hidden;
}
@media(max-width:1024px){
.site-header{
height:72px;
}
.header-inner{
padding:0 16px;
}
.site-logo img{
height:52px;
}
.global-nav{
display:none;
}
.header-contact{
display:none;
}
.hamburger{
display:block;
}
body{
padding-top:72px;
}
}



/*------------
hero
-------------*/

.hero-section {
  position: relative;
  padding-top: 70px;
  background: linear-gradient(135deg, #f9fbfd 0%, #edf4f9 100%);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  max-width: 1500px;
  margin: auto;
  height: 600px;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 800px;
  padding-left: 40px;
}

.top-subtext {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1b3542;
  margin-bottom: 15px;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.badge {
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 4px;
  background: #fff;
}
.badge-blue {
  border: 2px solid #0066cc;
  color: #0066cc;
}
.badge-green {
  border: 2px solid #6cac72;
  color: #6cac72;
}
.badge-text {
  font-weight: bold;
  color: #1b3542;
}
.lead-text {
  font-size: 1.2rem;
  color: #31466b;
  margin-bottom: 40px;
}
.features-row {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
.feature-circle {
  width: 170px;
  height: 170px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}
.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%; 
  height: 100%;
  z-index: 1;
}
.main-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0 0 0 100px; 
}
.fv-cta {
  margin: 30px auto 70px;
  position: relative;
  z-index: 20;
  max-width: 1100px;
  padding: 0 20px;
}
.fv-cta-inner {
  background: #fff;
  border: 2px solid #f3a46a;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 26px 40px;
}
.fv-cta-text {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.fv-cta-label {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #ff8a3d;
  color: #ff8a3d;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.fv-cta-text p {
  margin: 0;
  color: #2d71b4;
  font-size: 18px;
  font-weight: 600;
}
.fv-cta-buttons {
  display: flex;
  gap: 15px;
}
.cta-btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 320px;
  height: 60px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
  background: #ff8a3d;
  color: #fff;
}
.cta-btn-orange:hover {
  transform: translateY(-2px);
  color: #fff;
}
.target-section {
  background: #ebf2f9;
  padding: 20px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  position: relative;
  z-index: 3;
  max-width: 1600px;
  margin-top: 30px;
  border: 8px solid #fff;
  border-radius: 12px;
}
.target-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #0055aa;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .1rem;
}
.target-title::before,
.target-title::after {
  content: "";
  width: 50px;
  height: 2px; 
  background: #0055aa;
}
.target-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
}
.target-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
}
.box-title {
  font-size: 1rem;
  text-align: center;
  padding: 6px 20px;
  border-radius: 20px;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 20px;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .1rem;
}
.title-blue { background-color: #2d71b4; }
.title-green { background-color: #6cac72; }
.target-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 5px;
  margin: 0;
}
.target-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  flex: 1;
}
.target-list li:not(:first-child) {
  border-left: 1px dashed #4fbcc3;
}
.list-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.target-list li span {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #31466b;
  font-weight: 500;
}
.cta-bar {
  background-color: #2d71b4;
  color: #ffffff;
  padding: 15px 0;
  text-align: center;
}
.cta-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.cta-text {
  font-size: 1.2rem;
  letter-spacing: .1rem;
}
.text-yellow {
  color: #fffb00;
  font-size: 1.4rem;
}
.cta-bar .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  background: #fff;
  color: #2d71b4;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: .3s;
  white-space: nowrap; 
}
.cta-bar .contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  color: #2d71b4;
}

@media (max-width: 992px) {
  .hero-section {
    padding-top: 0;
  }
  .hero-inner {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 5px;
  }
  .hero-visual {
    position: static;
    width: 100%;
    height: auto;
  }
  .hero-content {
    position: static;
    transform: none;
    max-width: 100%;
    padding: 20px;
  }
  .main-img {
    height: auto;
    border-radius: 0;
  }
  .feature-circle {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .feature-circle img {
    width: 90%;
  }
  .features-row {
    gap: 50px;
  }
  .target-section {
    padding: 20px 10px;
  }
  .target-box {
    padding: 20px 5px;
  }
  .target-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .cta-text {
    margin: 0;
  }
  .cta-inner .contact-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .fv-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 25px;
    gap: 15px;
  }
  .fv-cta-text {
    justify-content: center;
    gap: 10px;
  }
  .features-row {
      gap: 5px;
    } 
  .badge-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .badge-text {
    display: none;
  }
}

/*==================================================
  小規模だからできること
==================================================*/
.reason {
  padding: 100px 0;
  background: #F7F7F5;
}

.reason .container {
  max-width: 1400px;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title .section-en {
  display: block;
  font-size: 18px;
  color: #9aa8bb;
  font-style: italic;
  margin-bottom: 8px;
  letter-spacing: .08em;
}

.section-title h2 {
  font-size: 42px;
  color: #31466b;
  font-weight: 700;
  margin: 0;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.reason-item {
  text-align: center;
  padding: 0 15px;
}

.reason-item:not(:last-child) {
  border-right: 1px solid #e7edf5;
}

.reason-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  border-radius: 50%;
  border: 2px solid #1c88c3;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

.reason-icon img {
  width: clamp(50px, 10vw, 60px);
}

.reason-item:hover .reason-icon {
  transform: translateY(-6px);
  border-color: #2e61ab;
  box-shadow: 0 12px 25px rgba(13,78,165,.15);
}

.reason-item h3 {
  font-size: 24px;
  color: #31466b;
  margin-bottom: 18px;
  font-weight: 700;
}

.reason-item p {
  font-size: 16px;
  line-height: 2;
  color: #666;
  margin: 0;
  text-align: left;
}

.pricing-section {
  width: 100%;
  padding: 70px 0 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}

.plan-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: visible;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 3px solid transparent;
}

.card-header {
  padding: 18px;
  text-align: center;
  color: #fff;
  border-radius: 13px 13px 0 0;
}
.card-header h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: unset;
  font-family: 'Noto Sans JP', sans-serif;
}
.card-body {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}
.plan-light {
  border-color: #2ea38d;
}
.plan-light .card-header {
  background-color: #2ea38d;
}
.plan-standard {
  border-color: #2d71b4;
}
.plan-standard .card-header {
  background-color: #2d71b4;
}
.plan-maintenance {
  border-color: var(--orange);
}
.plan-maintenance .card-header {
  background-color: var(--orange);
}
.price-box {
  display: flex;
  align-items:baseline;
  justify-content: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e0e0e0;
}
.badge {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 8px;
}
.badge.buy-once {
  border: 1px solid #1a5ea8;
  color: #1a5ea8;
  margin: 0 auto 0;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
}
.badge.subsc {
  border: 1px solid #f59e0b;
  color: var(--orange);
  margin: 0 auto 0;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
}
.price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.03em;
  font-family: 'Noto Serif JP', serif;
}
.tax {
  font-size: 0.95rem;
  font-weight: bold;
  text-align: left;
  margin-left: 4px;
  line-height: 1.2;
}
.recommend-text {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  min-height: 45px; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
  flex-grow: 1; 
}
.features-list li {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #333;
}
.features-list li i {
  margin-right: 8px;
  font-size: 1.1rem;
}
.plan-light .features-list li i { color: #2ea38d; }
.plan-standard .features-list li i { color: #1a5ea8; }
.plan-maintenance .features-list li i { color: var(--orange); }
.plan-card .btn {
  display: block;
  background-color: #2d71b4;
  color: #fff;
  text-decoration: none;
  padding: 14px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.plan-card .btn:hover {
  transform: translateY(-2px);
}
.plan-light .btn {
  background-color: #2ea38d;
}
.plan-standard .btn {
  background-color: #2d71b4;
}
.plan-maintenance .btn {
  background-color: var(--orange);
}
.featured {
  transform: scale(1.03); 
  box-shadow: 0 10px 25px rgba(26, 94, 168, 0.15);
  z-index: 2;
}
.ribbon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffeb3b;
  color: #1a5ea8;
  border: 2px solid #1a5ea8;
  padding: 4px 20px;
  font-weight: bold;
  border-radius: 20px;
  z-index: 2000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
  .reason {
    padding: 80px 0;
  }
  .section-title h2 {
    font-size: 34px;
  }
  .reason-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
  .reason-item {
    border: none !important;
  }
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr; 
    gap: 40px;
    max-width: 450px;
    margin: 0 auto;
  }
  .featured {
    transform: none; 
  }
  .recommend-text {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .reason {
    padding: 60px 0;
  }
  .section-title {
    margin-bottom: 50px;
  }
  .section-title .section-en {
    font-size: 15px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .reason-list {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .reason-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  .reason-item h3 {
    font-size: 21px;
  }
  .reason-item p {
    font-size: 15px;
    line-height: 1.9;
  }
}

/*****************
works
*********************/
.works {
  padding: 70px 0;
  background: #fff;
}
.works .container {
  max-width: 1400px;
}
.works-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .works-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.work-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  transition: .3s;
  padding: 10px;
}
.work-card a {
  color: inherit;
  text-decoration: none;
}
.work-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
  border-radius: 5px;
}
.work-card:hover img {
  transform: scale(1.05);
}
.work-body h3 {
  font-size: 1.2rem;
  color: #31466b;
  margin-top: 8px;
  margin-bottom: 8px;
}
.work-body p {
  color: #666;
  font-size: .9rem;
}
.flow {
  padding: 100px 0;
  background: #F7F7F5;
}
.flow .container {
  max-width: 1400px;
}
.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.flow-item {
  position: relative;
  background: #fff;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.flow-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: .9rem;
  font-weight: 700;
  color: #0d4ea5;
}
.flow-item h3 {
  font-size: 1.2rem;
  color: #31466b;
  margin-bottom: 15px;
  font-family: 'Noto Sans JP', sans-serif;
}
.flow-item p {
  color: #666;
  line-height: 1.9;
  font-size: 1rem;
  text-align: left;
}
.flow-item img {
  width: 150px;
}
@media (min-width: 992px) {
  .flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 85px;
    right: -22px;
    width: 14px;
    height: 14px;
    border-top: 3px solid #0d4ea5;
    border-right: 3px solid #0d4ea5;
    transform: rotate(45deg);
  }
}
@media (max-width: 991px) {
  .flow {
    padding: 80px 0;
  }
  .flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .flow {
    padding: 60px 0;
  }
  .flow-list {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .flow-item {
    padding: 35px 20px;
  }
  .flow-item h3 {
    font-size: 1.2rem;
  }
  .flow-item p {
    font-size: .9rem;
  }
}
/****************
about-section
*****************/
.about {
  padding: 100px 0 50px;
  background: #fff;
}
.about .container {
  max-width: 1400px;
}
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 60px;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
.about-content {
  text-align: center;
  padding: 20px;
}
.about-content h3 {
  font-size: 2rem;
  color: #31466b;
  margin-bottom: 25px;
  line-height: 1.5;
  text-align: left;
}
.about-content > p {
  color: #666;
  line-height: 2;
  margin-bottom: 35px;
  text-align: left;
}
.about-point {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
  margin-bottom: 40px;
}
.point-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  text-align: left;
}
.point-item i {
  color: #2d71b4;
  font-size: 1.2rem;
}
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: #2d71b4;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: transform .3s;
}
.about-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}
.faq {
  padding: 100px 0;
  background: #fff;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 50px;
  align-items: start;
  margin-top: 60px;
}
.faq-list {
  margin-top: 0;
}
.faq-item {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}
.faq-question {
  position: relative;
  width: 100%;
  padding: 22px 30px;
  border: none;
  background: #fff;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: #31466b;
  cursor: pointer;
  font-family: inherit;
  outline: none;
}
.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #0d4ea5;
  transition: transform .3s;
}
.faq-item.active .faq-question::after {
  content: "−";
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer p {
  padding: 0 30px 25px;
  color: #666;
  line-height: 2;
}
.faq-cta {
  position: sticky;
  top: 100px;
}
.faq-cta .cta-box {
  padding: 35px;
  background: #fff;
  border: 2px solid #f6a55a;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.faq-cta .cta-box__title {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 1.5;
  color: #214d84;
}
.faq-cta .cta-box__description {
  margin-bottom: 30px;
  color: #666;
  line-height: 1.9;
}
.faq-cta .cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 58px;
  margin-bottom: 30px;
  background: #f28c28;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color .3s, transform .3s;
}
.faq-cta .cta-point {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq-cta .cta-point li {
  margin-bottom: 12px;
  color: #555;
  font-size: 1rem;
}
@media (max-width: 991px) {
  .about {
    padding: 80px 0;
  }
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .about-content h3 {
    font-size: 1.7rem;
  }
  .faq {
    padding: 60px 0;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-cta {
    position: static;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 60px 0 0;
  }
  .about-wrap {
    margin-top: 40px;
  }
  .about-content h3 {
    font-size: 1.5rem;
  }
  .about-point {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .about-btn {
    width: 100%;
    padding: 15px;
  }
  .faq-question {
    padding: 20px;
  }
  .faq-question::after {
    right: 20px;
  }
  .faq-answer p {
    padding: 0 20px 20px;
  }
  .faq-cta .cta-box {
    padding: 25px;
  }
  .faq-cta .cta-box__title {
    font-size: 24px;
  }
}
/*******************
contact-cta
*******************/
.contact-cta {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  max-width: 1400px;
  border-radius: 10px;
  margin: 20px auto;
}
.contact-cta__overlay {
  position: absolute;
  inset: 0;
  background: #31466b;
  opacity: .95;
}
.contact-cta__container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1fr;
  align-items: center;
  gap: 30px;
}
.contact-cta__text {
  color: #fff;
}
.contact-cta__text h2 {
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
.contact-cta__text p {
  color: rgba(255,255,255,.9);
  line-height: 1.8;
  margin: 0;
}
.contact-cta__tel {
  text-align: center;
  padding: 25px 15px;
  border-left: 1px solid rgba(255,255,255,.3);
  border-right: 1px solid rgba(255,255,255,.3);
  color: #fff;
}
.contact-cta__tel i {
  display: block;
  font-size: 2rem;
  margin: 10px auto;
}
.contact-cta__tel a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
}
.contact-cta__action {
  display: flex;
  justify-content: center;
}
.contact-cta__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  min-height: 120px;
  border-radius: 12px;
  background: #6cac72;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
}
.contact-cta__btn i {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.contact-cta__btn:hover {
  color: #fff;
  transform: translateY(-4px);
}
@media (max-width:991px) {
  .contact-cta {
    padding: 70px 0;
    margin: 10px;
  }
  .contact-cta__container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  .contact-cta__text h2 {
    font-size: 1.8rem;
  }
  .contact-cta__tel {
    border: none;
    padding: 20px 0;
  }
  .contact-cta__tel a {
    font-size: 1.8rem;
  }
  .contact-cta__btn {
    max-width: 420px;
    margin: auto;
  }
}
@media (max-width:767px) {
  .contact-cta__text h2 {
    font-size: 1.5rem;
  }
  .contact-cta__tel a {
    font-size: 1.5rem;
  }
}
#back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 50%;
  border: none;
  background: #6cac72;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#back-to-top:hover {
  background: #82b587;
}
.contact-page {
  padding: 80px 0;
}
.contact-page .container {
  max-width: 1000px;
}
.contact-page .contact-form {
  margin-top: 50px;
}
.contact-text {
  max-width: 700px;
  margin: 0 auto 40px;
}
.contact-text p {
  text-align: left;
  line-height: 2;
}
.smf-progress-tracker {
  margin-bottom: 50px;
}
.contact-page .smf-form {
  background-color: #fff;
}
.contact-page .smf-action .smf-button-control__control {
  background-color: #2d71b4;
  background-image: none;
  color: #fff;
}
.smf-complete-content {
  padding: 20px;
  background: #4878b7;
  color: #fff;
  border-radius: 10px;
}
/**------------

---------------*/
.plan-page {
  background: var(--bg);
  color: var(--text);
  padding: 40px 0;
}

.plan-page .container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.plan-hero {
  overflow: hidden;
}

.plan-heading {
  position: relative;
  min-height: 520px;
}

.plan-heading-text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 40px;
}

.plan-page .plan-subtitle {
  display: inline-block;
  color: #2b74d8;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 15px;
}

.plan-heading h1 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .1rem;
  text-shadow:
    1px 0 0 #ffffff,
   -1px 0 0 #ffffff,
    0 1px 0 #ffffff,
    0 -1px 0 #ffffff;
}

.plan-page .plan-heading p {
  color: var(--gray);
  line-height: 2;
}

.plan-heading-image {
  position: absolute;
  top: 0;
  right: -80px;
  width: 60%;
  z-index: 1;
}

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

.pc-only {
  display: block;
}

.plan-page .plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  align-items: stretch;
}

.plan-page-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 0 35px 35px;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  overflow: visible;
}

.light {
  border: 3px solid var(--l-green);
}

.standard {
  border: 3px solid var(--l-blue);
}

.support {
  border: 3px solid var(--l-orange);
}

.plan-number {
  position: absolute;
  width: 68px;
  height: 68px;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.light .plan-number {
  background: var(--green);
}

.standard .plan-number {
  background: var(--blue);
}

.support .plan-number {
  background: var(--orange);
}

.plan-page .plan-icon {
  text-align: center;
  margin-bottom: 25px;
}

.plan-page .plan-icon img {
  width: 80px;
  height: auto;
  padding-top: 60px;
}

.plan-page-card h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: 'Noto Sans JP', sans-serif;
}

.light h2 {
  color: var(--green);
}

.standard h2 {
  color: var(--blue);
}

.support h2 {
  color: var(--orange);
}

.price {
  text-align: center;
  margin: 25px 0 15px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.price span {
  margin-left: 5px;
  font-size: 1rem;
  font-weight: 700;
}

.light .price,
.light .price span {
  color: var(--green);
}

.standard .price,
.standard .price span {
  color: var(--blue);
}

.support .price,
.support .price span {
  color: var(--orange);
}

.plan-label {
  display: inline-block;
  margin: 0 auto 25px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}

.light .plan-label {
  background: var(--green);
}

.standard .plan-label {
  background: var(--blue);
}

.support .plan-label {
  background: var(--orange);
}

.plan-page-card .plan-label {
  display: table;
}

.plan-copy {
  margin-bottom: 25px;
  text-align: center;
  color: #555;
  line-height: 1.8;
  font-weight: 700;
}

.plan-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.plan-tags span {
  padding: 7px 14px;
  border-radius: 5px;
  font-size: .85rem;
  font-weight: 600;
}

.light .plan-tags span {
  background: #eaf3f9;
  color: var(--green);
}

.standard .plan-tags span {
  background: #eaf4f2;
  color: var(--blue);
}

.support .plan-tags span {
  background: #fcf3eb;
  color: var(--orange);
}

.plan-page-card > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-page-card > ul li {
  position: relative;
  padding: 10px 0 5px 28px;
  border-bottom: 1px solid #eee;
  line-height: 1.7;
  font-weight: 700;
  color: #555;
}

.plan-page-card > ul li:last-child {
  border-bottom: none;
}

.plan-page-card > ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  font-weight: bold;
}

.light > ul li::before {
  color: var(--green);
}

.standard > ul li::before {
  color: var(--blue);
}

.support > ul li::before {
  color: var(--orange);
}

.recommend {
  margin: 35px 0;
  padding: 24px;
  border-radius: 16px;
  background: #f8fafc;
}

.recommend h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}

.light .recommend h3 { color: var(--green); }
.standard .recommend h3 { color: var(--blue); }
.support .recommend h3 { color: var(--orange); }

.recommend ul {
  margin: 0;
  padding-left: 20px;
}

.recommend li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.recommend li:last-child {
  margin-bottom: 0;
}
.recommend p{
  margin-top: 10px;
}
.light .recommend p{color:var(--green) ;}
.standard .recommend p{color:var(--blue) ;}

.common-benefit-section {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.benefit-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  padding: 15px 40px;
  box-sizing: border-box;
  gap: 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.benefit-message-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.benefit-icon-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2d3748;
  margin: 0;
}

.benefit-text strong {
  color: #1a202c;
  font-weight: 700;
}

.benefit-features {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  width: 80px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
}

.feature-icon img {
  width: 100%;
  height: auto;
}

.feature-label {
  font-size: 1rem;
  font-weight: bold;
  color: #4a5568;
  white-space: nowrap;
}

.plan-btn {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 16px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: .3s;
}

.light .plan-btn {
  background: var(--green);
}

.standard .plan-btn {
  background: var(--blue);
}

.support .plan-btn {
  background: var(--orange);
}

.plan-btn:hover {
  transform: translateY(-3px);
  filter: brightness(.95);
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  color: #fff;
}

.custom-cta-section {
  background-color: var(--blue);
  border-radius: 12px;
  color: #ffffff; 
  margin: 40px auto;
  padding: 10px 30px 0 30px; 
  max-width: 1200px; 
  overflow: hidden;
  box-sizing: border-box;
}

.custom-cta-inner {
  display: flex;
  flex-direction: column; 
  align-items: center;
  position: relative;
}

.custom-cta-title {
  color: #ffffff !important;
  font-size: 24px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
}
.custom-cta-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}
.custom-cta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.custom-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}
.custom-cta-icon i {
  margin-right: 0;
}
.custom-cta-text h3 {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 4px 0;
}
.custom-cta-text p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}
.custom-cta-image {
  width: 200px; 
  margin-top: 10px;
}
.custom-cta-image img {
  display: block;
  max-width: 250px;
  height: auto;
}
.custom-contact-container {
  max-width: 1000px;
  margin: 30px auto 60px;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
}
.custom-contact-lead {
  color: #005bac;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}
.custom-contact-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.custom-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  color: #ffffff !important;
  text-decoration: none !important;
  width: 100%;
  max-width: 500px;
  padding: 18px 25px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 91, 172, 0.2);
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
}
.custom-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 91, 172, 0.3);
}
.btn-icon {
  font-size: 22px;
  margin-right: 12px;
  display: flex;
  align-items: center;
}
.btn-text {
  text-align: center;
}
.btn-arrow {
  font-size: 16px;
  margin-left: 8px;
  display: flex;
  align-items: center;
}
.custom-time-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 20px;
  width: 100%;
  max-width: 250px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.time-tag {
  display: inline-block;
  color: #1a73e8;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 2px solid #1a73e8;
  margin-bottom: 6px;
  padding-bottom: 2px;
}

.time-text {
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
  margin: 0;
}

.time-text .highlight {
  color: #1a73e8;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .custom-cta-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .custom-cta-icon {
    margin-bottom: 12px;
  }
  .custom-cta-text p{
    text-align: left;
  }
  .plan-heading {
    min-height: 400px;
  }
}
@media (max-width: 991px) {
  .plan-page .plan-grid {
    grid-template-columns: 1fr;
    gap: 80px;
    max-width: 500px;
    margin: 0 auto;
  }
  .benefit-container {
    border-radius: 24px;
    flex-direction: column;
    padding: 30px 20px;
    gap: 24px;
    text-align: center;
  }
  .benefit-message-box {
    flex-direction: column;
    gap: 15px;
  }
  .benefit-text {
    font-size: 1rem;
    text-align: left;
  }
  .benefit-features {
    width: 100%;
    justify-content: space-around;
    gap: 10px;
    border-top: 1px dashed #cbd5e0;
    padding-top: 20px;
  }

}

@media (min-width: 768px) {
  .custom-cta-inner {
    flex-direction: row; 
    justify-content: space-between;
    align-items: flex-end;
  }
  .custom-cta-content {
    width: 70%; 
    padding-bottom: 30px; 
  }
  .custom-cta-title {
    text-align: left;
    font-size: 26px;
  }
  .custom-cta-features {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }
  .custom-cta-item {
    width: 32%; 
  }
  .custom-cta-image {
    width: 26%; 
    margin-top: 0;
  }
  .custom-contact-flex {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
  }
  .custom-contact-btn {
        max-width: 550px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
  }
  .custom-time-box {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .custom-cta-section{
    padding:30px 10px 0 10px;
  }  
  .custom-cta-image img {
    max-width: 200px;
  }
  .plan-page {
    padding: 0;
  }
  .plan-heading {
    min-height: auto; 
    display: flex;
    flex-direction: column;
    padding: 40px 0;
  }
  .plan-heading-text {
    width: 100%;
    padding-top: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  .plan-page .plan-subtitle {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .plan-heading h1 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 15px;
    letter-spacing: 0.05rem;
  }
  .plan-page .plan-heading p {
    line-height: 1.6;
    text-align: left;
    display: inline-block; 
    max-width: 100%;
  }
  .pc-only {
    display: none;
  }

  .plan-heading-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    z-index: 1;
  }

  .plan-page .plan-heading {
    margin-bottom: 50px;
  }

  .plan-page-card {
    padding: 60px 25px 30px;
    max-width: 600px;
    margin: auto;
  }

  .plan-page-card h2 {
    font-size: 1.5rem;
  }

  .plan-page .plan-icon img {
    width: 65px;
    padding-top: 0;
  }

  .plan-page .plan-number {
    width: 58px;
    height: 58px;
    font-size: 1.3rem;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .plan-heading h1 {
    font-size: 1.5rem;
  }

  .price {
    font-size: 2.5rem;
  }

  .plan-page-card {
    border-radius: 18px;
  }
}
/**---------
footer.page
------------*/
.site-footer {
  background: #F7F7F5;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 20px 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.footer-logo img {
  height: 85px;
}
.footer-copy {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #31466b;
  margin: 35px 0 20px;
}
.footer-text {
  color: #666;
  line-height: 2;
  font-size: 1rem;
}
.footer-nav {
  flex: 1;
}
.footer-menu h3 {
  font-size: 18px;
  color: #31466b;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #2d71b4;
}
.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-menu li {
  margin-bottom: 18px;
  font-size: 1rem;
}
.footer-menu a {
  color: #333;
  text-decoration: none;
  transition: .3s;
  display: inline-block;
}
.footer-menu a:hover {
  color: #31466b;
  transform: translateX(3px);
}
.footer-bottom {
  background: #2d71b4;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: auto;
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: #fff;
  margin: 0;
}
.footer-bottom ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991px) {
.footer-top {
  grid-template-columns: 1fr .8fr;
  gap: 50px;
}
}
@media(max-width: 767px) {
  .footer-top {
    display: block;
  }
  .footer-brand {
    margin-bottom: 50px;
  }  
  .footer-bottom-inner {
    display: block;
    text-align: center;
  }
  .footer-bottom ul {
    justify-content: center;
    margin-top: 15px;
  }
}
/**/
.sp-fixed-cta {
  display: none;
}
@media (max-width: 767px) {
  .sp-fixed-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08); 
    box-sizing: border-box;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .sp-fixed-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
  }

  .sp-fixed-cta__inner {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
  }

  .sp-fixed-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    box-sizing: border-box;
    transition: background-color 0.2s;
  }

  .sp-fixed-cta__btn--tel {
    flex: 1;
    background-color: #fff;
    border: 2px solid #2d71b4;
    color: #2d71b4 !important;
  }
  .sp-fixed-cta__btn--tel i {
    font-size: 16px;
    margin-right: 0;
  }

  .sp-fixed-cta__btn--mail {
    flex: 3;
    background-color: #ff8a3d;
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(255, 138, 61, 0.2);
  }
  .sp-fixed-cta__btn--mail i {
    font-size: 18px;
    margin-right: 0;
  }
  body {
    padding-bottom: 72px; 
  }
}