:root {
  --gold: #b38c26;
  --white: #fff;
  --d-blu: #041c41;
  --color-accent: #0d2c66;
}
[id] {
  scroll-margin-top: 100px;
}

@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 1000px;
    }

}
@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1200px;
    }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1400px;
    }
}

.page-header-inner {
    margin: 5em auto 3em;
}
/* =====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;}
}

/*****hero section****/
.hero-section {
  position:relative;
  height:600px;
  overflow:hidden;
}

.hero-section img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:65%;
  height:100%;
  background:rgba(255,255,255,80%);
  clip-path:polygon(
    0 0,
    80% 0,
    100% 100%,
    0 100%
  );
}

.hero-copy{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  z-index:2;
}

.hero-copy h1{
  font-size:3.8rem;
  line-height:1.5;
  color:#0d2c66;
}

.hero-copy p{
  margin-top:30px;
  line-height:2;
  font-size:1.2rem;
}
.hero-btn-wrap {
  width: fit-content;
  margin: 0 auto; 
}
.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:40px;
  padding:16px 40px;
  border-radius: 5px;
  background: var(--gold);
  color: var(--white);
  text-decoration:none;
  font-weight:700;
  transition:.3s;
  box-shadow: 0 8px 20px rgb(194 183 53 / 25%);
}
.hero-btn:hover{
  transform: translateY(-3px);
  color: var(--white);
}
.hero-btn svg {
  margin-right: 8px;
}
.hero-subtext {
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-subtext::before,
.hero-subtext::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
}

.hero-subtext span {
  white-space: nowrap;
}
.hero-subtext {
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-subtext::before,
.hero-subtext::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
}

.hero-subtext span {
  white-space: nowrap;
}
.hero-points{
  display:flex;
  gap:15px;
  margin:35px 0 30px;
  flex-wrap:wrap;
}

.hero-points span{
  background:#0d2c66;
  color:#fff;
  padding:12px 20px;
  border-radius:5px;
  font-size:0.95rem;
  font-weight:600;
  line-height:1;
}
@media (min-width: 768px) {
  .hero-btn-wrap {
    margin-left: 0;
    margin-right: auto;
  }
}
@media (max-width: 767px){
  .hero-section {
    height:550px;
  }
  .hero-overlay{
    width:100%;
    clip-path:none;
    background:rgba(255,255,255,.75);
  }
  .hero-copy{
    left:20px;
    right:20px;
    width:auto;
  }
  .hero-copy h1{
    font-size:2rem;
    line-height:1.4;
  }
  .hero-btn{
    width:100%;
    max-width:320px;
    padding:14px 20px;
  }
  .hero-btn-wrap{
    width:100%;
    max-width:320px;
  }
}

/****trouble*** */
.trouble{
  padding:100px 0;
  background:#fff;
}

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

.section-title h2{
  font-size:2.2rem;
  color:var(--color-accent);
  font-weight:700;
  position:relative;
  display:inline-block;
}

.section-title h2::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:var(--gold);
  margin:18px auto 0;
}

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

.trouble-item{
  background:#f8f9fb;
  padding:40px 10px;
  text-align:center;
  transition:.3s;
}

.trouble-item:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.trouble-item img{
  width:70px;
  height:auto;
  margin-bottom:25px;
}

.trouble-item h3{
  font-size:1rem;
  color:var(--color-accent);
  margin-bottom:15px;
  line-height:1.6;
  font-weight:600;
  font-family: "Noto Sans JP";
}

.trouble-item p{
  line-height:1.8;
  color:#555;
  margin:0;
  text-align: left;
}



@media(max-width:991px){
  .trouble-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .trouble-item{
    padding:30px;
  } 
  .trouble-item h3 {
    font-size: 1.3rem;
  }
  .trouble-item p {
    font-size: 1.1rem;
  } 
}

@media(max-width:767px){
  .trouble{
    padding:70px 0;
  }

  .section-title h2{
    font-size:1.6rem;
    line-height:1.5;
    letter-spacing: -0.1rem;
  }

  .trouble-grid{
    grid-template-columns:1fr;
    gap:15px;
  }
  .trouble-item img{
    width:60px;
  }
}
/*********support******** */
.support{
  padding:100px 0;
  background:#fff;
}
.support .section-title{
  text-align:center;
  margin-bottom:20px;
}

.support .section-title h2{
  font-size:2.4rem;
  color:var(--d-blu);
  margin-bottom:10px;
  margin-top:0;
}
.support-subtitle{
  font-size:1.5rem;
  font-weight:600;
  color:#666;
}
.support-lead{
  text-align:center;
  font-size:1.2rem;
  color:var(--gold);
  font-weight:700;
  margin-bottom:60px;
}
.support-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.support-card{
  padding-left:25px;
  border-left:4px solid var(--gold);
}
.support-card h3{
  font-size:1.5rem;
  color:var(--d-blu);
  margin-bottom:20px;
  line-height:1.6;
  font-family: "Noto Sans JP";
}
.support-card p{
  line-height:2;
  color:#555;
}
.trouble-message{
  text-align:center;
  margin-top:60px;
  font-size:1.5rem;
  color:var(--color-accent);
  font-weight:500;
}
@media(max-width:767px){
  .support{
    padding:70px 0;
  }
  .support .section-title{
    margin-bottom:15px;
  }
  .support .section-title h2{
    font-size:1.8rem;
    line-height:1.5;
  }
  .support-lead{
    font-size: 1.3rem;
    margin-bottom:40px;
  }
  .support-grid{
    grid-template-columns:1fr;
    gap:35px;
  }
  .support-card{
    padding-left:20px;
    border-left-width:3px;
  }
  .support-card h3{
    font-size:1.25rem;
    margin-bottom:15px;
    line-height:1.5;
  }
  .support-card p{
    line-height:1.9;
  }
  .hero-points{
   display:none;
  }
  .hero-points span{
    width:100%;
    text-align:center;
    padding:14px;
  }
  .trouble-message{
    font-size:1.4rem;
  }
}

/*****message********/
.greeting{
  padding:120px 0;
  background:#f1f6fd;
  overflow:hidden;
}

.greeting-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  gap:70px;
}

.greeting-image{
  flex:0 0 25%;
  text-align: center;
}
.greeting-image p{
 font-weight:600;
 font-size:1.2rem;
 line-height: 1.5rem;
}

.greeting-image img{
  width:100%;
  display:block;
  margin-bottom: 20px;
}
.greeting-image span {
  font-size: 1rem;
}

.greeting-content{
  flex:1;
}

.section-label{
  color:var(--color-accent);
  font-weight:700;
  margin-bottom:20px;
  position:relative;
  padding-left:60px;
}

.section-label::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:40px;
  height:2px;
  background:var(--gold);
  transform:translateY(-50%);
}

.greeting-content h2{
  font-size:2.4rem;
  line-height:1.7;
  color:var(--color-accent);
  margin-bottom: 20px;
  
}
.greeting-content h3 {
 color:#c79b2b;
 margin-bottom:35px;
}


.greeting-content p{
  line-height:2;
  margin-bottom:20px;
  color:#444;
}

@media (max-width: 767px) {
  .greeting-inner {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .greeting-image {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .greeting-content {
    width: 100%;
  }

  .greeting-content h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .section-label {
    padding-left: 0;
  }

  .section-label::before {
    display: none;
  }

  .greeting {
    padding: 80px 0;
  }
}

/******flow******/
.flow{
  padding:100px 0;
  background:#fff;
}

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


.flow-list{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
}

.flow-item{
  flex:1;
  text-align:center;
}

.flow-number{
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--color-accent);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 25px;
  font-weight:700;
}

.flow-icon{
  margin-bottom:20px;
}

.flow-icon img{
  width:60px;
}

.flow-item h3{
  font-size:1.1rem;
  color:#222;
  margin-bottom:15px;
  font-family: "Noto Sans JP";
}

.flow-item p{
  line-height:1.8;
  color:#666;
  font-size: 1rem;
}

.flow-arrow{
  font-size:40px;
  color:#999;
  padding:80px 10px 0;
}
@media (max-width: 1024px) {
  .flow-list{
    overflow-x:auto;
    justify-content:flex-start;
    padding-bottom:10px;
  }
  .flow-item{
    min-width:180px;
    flex-shrink:0;
  }
  .flow-item p {
    text-align: left;
  }
}
@media(max-width:767px){
  .flow-list{
    flex-direction: column;
    gap: 40px;
  }
  .flow-item{
    width: 100%;
  }
  .flow-item p {
    text-align: center;
  }
  .flow-arrow{
    display: none;
  }
  .flow-item h3{
  font-size:1.3rem;
}
}
/******contact-cta******/
.contact-cta{
  padding:100px 0;
  background:var(--d-blu);
}
.contact-cta__content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

.contact-cta__text h2{
  font-size:3rem;
  line-height:1.5;
  color:var(--white);
  margin-bottom:25px;
}
.contact-cta__text p{
  color:var(--white);
  margin-bottom:40px;
  line-height:1.8;
}
.contact-cta__list{
  list-style:none;
  padding:0;
}
.contact-cta__list li{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
  font-size:1.1rem;
  font-weight:600;
  color:var(--white);
}
.contact-cta__list li::before{
  content:"✓";
  width:28px;
  height:28px;
  border:2px solid #d4aa2a;
  color:#d4aa2a;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  flex-shrink:0;
}
.contact-cta__form{
  width:45%;
  flex:none;
  background:#fff;
  padding:50px;
  border-radius:8px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.contact-cta__form h3{
  font-size:2rem;
  color:var(--d-blu);
  margin-bottom:30px;
}
.contact-cta__form span{
  font-size:1rem;
  color:#666;
}

/**/
.cta-contact{
  margin-top:50px;
}

.cta-tel{
  display: flex;
  align-items: center;
  gap: 8px; 
}

.cta-tel a{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:15px 10px;
  background:#b38c26;
  border:2px solid #b38c26;
  border-radius:10px;
  text-decoration:none;
  transition:.3s;
  min-width:350px;
}

.cta-tel a:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.cta-tel__label{
  font-weight:400;
  opacity:.9;
  margin-bottom:8px;
  color: #fff;
  font-size: 1.2rem;
}

.cta-tel__number{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:2.5rem;
  font-weight:700;
  line-height:1;
  color:#fff;
  letter-spacing: 1px;
}

.cta-tel__time{
  display:block;
  margin-top:12px;
  font-size:.9rem;
  color:#fff;
  text-align: center;
}

.tel-icon{
  width:32px;
  height:32px;
}

@media(max-width:767px){

  .cta-tel a{
    width:100%;
    min-width:auto;
    padding:18px 10px;
  }

  .cta-tel__number{
    font-size:1.8rem;
  }

  .tel-icon{
    width:26px;
    height:26px;
  }
}

@media(max-width:991px){

  .contact-cta{
    padding:70px 0;
  }

  .contact-cta__content{
    flex-direction:column;
    gap:50px;
  }

  .contact-cta__text h2{
    font-size:2rem;
  }

  .contact-cta__form{
    width:100%;
    padding:30px;
  }

}
/*********footer CTA ******* */
.footer-cta{
  padding:80px 0;
  background: linear-gradient(45deg, #051c41 0%, #041c41 60%, rgb(0 10 85 / 58%) 100%);
  position:relative;
  overflow:hidden;
}

.footer-cta::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:100%;
  background:url("<?php echo get_stylesheet_directory_uri(); ?>/assets/img/foot-bg.png")
  center center / cover no-repeat;
  opacity:.35;
}

.footer-cta .container{
  position:relative;
  z-index:2;
}

.footer-cta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

.footer-cta__content{
  width:55%;
}

.footer-cta__content h2{
  color:#fff;
  font-size:3rem;
  margin-bottom:30px;
  font-weight:700;
}

.footer-cta__content p{
  color:#fff;
  line-height:2;
  margin-bottom:40px;
  font-size:1.2rem;
}

.footer-cta__features{
  display:flex;
  justify-content: flex-start;
  gap:40px;
  list-style:none;
  padding:0;
  margin:0;
}

.footer-cta__features li {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 6px;  
  color:#fff;
  font-size:1.2rem
}

.footer-cta__features li img {
  width: 45px; 
  height: auto;
}

.footer-cta__box{
  width:600px;
  background:#fff;
  border-radius:8px;
  padding:40px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.footer-cta__badge{
  color:#c79b2b;
  font-weight:700;
  margin-bottom:25px;
}

.footer-cta__btn{
  display:block;
  background:#c79b2b;
  color:#fff;
  text-decoration:none;
  padding:20px;
  border-radius:4px;
  font-weight:700;
  margin-bottom:30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:1.2rem;
  gap: 8px;
}
.footer-cta__btn:hover {
  color:#fff;
}
.footer-cta__tel a {
  color: #0d2c66;
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 8px;
  font-weight: 700;
  font-size:2rem;
}

.footer-cta__tel span{
  display:block;
  margin-top:5px;
  color:#666;
  font-size:.9rem;
}
@media (max-width:991px){

  .footer-cta{
    padding:60px 0;
  }

  .footer-cta__inner{
    flex-direction:column;
    gap:40px;
    margin: 0 3rem;
  }

  .footer-cta__content{
    width:100%;
    text-align:center;
  }

  .footer-cta__content h2{
    font-size:1.8rem;
    line-height:1.5;
    margin-bottom:20px;
    text-align:left;
  }

  .footer-cta__content p{
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:30px;
    text-align:left;
  }


  .footer-cta__box{
    width:100%;
    padding:30px 20px;
  }

  .footer-cta__badge{
    margin-bottom:20px;
    font-size:.95rem;
  }

  .footer-cta__btn{
    padding:16px;
    font-size:1rem;
    margin-bottom:25px;
  }

  .footer-cta__tel span{
    font-size:.85rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cta__features li {
    flex-direction: column;
    gap: 10px;
  }
}


@media (max-width:767px){
  
  .footer-cta__features{
    flex-direction:column;
    align-items: center;
    gap:20px;
  }

  .footer-cta__features li{
    justify-content:unset;
    text-align: left;
  }

  .footer-cta__features li img{
    width:36px;
  }
}

/******footer.php*********/
.footer{
  background:var(--white);
  color:var(--color-accent);
}

.footer a{
  color:var(--color-accent);;
  text-decoration:none;
}

.footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:40px 0 0;
}

.footer-logo img{
  max-width:150px;
  height:auto;
}

.footer-nav{
  flex:1;
}

.footer-nav ul{
  display:flex;
  justify-content:flex-end;
  gap:25px;
  list-style:none;
  margin:0;
  padding:0;
  flex-wrap:wrap;
}

.footer-nav a{
  font-size:0.9rem;
  transition:.3s;
}

.footer-nav a:hover{
  opacity:.7;
}



.footer-btn{
  background:var(--d-blu);
  color:var(--white) !important;
  padding:14px 24px;
  border-radius:6px;
  font-weight:700;
  white-space:nowrap;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  text-align:center;
  padding:20px 0;
}

.footer-bottom p{
  margin:0;
  font-size:.85rem;
  opacity:.8;
}



@media (max-width:767px){

  .footer-top{
    flex-direction:column;
    text-align:center;
    padding:50px 0;
  }

  .footer-nav ul{
    flex-direction:column;
    gap:15px;
  }

  .footer-tel{
    text-align:center;
  }

  .footer-tel a{
    font-size:1.5rem;
  }

  .footer-btn{
    width:100%;
    max-width:280px;
  }

}

/***contact-page***/
.page-id-7 {
  background-color: #f8f9fb;
}
.snow-monkey-form{
    width: 100%;
}
.site-body {
    padding: 0 0 3.5rem;
}
@media(max-width:767px){
    .site-body {
    padding: 2rem 0 2rem;
}
}
.smf-form {
    max-width: 760px;
    margin: 40px auto;
    padding: 32px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.smf-item {
    margin-bottom: 26px;
}

.smf-item__label {
 margin-bottom: 10px;;
}
.smf-label {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
    display: block;
}

.smf-input,
.smf-select,
.smf-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    font-size: 15px;
    transition: all .2s ease;
}

.smf-input:focus,
.smf-select:focus,
.smf-textarea:focus {
    border-color: #0078d4;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,120,212,0.15);
    outline: none;
}

.smf-textarea {
    min-height: 160px;
    resize: vertical;
}
.smf-action .smf-button-control__control {
    background-color:#0d2c66;
    color: #fff;
    background-image:unset;
}

@media (max-width: 600px) {
    .smf-form {
        padding: 22px;
    }
}
