/* ===== CSS VARIABLES FOR DESIGN SYSTEM ===== */
:root {
  --color-primary: #0152C3;
  --color-secondary: #3377FF;
  --color-accent: #FDED40;
  --color-danger: #F00E0E;
  --color-success: #02AD33;
  --color-info: #94B9F3;
  --color-bg: #F8F8F8;
  --color-white: #fff;
  --color-black: #333;
  --color-brown: #FCEAAC;
  --color-error: #FCCCCB;
  --color-blue-gradient: linear-gradient(#3377FF, #1A3975);
  --color-green-gradient: linear-gradient(#0BFF50, #02AD33);
  --color-mail-gradient: linear-gradient(#00265C,#0051C2);
  --color-line-gradient: linear-gradient(#189e03,#02AD33);
  --font-main: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 20px;
  --font-size-xl: 28px;
  --font-size-xxl: 36px;
  --font-size-xxxl: 60px;
  --font-size-display: 72px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 12px rgba(1, 82, 195, 0.08);
}

/* ===== UNIFIED UTILITY CLASSES ===== */
.white { color: var(--color-white); }
.black { color: var(--color-black); }
.primary { color: var(--color-primary); }
.secondary { color: var(--color-secondary); }
.accent { color: var(--color-accent); }
.danger { color: var(--color-danger); }
.success { color: var(--color-success); }
.info { color: var(--color-info); }

.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-accent { background-color: var(--color-accent); }
.bg-danger { background-color: var(--color-danger); }
.bg-success { background-color: var(--color-success); }
.bg-info { background-color: var(--color-info); }
.bg-brown { background-color: var(--color-brown); }
.bg-error { background-color: var(--color-error); }
.bg-white { background-color: var(--color-white); }
.bg-black { background-color: var(--color-black); }
.bg-mail-btn { background: var(--color-mail-gradient); }
.bg-line-btn { background: var(--color-line-gradient); }
.bg-blue-gradient { background: var(--color-blue-gradient); }
.bg-green-gradient { background: var(--color-green-gradient); }

.font-main { font-family: var(--font-main); }

.xs { font-size: var(--font-size-xs); }
.sm { font-size: var(--font-size-sm); }
.md { font-size: var(--font-size-md); }
.lg { font-size: var(--font-size-lg); }
.xl { font-size: var(--font-size-xl); }
.xxl { font-size: var(--font-size-xxl); }
.xxxl { font-size: var(--font-size-xxxl); }
.display { font-size: var(--font-size-display); }

.bold { font-weight: bold; }
.bold900 { font-weight: 900; }
.italic { font-style: italic; }

.radius-sm { border-radius: var(--radius-sm); }
.radius-md { border-radius: var(--radius-md); }
.radius-lg { border-radius: var(--radius-lg); }

.shadow { box-shadow: var(--shadow); }

.gap4 { gap: 4px; }
.gap8 { gap: 8px; }
.gap16 { gap: 16px; }
.gap20 { gap: 20px; }
.gap24 { gap: 24px; }
.gap36 { gap: 36px; }
.gap60 { gap: 60px; }
.gap80 { gap: 80px; }
.gap120 { gap: 120px; }
.gap200 { gap: 200px; }

.p-8 { padding: 8px; }
.p-16 { padding: 16px; }
.p-20 { padding: 20px; }
.p-24 { padding: 24px; }
.p-32 { padding: 32px; }
.p-36 { padding: 36px; }
.p-60 { padding: 60px; }
.p-72 { padding: 72px; }
.p-120 { padding: 120px; }

.m-8 { margin: 8px; }
.m-16 { margin: 16px; }
.m-20 { margin: 20px; }
.m-24 { margin: 24px; }
.m-36 { margin: 36px; }
.m-60 { margin: 60px; }
.m-72 { margin: 72px; }
.m-120 { margin: 120px; }

/* Remove duplicate .xlarger, unify to .display or .xxxl */
.xlarger { font-size: var(--font-size-display); font-weight: 900; }

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body{
    width: 100%;
    /* max-width: 1920px; */
    margin: 0 auto;
    height: auto;
    font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    line-height: 1.6;
    color: #0152C3;
    overflow-x: hidden;
    
    
}
a{
  text-decoration: none;
}
main{
    width: 100%;
    height: auto;
    /* max-width: 1920px; */
}/* Base Styles */
.banner {
  display: flex;
  background-image: url(../img/firstview_bg.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
  height: auto;
  height: 540px;
}

.manner{
  width: 24rem;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 16.5vw;
  z-index: 1;
}
.family{
  width: 17.5rem;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 16.5vw;
  z-index: 1;
}
.price-lower{
  width: 20rem;
  height: auto;
  max-width: 100%;
}
.banner-text{
  width: 36rem;
  height: auto;
  max-width: 100%;
}
.banner_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  height: auto;
  /* padding: 2rem 2rem 1rem; */
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 1200px;
}

/* 郵便番号エリア検出機能のスタイル */

.postal-code-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
    gap: 0.5rem;
}
.postal-input-area{
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  gap: 4px;
  width: 100%;
}
.postal-title {
    font-size: 18px;
    color: #0152C3;
    font-weight: 700;
}

.postal-input-group {
    display: flex; 
    gap: 8px;
    margin-bottom: 4px;
    border: 2px solid #0051C2;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

#postal-input {
    flex: 1;
    padding: 8px 16px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    background: white;
    color: #0051C2;
    outline: none;
    
}

#postal-input::placeholder {
    color: #0051C2;
    opacity: 0.7;
}

#postal-check {
    background: #0051C2;
    color: white;
    border: none;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

#postal-check:hover {
    background: #003d91;
}

#postal-result {
    display: none;
}

#postal-result.show {
    display: block;
}

.contact-info {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 10px;
}

.phone-link {
    display: inline-block;
    background: #0152C3;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: #1D4698;
    transform: translateY(-2px);
}

/* ===== ステップフォーム ===== */
.step-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-number.active {
    background: #0152C3;
}

.step-number.completed {
    background: #4CAF50;
}

.step-line {
    width: 60px;
    height: 2px;
    background: #ddd;
}

.step-line.completed {
    background: #4CAF50;
}

/* ===== フォームフィールド ===== */


.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #0152C3;
}

.required-mark {
    background: #f44336;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #0152C3;
    box-shadow: 0 0 0 3px rgba(1, 82, 195, 0.1);
}

.form-input.error {
    border-color: #f44336;
}

.field-error {
    color: #f44336;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
}
/* ===== Banner Responsive Design ===== */

/* 1920px and above - Default styles already defined */

/* 1440px breakpoint */
@media screen and (max-width: 1440px) {
    .banner {
        height: 500px;
        padding: 1rem 0;
    }
    
    .manner {
        width: 22rem;
        left: 14vw;
    }
    
    .family {
        width: 16rem;
        right: 14vw;
    }
    
    .banner-text {
        width: 32rem;
    }
    
    .price-lower {
        width: 18rem;
    }
    
    .banner_content {
        gap: 1.8rem;
        padding: 1.8rem 1.8rem 1rem;
    }
    
    .postal-code-container {
        width: 400px;
        padding: 1rem 1.4rem;
    }
    
    .postal-title {
        font-size: 17px;
    }
}

/* 1024px breakpoint */
@media screen and (max-width: 1024px) {
    .banner {
        height: auto;
    }
    
    /* Hide manner and family images as requested */
    .manner, 
    .family {
        display: none;
    }
    
    .banner-text {
        width: 28rem;
    }
    
    .price-lower {
        width: 16rem;
    }
    
    .banner_content {
        gap: 1.6rem;
        padding: 1.6rem 1.6rem 1rem;
    }
    
    .postal-code-container {
        width: 380px;
        padding: 1rem 1.3rem;
    }
    
    .postal-title {
        font-size: 16px;
    }
    
    .postal-input-group {
        gap: 6px;
    }
    
    #postal-input {
        padding: 7px 14px;
        font-size: 15px;
    }
    
    #postal-check {
        padding: 7px 20px;
        font-size: 15px;
    }
}

/* 768px breakpoint */
@media screen and (max-width: 768px) {
    .banner {
        height: auto;
    }
    
    .manner, 
    .family {
        display: none;
    }
    
    .banner-text {
        width: 24rem;
    }
    
    .price-lower {
        width: 14rem;
    }
    
    .banner_content {
        gap: 1.4rem;
    }
    
    .postal-code-container {
        max-width: 380px;
        padding: 1rem;
    }
    
    .postal-title {
        font-size: 18px;
    }
    
    .postal-input-area {
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        width: 100%;
    }
    
    .postal-input-group {
        flex-direction: column;
        width: 20rem;
        gap: 0;
    }
    
    #postal-input {
        font-size: 16px;
        padding: 12px 16px;
        border-radius: 8px 8px 0 0;
    }
    
    #postal-check {
        padding: 15px;
        font-size: 14px;
        border-radius: 0 0 8px 8px;
    }
    
    .area-title {
        font-size: 20px;
    }
    
    .response-time {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 15px 25px;
    }
    
    .step-form-container {
        padding: 30px 15px;
    }
    
    .step-indicator {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step-line {
        width: 40px;
    }
}

/* 375px breakpoint */
@media screen and (max-width: 375px) {
    .banner {
        height: auto;
    }
    
    .banner-text {
        width: 20rem;
    }
    
    .price-lower {
        width: 12rem;
    }
    
    .banner_content {
        gap: 1.2rem;
        padding: 1.2rem 1rem 1rem;
    }
    
    .postal-code-container {
        padding: 1rem 1rem;
        max-width: 20rem;
        width: 100%;
    }
    
    .postal-title {
        font-size: 18px;
    }
    
    .postal-input-group {
        max-width: 280px;
        width: 100%;
    }
    
    #postal-input {
        font-size: 14px;
        padding: 12px 15px;
        width:320px;
    }
    
    #postal-check {
        padding: 12px 15px;
        font-size: 13px;
    }
}
    
    .success-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .success-content h3 {
        font-size: 20px;
    }
    
    .phone-link {
        font-size: 16px;
        padding: 12px 25px;
    }


/* ===== アクセシビリティ ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* フォーカス表示の改善 */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #0152C3;
    outline-offset: 2px;
}

/* ハイコントラストモード対応 */
@media (prefers-contrast: high) {
    .postal-code-container {
        border: 2px solid #000;
    }
    
    .cta-button {
        border: 2px solid #000;
    }
}
/* Base styles for 1920px (desktop) */
/* <!-- ----second view------ --> */
 .section-hero {
  width: 100%;
  padding: 3rem;
  background-image: url(../img/second_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-container{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-images {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-img {
  height: 540px;
  object-fit: contain;
  max-width: 100%;
}
.section-review {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.review-awards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* border-radius: 24px; */
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
  /* max-width: 1200px; */
  /* margin: 0 auto; */
}

.review-awards img {
  width: 240px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* border-radius: 12px; */
}

/* Hover effect (optional) */
.review-awards img:hover {
  transform: scale(1.05);
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
}



/* ─────── Responsive ─────── */

/* 1440px以下 */
@media (max-width: 1440px) {
  .hero-img {
    height: 360px;
  }
  
  .review-awards{
    gap: 0.5rem;
  }
  .review-awards img {
    width: 200px;
    height: auto;
  }

  .google-logo {
    width: 56px;
    height: 56px;
  }

  .google-stars img {
    width: 32px;
    height: 32px;
  }
}

/* 1024px以下 */
@media (max-width: 1024px) {
  .section-hero{
    gap: 1rem;
  }
  .review-awards{
    padding: 0;
  }
  .hero-person {
    display: none;
  }
  .hero-img {
    width: 30rem;
  }

  .section-review{
    flex-direction: column;
  }
  /* .review-awards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 24px;
  } */

  .review-awards img {
    width: 10rem;
    height: auto;
  }

  /* .google-stars img {
    width: 28px;
    height: 28px;
  } */
}

/* 768px以下 */
@media (max-width: 768px) {
  .section-review{
    gap: 0.5rem;
  }
  .review-awards{
    gap: 0.25rem;
  }
  .review-awards img {
    height: auto;
    width: 7.5rem;
  }
}
/* 375px以下 */
@media (max-width: 480px) {
  .section-hero{
    padding: 2rem 1rem;
  }
  .hero-main{
    width: 100%;
    height: auto;
  }
  .hero-person {
    display: none;
  }
  .hero-container{
    gap: 1rem;
  }

  .review-awards {
    gap:0.25rem;
    width: 100%;
  }

  .review-awards img {
    width: 5rem;
    height: auto;
  }
}


/* <!-- ----second view end------ --> */
/* -----------google review---------- */
.review-header{
  background-color: #0051C2;
  color: white;
  font-size: 3rem;
  font-weight: 900;
  display: flex;
  justify-content: center;
  text-align: center;
  height: 6rem;
  align-items: center;
}
.review-header p,
.review-header h2{
  letter-spacing: 0.25rem;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.review{
  width: 100%;
  background-color: #AFE7FE;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

}
/* ▶ review-google 横並びで拡大 */
.review-google {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.google-review-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: row;
}

.google-logo {
  width: 80px;
  height: auto;
}

.google-stars img {
  width: 36px;
  height: 36px;
}
.google-stars{
  display: flex;
  gap: 0.125rem;
}
.review-score {
  font-size: 2rem;
  color: #FC8504;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 700;
}
.review-score span:last-child{
    color: #0051C2;
}
.review-slide{
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 25rem;
  /* max-width: 36rem;
  height: auto; */
  position: relative;
}

/* Swiper navigation buttons for review section */
.review-slide .swiper-button-next,
.review-slide .swiper-button-prev {
  color: var(--color-primary);
  background: var(--color-white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-shadow: var(--shadow);
}

.review-slide .swiper-button-next:after,
.review-slide .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.review-slide .swiper-button-next:hover,
.review-slide .swiper-button-prev:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.slide-content{
  width: 25rem;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  height: auto;
  gap: 0.5rem;
  background-color: #ffffff;
  border: 0.25rem solid #FC8504;
  border-radius: 1rem;
}
.slide-header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  
}
.user-info{
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  
}
.userid{
  display: flex;
  flex-direction: column;

}
.id{
  color: #0051C2;
  font-weight: bold;
  font-size: 1.25rem;
}
.date{
  color: #333;
  font-size: 1rem;
}
.google-mark{
  /* width: 1rem;
  height: auto;
  padding: 0; */
}
.slide-text{
  display: flex;
  text-align: justify;
  font-size: 1rem;
  color: #333;
}

@media (max-width: 768px) {
  .review-header{
    font-size: 2.5rem;
    font-weight: 700;
  }
  .google-logo{
    width: 60px;
  }
  .google-stars img{
    width: 24px;
    height: auto;
  }
  .review-score{
    font-size: 1.5rem;
  }
  
  .slide-content{
    width: 20rem;
  }
  .review-slide{
    width: 20rem;
  }
}
@media (max-width: 375px) {
  .review-header{
    font-size: 2rem;
    font-weight: 700;
  }
  .slide-content{
    width: 15rem;
    padding: 0.5rem;
  }
  .review-slide{
    width: 15rem;
  }

}
/* -----------google review---------- */
/* <!-- -----reason------ --> */

.features-section {
  background-image: radial-gradient(#DFF4FF, #A7DBF8);
  padding: 4.5rem 1rem;
  display: flex;
  justify-content: center;
} 

.features-container {
  max-width: 75rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.features-title {
  font-size: 3rem;
  color: #0152C3;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-weight: 900;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.features-subtitle {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.features-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: calc(50% - 1rem);
}

.feature-box {
  /* background-color: #fff;
  border-radius: 1rem; */
  padding: 1.5rem;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feature-label {
  display: flex;
  /* gap: 0.5rem; */
  align-items: baseline;
}

.feature-label-en {
  font-size: 1.5rem;
  color: #0051C3;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: bold;
}

.feature-number {
  font-size: 2.75rem;
  color: #FC8504;
  font-weight: 900;
}

.feature-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0152C3;
}

.feature-image img {
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
}

.feature-description {
  font-size: 1.25rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}

/* ─────── Responsive Breakpoints ─────── */
@media (max-width: 1920px) {
  .features-title {
    font-size: 3rem;
  }
}

@media (max-width: 1440px) {
  .features-column {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .feature-box {
    width: calc(50% - 0.75rem);
  }
}

@media (max-width: 1024px) {
  .feature-box {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .features-title {
    font-size: 2.25rem;
  }

  .features-subtitle {
    font-size: 1.25rem;
  }

  .features-list {
    flex-direction: column;
  }
  .feature-title{
    font-size: 1.5rem;
  }
  .feature-number{
    font-size: 2rem;
  }
  .features-column {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .features-section{
    padding-top: 1.5rem;
  }
  .features-container
  .features-column{
    gap: 0.5rem;
  }
  .feature-box{
    padding: 0.25rem 1rem;
  }
  .features-list{
    gap: 0.25rem;
  }
  .features-title {
    font-size: 1.75rem;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 1rem;
  }
}
/* <!-- -----reason end------ --> */
/* ----------advert----------- */
.advert{
    width: 100%;
    
}
.behavior{
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8rem;
    align-items: center;
    background-color: yellow;
}
.behavior p{
    font-size: 1.75rem;
    font-weight: 700; 
    letter-spacing: 0.15rem;
}
.number{
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--color-danger);
}
.advert_content{
    padding: 1.5rem;
    width: 100%;
    background-color: #0051C2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.advert_content h4{
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}
.tel_btn{
    background-color: #FCEAAC;
    width: 700px;
    height: 90px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 12px;
    cursor: pointer;
    padding: 0.5rem;
}
.tel_btn div{
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}
.tel_number{
    color: var(--color-danger);
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    font-family: sans-serif;
}
.contact{
    width: 100%;
    background-color: #3377FF;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    gap: 15rem;
    justify-content: center;
    align-items: center;
}

/* ===== RESPONSIVE DESIGN FOR ADVERT SECTION ===== */

/* 1440px breakpoint */
@media (max-width: 1440px) {
    .behavior {
        gap: 10rem;
        padding: 0.75rem;
    }
    
    .behavior p {
        font-size: 1.5rem;
    }
    
    .number {
        font-size: 2rem;
    }
    
    .advert_content {
        padding: 1.25rem;
    }
    
    .advert_content h4 {
        font-size: 1.5rem;
    }
    
    .tel_btn {
        width: 600px;
        height: 80px;
    }
    
    .tel_number {
        font-size: 3rem;
    }
    
    .contact {
        gap: 12rem;
        padding: 1.25rem;
    }
}

/* 1024px breakpoint */
@media (max-width: 1024px) {
    .behavior {
        gap: 3rem;
        padding: 0.75rem;
    }
    
    .behavior img {
        width: 80px;
        height: auto;
    }
    
    .behavior p {
        font-size: 1.3rem;
    }
    
    .number {
        font-size: 1.7rem;
    }
    
    .advert_content {
        padding: 0.5rem;
    }
    
    .advert_content h4 {
        font-size: 1.3rem;
    }
    
    .tel_btn {
        width: 480px;
        height: 75px;
        gap: 0.5rem;
    }
    
    .tel_btn img[alt="telephone"] {
        height: 40px;
    }
    
    .tel_btn img[alt="r"] {
        width: 14px;
    }
    
    .tel_number {
        font-size: 2.5rem;
    }
    
    .contact {
        gap: 8rem;
        padding: 1rem;
    }
    .tel_btn img[alt="arrow-right"] {
        height: 40px;
    }
}

/* 768px breakpoint */
@media (max-width: 768px) {
    .behavior {
        padding: 1rem;
    }
    
    .behavior img {
        display: none;
    }
    
    .behavior p {
        font-size: 1rem;
        text-align: center;
    }
    
    .number {
        font-size: 1.25rem;
    }
    
    .advert_content {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .advert_content h4 {
        font-size: 1rem;
        text-align: center;
    }
    
    .tel_btn {
        /* width: 90%; */
        max-width: 22.5rem;
        height: auto;
        gap: 0.5rem;
        padding:1rem;
    }
    
    .tel_btn img[alt="telephone"] {
        width: 3.5rem;
    }
    
    .tel_btn img[alt="r"] {
        width: 12px;
    }
    
    .tel_btn img[alt="arrow-right"] {
        height: 1.5rem;
        width: auto;
    }
    
    .tel_number {
        font-size: 1.5rem;
    }
    
    .contact {
        gap: 1.25rem;
        padding: 1.25rem;
    }
    
    .contact .mail_btn,
    .contact .line_btn {
        width: 100%;
        max-width: 160px;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
}

/* 375px breakpoint */
@media (max-width: 400px) {
    .behavior {
        gap: 1rem;
        padding: 0.25rem;
    }
    
    /* .behavior img {
        width: 64px;
        height: auto;
        display: none;
    } */
    
    .behavior p {
        font-size: 0.75rem;
        letter-spacing: 0.08rem;
    }
    
    .number {
        font-size: 1rem;
    }
    
    .advert_content h4 {
        font-size: 0.75rem;
    }
    
    .tel_btn {
        width: 15rem;
        height: auto;
        gap: 0.25rem;
        padding: 0.75rem;
    }
    
    .tel_btn img[alt="telephone"] {
        width: 2rem;
        height: auto;
    }
    .tel_btn div{
        gap: 0.05rem;
    }
    .tel_btn img[alt="r"] {
        width: 8px;
    }
    
    .tel_btn img[alt="arrow-right"] {
        width: 12px;
        height: auto;
    }
    
    .tel_number {
        font-size: 1rem;
    }
    
    .contact {
        gap: 1rem; 
        padding: 1rem;
    }
    
    .contact .mail_btn,
    .contact .line_btn {
        padding: 0.6rem 0.8rem;
        max-width: 250px;
    }
    
    .contact .mail_btn img,
    .contact .line_btn img {
        width: 26px;
        height: 26px;
    }
    
    .contact .btn_mail_text,
    .contact .btn_line_text {
        font-size: 0.85rem;
    }
}
/* ----------simulator----------- */
.simulator {
  background-color: #AFE7FE;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.simulator-container {
  width: 100%;
  max-width: 100rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.simulator-header {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.simulator-header p,
.simulator-header h2{
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
  padding: 0;
  color: inherit;
}

.quick-easy-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #0051C2, #3377FF);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  box-shadow: 0 0.25rem 0.75rem rgba(1, 82, 195, 0.25);
  width: fit-content;
  text-align: center;
  animation: fadeInUp 0.6s ease-in-out;
}

.quick-easy-badge .label {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.quick-easy-badge .stars {
  font-size: 1.125rem;
  letter-spacing: 0.125rem;
  color: #FDED40;
}

/* アニメーション効果（オプション） */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(0.625rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#simulator-root {
  width: 100%;
  max-width: 30rem;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 0.5rem 2rem rgba(60, 80, 180, 0.10);
  padding: 2.5rem 1.75rem 2rem 1.75rem;
}

/* ===== STEP STYLES ===== */
.sim-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0051C2;
  text-align: center;
}

.symptom-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sim-step b {
  display: block;
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

/* ===== BUTTON STYLES ===== */
.sim-btn {
  display: block;
  width: 100%;
  padding: 0.875rem 0;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, #2563eb 60%, #60a5fa 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 0.625rem;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

.sim-btn:hover {
  background: linear-gradient(90deg, #1d4ed8 60%, #38bdf8 100%);
}

.sim-btn:focus {
  outline: 0.125rem solid #2563eb;
  outline-offset: 0.125rem;
}

.sim-result {
  background: #e0fce0;
  color: #15803d;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  border-radius: 0.75rem;
  padding: 1.5rem 0 1rem 0;
  margin-bottom: 1.125rem;
}

/* ===== RESET BUTTON ===== */
.sim-reset {
  background: #f59e42;
  color: #fff;
  margin-top: 0.625rem;
  border: none;
  border-radius: 0.625rem;
  padding: 0.625rem 0;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.sim-reset:hover {
  background: #ea580c;
}

.sim-reset:focus {
  outline: 0.125rem solid #f59e42;
  outline-offset: 0.125rem;
}

/* ===== PHONE INPUT STYLES ===== */
.phone-input {
  width: 100%;
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
  border: 0.125rem solid #e2e8f0;
  border-radius: 0.625rem;
  font-size: 1.1rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
  background: #fafafa;
}

.phone-input:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
}

.phone-input::placeholder {
  color: #94a3b8;
}

/* ===== DIAGNOSIS BUTTON ===== */
.diagnosis-button {
  display: block;
  width: 100%;
  padding: 1rem 0;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #16a34a 60%, #22c55e 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 0.625rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.diagnosis-button:hover {
  background: linear-gradient(90deg, #15803d 60%, #16a34a 100%);
}

.diagnosis-button:focus {
  outline: 0.125rem solid #16a34a;
  outline-offset: 0.125rem;
}

/* ===== PRIVACY TEXT ===== */
.privacy-text {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-align: center;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  border-left: 0.1875rem solid #2563eb;
}

.privacy-text a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.privacy-text a:hover {
  text-decoration: underline;
}

/* ===== PRICE DISPLAY STYLES ===== */
.simulator-price {
  background: #f0f9ff;
  border: 0.125rem solid #0ea5e9;
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem;
  margin-bottom: 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.simulator-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4, #0ea5e9);
}

.simulator-price h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.3rem;
  color: #0f172a;
  font-weight: 700;
}

#real_price {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 1rem;
  text-shadow: 0 0.125rem 0.25rem rgba(220, 38, 38, 0.2);
}

.simulator-price p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

/* ===== CALL BUTTON ===== */
.call-button {
  background: linear-gradient(90deg, #dc2626 60%, #ef4444 100%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.call-button:hover {
  background: linear-gradient(90deg, #b91c1c 60%, #dc2626 100%);
}

.call-button:focus {
  outline: 0.125rem solid #dc2626;
  outline-offset: 0.125rem;
}

/* ===== ERROR MESSAGE ===== */
.error-message {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fef2f2;
  border: 0.0625rem solid #fecaca;
  border-left: 0.25rem solid #ef4444;
  color: #991b1b;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
  z-index: 1001;
  max-width: 90%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.error-close {
  background: none;
  border: none;
  color: #991b1b;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.error-close:hover {
  background: rgba(153, 27, 27, 0.1);
}

/* ===== PROGRESS INDICATOR ===== */
.progress-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  gap: 0.5rem;
}

.progress-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #e2e8f0;
  transition: background 0.3s ease;
}

.progress-dot.active {
  background: #2563eb;
}

.progress-dot.completed {
  background: #16a34a;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 480px) {
  .main-container {
    padding: 16px;
  }
  
  /* .simulator-container {
    padding: 1rem;
  } */
  
  .main-title {
    font-size: 1.5rem;
  }
  
  .sim-btn {
    padding: 12px 0;
    font-size: 1rem;
  }
  
  #real_price {
    font-size: 2rem;
  }
  
  .call-button {
    font-size: 1.2rem;
    padding: 14px 20px;
  }
}

@media (max-width: 360px) {
  /* .simulator-container {
    padding: 20px 16px;
  } */
  
  .main-title {
    font-size: 1.3rem;
  }
  
  .sim-btn {
    padding: 10px 0;
    font-size: 0.95rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
a:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .sim-btn {
    border: 2px solid #000;
  }
  
  .simulator-price {
    border-width: 3px;
  }
}

/* ===== GENERAL STYLES ===== */
a {
  text-decoration: none;
}

/* Service details section */
.service-details {
  margin: 16px 0;
}

.selected-info {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0.375rem;
  border-left: 0.1875rem solid #3b82f6;
} 
/* ────── Responsive Breakpoints ────── */

/* 1920px - Default styles (already defined above) */

/* 1440px breakpoint */
@media screen and (max-width: 1440px) {
  .simulator {
    padding: 3.5rem 1.5rem;
  }
  
  .simulator-container {
    max-width: 90rem;
    gap: 1.75rem;
  }
  
  .simulator-header p,
  .simulator-header h2 {
    font-size: 2.75rem;
  }
  
  .quick-easy-badge {
    padding: 0.8125rem 1.375rem;
  }
  
  .quick-easy-badge .label {
    font-size: 1.1875rem;
  }
  
  .quick-easy-badge .stars {
    font-size: 1.0625rem;
  }
  
  #simulator-root {
    max-width: 28rem;
    padding: 2.25rem 1.625rem 1.875rem 1.625rem;
  }
}

/* 1024px breakpoint */
@media screen and (max-width: 1024px) {
  .simulator {
    padding: 3rem 1.25rem;
  }
  
  .simulator-container {
    max-width: 80rem;
    gap: 1.5rem;
  }
  
  
  .simulator-header h2 {
    font-size: 2.5rem;
  }
  
  .quick-easy-badge {
    padding: 0.75rem 1.25rem;
  }
  
  .quick-easy-badge .label {
    font-size: 1.125rem;
  }
  
  .quick-easy-badge .stars {
    font-size: 1rem;
  }
  
  #simulator-root {
    max-width: 26rem;
    padding: 2rem 1.5rem 1.75rem 1.5rem;
  }
  
  .sim-btn {
    font-size: 1.05rem;
    padding: 0.8125rem 0;
  }
  
  #real_price {
    font-size: 2rem;
  }
  
  .call-button {
    font-size: 1.3rem;
    padding: 0.9375rem 1.375rem;
  }
}

/* 768px breakpoint */
@media screen and (max-width: 768px) {
  .simulator {
    padding: 2.5rem 1rem;
  }
  
  .simulator-container {
    max-width: 100%;
    gap: 1.25rem;
  }
  
  .simulator-header {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .simulator-header img {
    display: none;
  }
  
  .simulator-header h2 {
    font-size: 2rem;
  }
  
  .quick-easy-badge {
    padding: 0.6875rem 1.125rem;
    border-radius: 0.875rem;
  }
  
  .quick-easy-badge .label {
    font-size: 1rem;
  }
  
  .quick-easy-badge .stars {
    font-size: 0.9375rem;
    letter-spacing: 0.09375rem;
  }
  
  #simulator-root {
    max-width: 24rem;
    padding: 1.875rem 1.375rem 1.625rem 1.375rem;
  }
  
  .sim-title {
    font-size: 1.375rem;
  }
  
  .sim-step b {
    font-size: 1.05rem;
    margin-bottom: 1.125rem;
  }
  
  .sim-btn {
    font-size: 1rem;
    padding: 0.75rem 0;
    margin-bottom: 0.6875rem;
  }
  
  .phone-input {
    font-size: 1.05rem;
    padding: 0.8125rem 0.9375rem;
  }
  
  .diagnosis-button {
    font-size: 1.05rem;
    padding: 0.9375rem 0;
  }
  
  .simulator-price {
    padding: 1.375rem 1.125rem;
  }
  
  .simulator-price h3 {
    font-size: 1.25rem;
  }
  
  #real_price {
    font-size: 1.875rem;
  }
  
  .call-button {
    font-size: 1.25rem;
    padding: 0.875rem 1.25rem;
  }
  
  .privacy-text {
    font-size: 0.8125rem;
    padding: 0.6875rem;
  }
}

/* 375px breakpoint */
@media screen and (max-width: 375px) {
  .simulator {
    padding: 2rem 0.75rem;
  }
  
  .simulator-container {
    gap: 1rem;
  }
  
  .simulator-header p,
  .simulator-header h2 {
    font-size: 1.75rem;
  }
  
  .quick-easy-badge {
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
  }
  
  .quick-easy-badge .label {
    font-size: 0.9375rem;
  }
  
  .quick-easy-badge .stars {
    font-size: 0.875rem;
    letter-spacing: 0.0625rem;
  }
  
  #simulator-root {
    max-width: 100%;
    padding: 1.625rem 1.125rem 1.375rem 1.125rem;
  }
  
  .sim-title {
    font-size: 1.25rem;
  }
  
  .sim-step b {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .sim-btn {
    font-size: 0.9375rem;
    padding: 0.6875rem 0;
    margin-bottom: 0.625rem;
  }
  
  .phone-input {
    font-size: 1rem;
    padding: 0.75rem 0.875rem;
  }
  
  .diagnosis-button {
    font-size: 1rem;
    padding: 0.875rem 0;
  }
  
  .simulator-price {
    padding: 1.25rem 1rem;
  }
  
  .simulator-price h3 {
    font-size: 1.1875rem;
  }
  
  #real_price {
    font-size: 1.75rem;
  }
  
  .simulator-price p {
    font-size: 0.8125rem;
  }
  
  .call-button {
    font-size: 1.125rem;
    padding: 0.8125rem 1.125rem;
  }
  
  .privacy-text {
    font-size: 0.75rem;
    padding: 0.625rem;
  }
  
  .sim-reset {
    font-size: 0.9375rem;
    padding: 0.5625rem 0;
  }
}
/* ---------simulator end---------- */
/* --------employees--------- */
.employees{
    width: 100%;
    background-color: #6698fc;
}
.emp_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 1rem;

}
.emp_container h2{
    font-size: 3rem;
    color: white;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.emp_content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: #0051C2;
    padding: 1.5rem;
    gap: 1.5rem;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== SWIPER STYLES FOR WORKERS ===== */
.workers-swiper {
    width: 100%;
    height: auto;
    position: relative;
}

.workers-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 0 10px; /* Add horizontal padding for gap */
}

.workers-swiper .swiper-slide img {
    width: 240px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Swiper Navigation Buttons */
.workers-swiper .swiper-button-next,
.workers-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(1, 82, 195, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
}

.workers-swiper .swiper-button-next:after,
.workers-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.workers-swiper .swiper-button-next:hover,
.workers-swiper .swiper-button-prev:hover {
    background: rgba(1, 82, 195, 1);
}

/* Swiper Pagination */
.workers-swiper .swiper-pagination {
    bottom: -40px;
}

.workers-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.workers-swiper .swiper-pagination-bullet-active {
    background: #FDED40;
    opacity: 1;
}

/* ===== RESPONSIVE STYLES FOR WORKERS SWIPER ===== */

/* Desktop Large - 1920px */
@media (max-width: 1920px) {
    .workers-swiper .swiper-slide {
        padding: 0 20px;
    }
    
    .workers-swiper .swiper-slide img {
        width: 240px;
    }
    
    .emp_container h2 {
        font-size: 3rem;
    }
}

/* Desktop Medium - 1440px */
@media (max-width: 1440px) {
    .workers-swiper .swiper-slide {
        padding: 0 12px;
    }
    
    .workers-swiper .swiper-slide img {
        width: 220px;
    }
    
    .emp_container h2 {
        font-size: 2.5rem;
    }
    
    .emp_content {
        padding: 1.2rem;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .workers-swiper .swiper-slide {
        padding: 0 10px;
    }
    
    .workers-swiper .swiper-slide img {
        width: 200px;
    }
    
    .emp_container h2 {
        font-size: 2rem;
    }
    
    .emp_content {
        padding: 1rem;
    }
    
    .workers-swiper .swiper-button-next,
    .workers-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .workers-swiper .swiper-button-next:after,
    .workers-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* Tablet Small - 768px */
@media (max-width: 768px) {
    .workers-swiper .swiper-slide {
        padding: 0 8px;
    }
    
    .workers-swiper .swiper-slide img {
        width: 180px;
    }
    
    .emp_container h2 {
        font-size: 1.8rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .emp_content {
        padding: 0.8rem;
    }
    
    .workers-swiper .swiper-button-next,
    .workers-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
        margin-top: -17px;
    }
    
    .workers-swiper .swiper-button-next:after,
    .workers-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
}

/* Mobile - 375px */
@media (max-width: 375px) {
    .workers-swiper .swiper-slide {
        padding: 0 5px;
    }
    
    .workers-swiper .swiper-slide img {
        width: 150px;
    }
    
    .emp_container h2 {
        font-size: 1.5rem;
        text-align: center;
        padding: 0 1rem;
        line-height: 1.3;
    }
    
    .emp_content {
        padding: 0.5rem;
    }
    
    .workers-swiper .swiper-button-next,
    .workers-swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
        margin-top: -15px;
    }
    
    .workers-swiper .swiper-button-next:after,
    .workers-swiper .swiper-button-prev:after {
        font-size: 12px;
    }
    
    .workers-swiper .swiper-pagination {
        bottom: -30px;
    }
    
    .workers-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* -------comparison------ */
.price-comparison-section {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;  /* or 72px */
  padding-bottom: 1rem; /* 60px */
  gap: 2rem;
  align-items: center;
  justify-content: center;
  background-image: url('../img/top_img3.jpg');
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.comparison-heading{
    background-color: #0051C2;
    padding: 0.5rem 3rem;
    border-radius: 0.5rem;
}
.comparison-heading h2{
    font-size: 3rem;
    color: white;    
    font-weight: 900;
    text-align:center;
}
.badge-row{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.badge-img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.price-reduction-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-img {
    width: 800px;
    height: auto;
    object-fit: contain;
}
.disclaimer-note{
    font-size: 2rem;
    color: yellow;
    text-align: center;
    font-weight: 900;
    -webkit-text-stroke: #0051C2 1px;
    text-shadow: 0px 2px 2px #333;
    font-family: Noto Sans JP;
}
.comparison-grid{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;

}
.comparison-grid__company{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: right;
    align-items: flex-end;
}
.company{
    background-color: #3377FF;
    height: 80px;
    width: 180px;
    color: white;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2rem;
    border-radius: 0.5rem;
}
.othercom{
    background-color: white;
    height: 60px;
    width: 180px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2rem;
    border-radius: 0.5rem;
}
.comparison-grid__row{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}
.comparison-grid__label{
    background-color: #3377FF;
    height: 60px;
    width: 180px;
    color: white;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2rem;
    border-radius: 0.5rem;
}
.comparison-grid__value{
    background-color: white;
    height: 60px;
    width: 180px;
    color: #3377FF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
}
.comparison-grid__value p{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-weight: 700;

}
.comparison-grid__value p span:first-child{
    font-size: 2rem;
    font-weight: 900;
}


.comparison-grid__value2{
    background-color: white;
    height: 60px;
    width: 180px;
    color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
}
.comparison-grid__value2 p{
    display: flex;
    justify-content: center;
    align-items: flex-end;

}
.comparison-grid__value2 p span:first-child{
    font-size: 1.5rem;
    font-weight: 700;
}

/* ===== RESPONSIVE STYLES FOR PRICE COMPARISON SECTION ===== */

/* @media (max-width: 1920px) {
    .price-comparison-section {
        padding: 3rem 2rem 2rem;
        gap: 2.5rem;
    }
    
    .comparison-heading h2 {
        font-size: 3rem;
    }
    
    .badge-img {
        width: 240px;
        height: 120px;
    }
    
    .price-reduction-img {
        width: 600px;
        height: 300px;
    }
    
    .partner-img {
        width: 800px;
        height: 400px;
    }
    
    .disclaimer-note {
        font-size: 2rem;
    }
    
    .company, .othercom, .comparison-grid__label, .comparison-grid__value, .comparison-grid__value2 {
        width: 180px;
        font-size: 1.5rem;
    }
    
    .comparison-grid__value p span:first-child {
        font-size: 2rem;
    }
} */

/* Desktop Medium - 1440px */
@media (max-width: 1440px) {
    .price-comparison-section {
        padding: 2.5rem 1.5rem 1.5rem;
        gap: 2rem;
    }
    
    .comparison-heading {
        padding: 0.4rem 2.5rem;
    }
    
    .comparison-heading h2 {
        font-size: 2.5rem;
    }
    
    .badge-img {
        width: 12rem;
        height: auto;
    }
    
    .price-reduction-img {
        width: 550px;
        height: 275px;
    }
    
    .partner-img {
        width: 720px;
        height: 360px;
    }
    
    .disclaimer-note {
        font-size: 1.8rem;
    }
    
    .company, .othercom, .comparison-grid__label, .comparison-grid__value, .comparison-grid__value2 {
        width: 160px;
        font-size: 1.3rem;
    }
    
    .comparison-grid__value p span:first-child {
        font-size: 1.8rem;
    }
    
    .comparison-grid__value2 p span:first-child {
        font-size: 1.3rem;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .price-comparison-section {
        padding: 2rem 1rem;
         gap: 1.5rem;
    }
    
    .comparison-heading {
        padding: 0.3rem 2rem;
    }
    
    .comparison-heading h2 {
        font-size: 2rem;
    }
    
    .badge-row {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .badge-img {
        width: 10rem;
        height: auto;
    }
    
    .price-reduction-img {
        width: 400px;
        height: auto;
    }
    
    .partner-img {
        width: 35rem;
        height: auto;
    }
    
    .disclaimer-note {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .company, .othercom, .comparison-grid__label, .comparison-grid__value, .comparison-grid__value2 {
        width: 140px;
        height: 50px;
        font-size: 1.1rem;
        line-height: 1.3rem;
    }
    
    .company {
        height: 65px;
    }
    
    .comparison-grid__value p span:first-child {
        font-size: 1.5rem;
    }
    
    .comparison-grid__value2 p span:first-child {
        font-size: 1.1rem;
    }
}

/* Tablet Small - 768px */
@media (max-width: 768px) {
    .price-comparison-section {
        padding: 1.5rem 0.8rem;
         gap: 1rem;
    }
    
    .comparison-heading {
        padding: 0.3rem 1.5rem;
    }
    
    .comparison-heading h2 {
        font-size: 1.8rem;
    }
    
    .badge-row {
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: center;
    }
    
    .badge-img {
        width: 5rem;
        height: auto;
    }
    
    .price-reduction-img {
        width: 360px;
        height: auto;
    }
    
    .partner-img {
        width: 20rem;
        height: auto;
    }
    
    .disclaimer-note {
        font-size: 1.3rem;
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    .comparison-grid {
        gap: 0.3rem;
    }
    
    .comparison-grid__company, .comparison-grid__row {
        gap: 0.3rem;
    }
    
    .company, .othercom, .comparison-grid__label, .comparison-grid__value, .comparison-grid__value2 {
        width: 5.5rem;
        height: auto;
        padding: 0.75rem;
        font-size: 1rem;
        line-height: 1.2rem;
    }
    
    .company {
        height: 55px;
    }
    
    .comparison-grid__value p span:first-child {
        font-size: 1.3rem;
    }
    
    .comparison-grid__value2 p span:first-child {
        font-size: 1rem;
    }
}

/* Mobile - 375px */
@media (max-width: 375px) {
    .price-comparison-section {
        padding: 1rem 0.5rem;
        gap: 0.75rem;
    }
    
    .comparison-heading {
        padding: 0.2rem 1rem;
    }
    
    .comparison-heading h2 {
        font-size: 1.25rem;
        font-weight: 700;
    }
    .comparison-grid{
      padding: 0;
    }
    .badge-row {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    .badge-row div{
      display: flex;
      flex-direction: row;
      gap: 1rem;
    }
    
    .badge-img {
        width: 5rem;
        height: auto;
    }
    
    .price-reduction-img {
        width: 200px;
        height: auto;
    }
    
    .partner-img {
        width: 240px;
        height: auto;
    }
    
    .disclaimer-note {
        font-size: 1.1rem;
        padding: 0 0.5rem;
        line-height: 1.3;
        -webkit-text-stroke: #0051C2 0.5px;
    }
    
    .comparison-grid {
        gap: 0.2rem;
        /* overflow-x: auto; */
    }
    .comparison-grid__row{
      gap: 0.25rem;
      
    }
    .comparison-grid__company{
        gap: 0.25rem;
        width: 100%;
    }
    
    .company, .othercom, .comparison-grid__label, .comparison-grid__value, .comparison-grid__value2 {
        width: 4.5rem;
        height: 40px;
        font-size: 0.75rem;
        line-height: 1rem;
        padding: 0.2rem;
    }
    
    .company {
        height: 50px;
        font-size: 0.7rem;
    }
    
    .comparison-grid__value p span:first-child {
        font-size: 1.1rem;
    }
    
    .comparison-grid__value2 p span:first-child {
        font-size: 0.9rem;
    }
    
    .comparison-grid__value p span:last-child,
    .comparison-grid__value2 p span:last-child {
        font-size: 0.7rem;
    }

}


/* -----line-section------- */
.line-section {
  background-image: linear-gradient(#95D9FF, #95D9FF);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 1rem; /* 72px 0 60px */
  gap: 2rem; /* 36px */
}

.line-heading {
  width: 37.5rem; 
  height: auto; 
  padding: 0.5rem;
  background-color: white;
  color: #00b900;
  font-size: 3rem;
  font-weight: bold;
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

.line-message {
  color: white;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  text-shadow: 0px 2px 2px #0051C2;
}

.line-text-lg {
  font-size: 2rem; 
  font-weight: 900;
}

.line-text-md {
  font-size: 1.5rem; 
}

.line-image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.line-banner-img {
  width: 600px;
  height: auto;
  object-fit: contain;
}

.qr-code-img {
  width: 720px;
  height: auto;
  object-fit: contain;
}

.line-button {
  width: 30rem; 
  height: auto;
  padding: 1.5rem; 
  background: linear-gradient(#00e676, #00b248);
  color: white;
  font-size: 2rem;
  border-radius: 0.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  &:hover{
    background-image: linear-gradient(#00e676, #00b248);
  }
}

.line-button a {
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
}

/* ===== RESPONSIVE STYLES FOR LINE SECTION ===== */

/* Desktop Large - 1920px */
@media (max-width: 1920px) {
    .line-section {
        padding: 3rem 2rem 2rem;
        gap: 2rem;
    }
    
    .line-heading {
        width: 37.5rem;
        font-size: 3rem;
        padding: 0.5rem;
    }
    
    .line-text-lg {
        font-size: 2rem;
    }
    
    .line-text-md {
        font-size: 1.5rem;
    }
    
    .line-banner-img {
        width: 600px;
        height: auto;
    }
    
    .qr-code-img {
        width: 720px;
        height: auto;
    }
    
    .line-button {
        width: 30rem;
        font-size: 2rem;
        padding: 1.5rem;
    }
    
    .line-button a {
        font-size: 1.5rem;
    }
}

/* Desktop Medium - 1440px */
@media (max-width: 1440px) {
    .line-section {
        padding: 2.5rem 1.5rem 1.5rem;
        gap: 1.8rem;
    }
    
    .line-heading {
        width: 32rem;
        font-size: 2.5rem;
        padding: 0.5rem;
    }
    
    .line-text-lg {
        font-size: 1.8rem;
    }
    
    .line-text-md {
        font-size: 1.3rem;
    }
    
    .line-banner-img {
        width: 520px;
        height: auto;
    }
    
    .qr-code-img {
        width: 620px;
        height: auto;
    }
    
    .line-button {
        width: 24rem;
        font-size: 1.8rem;
        padding: 1.3rem;
    }
    
    .line-button a {
        font-size: 1.3rem;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .line-section {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .line-heading {
        width: 25rem;
        font-size: 2rem;
        padding: 0.5rem;
    }
    
    .line-text-lg {
        font-size: 1.5rem;
    }
    
    .line-text-md {
        font-size: 1.1rem;
    }
    
    .line-banner-img {
        width: 450px;
        height: auto;
    }
    
    .qr-code-img {
        width: 520px;
        height: auto;
    }
    
    .line-button {
        width: 20rem;
        font-size: 1.5rem;
        padding: 1.2rem;
    }
    
    .line-button a {
        font-size: 1.1rem;
    }
}

/* Tablet Small - 768px */
@media (max-width: 768px) {
    .line-section {
        padding: 1.5rem 0.8rem;
        gap: 1rem;
    }
    
    .line-heading {
        width: 20rem;
        font-size: 1.8rem;
        padding: 0.3rem;
    }
    
    .line-text-lg {
        font-size: 1.3rem;
    }
    
    .line-text-md {
        font-size: 1rem;
    }
    
    .line-banner-img {
        width: 22.5rem;
        height: auto;
    }
    
    .qr-code-img {
        width: 22.5rem;
        height: auto;
    }
    
    .line-button {
        width: 16;
        font-size: 1.3rem;
        padding: 1rem;
    }
    
    .line-button a {
        font-size: 1rem;
    }
}

/* Mobile - 375px */
@media (max-width: 375px) {
    .line-section {
        padding: 1rem 0.5rem;
        gap: 0.5rem;
    }
    
    .line-heading {
        width: 16rem;
        font-size: 1.5rem;
        padding: 0.2rem;
        line-height: 1.3;
    }
    
    .line-text-lg {
        font-size: 1.1rem;
    }
    
    .line-text-md {
        font-size: 0.9rem;
    }
    
    .line-message {
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    .line-banner-img {
        width: 15rem;
        height: auto;
    }
    .qr-code-img {
        width: 15rem;
        height: auto;
    }
    
    .line-button {
        width: 12rem;
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .line-button a {
        font-size: 0.9rem;
    }
}
/* ---------form-------- */
.form-wrapper {
  background: linear-gradient(#95D9FF, #95D9FF);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 3.75rem;
  gap: 2.25rem;
  position: relative;
  width: 100%;
  height: auto;
}

.form-heading {
  color: #0152C3;
  font-family: 'Noto Sans JP';
  font-weight: 900;
  position: absolute;
  text-align: center;
  font-size: 2rem;
  top: 2rem;
  line-height: 3rem;
}

.form-container {
  background-color: white;
  padding: 7.5rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  height: auto;
  width: 42.5rem; /* Default = 680px */
  max-width: 90%;
}

.form-note-1 {
  color: #F00E0E;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP';
}

.form-group-1 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.label-title-1 {
  color: #0152C3;
}

.label-required-1 {
  background-color: rgba(255, 4, 4, 0.7);
  color: white;
  padding: 0.125rem 0.5rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.form-input-1 {
  width: 100%;
  font-size: 1.25rem;
  padding: 0.5rem;
  border: 1px solid #0051C2;
  font-family: 'Noto Sans JP';
  outline: none;
  color: #0051C2;
}

.dropdown-wrapper {
  position: relative;
  width: 100%;
}

.area {
  width: 25rem;
  font-size: 1rem;
  padding: 0.75rem;
  border: #3377FF 1px solid;
  border-radius: 0.25rem;
  color: #0051C2;
  background-color: #fff;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #3377FF;
  z-index: 999;
}

.dropdown-item {
  padding: 0.75rem;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #e6f0ff;
}

.form-privacy-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  gap: 0.25rem;
  flex-direction: row;
}

.checkbox-1 {
  width: 1rem;
  height: 1rem;
}

.form-submit-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.form-submit-button {
  font-size: 1.25rem;
  padding: 1rem 2rem;
  width: 15rem;
  color: white;
  background-color: #3377FF;
  border: none;
  border-radius: 0.5rem;
  text-align: center;
  cursor: pointer;
}

.form-submit-button:hover {
  background-color: #003d91;
}

/* ------------------------ */

/* ------------------------ */

@media (max-width: 120rem) { /* 1920px */
  .form-container {
    width: 40rem;
  }
}

@media (max-width: 90rem) { /* 1440px */
  .form-heading {
    font-size: 1.75rem;
    top: 1.5rem;
  }

  .form-container {
    width: 36rem;
    padding: 6rem 3rem 2rem;
  }

  .form-label-1,
  .form-input-1,
  .form-note-1 {
    font-size: 1.125rem;
  }
}

@media (max-width: 64rem) { /* 1024px */
  .form-heading {
    font-size: 1.5rem;
    top: 1.25rem;
  }

  .form-container {
    width: 30rem;
    padding: 5rem 2rem;
  }

  .form-input-1,
  .area {
    font-size: 1rem;
  }
}

@media (max-width: 48rem) { /* 768px */
  .form-container {
    width: 24rem;
    padding: 3rem 1.5rem;
  }

  .form-heading {
    font-size: 1.25rem;
    line-height: 2rem;
  }

  .form-note-1,
  .form-label-1,
  .form-input-1,
  .area {
    font-size: 0.875rem;
  }

  .form-submit-button {
    font-size: 1rem;
    width: 12rem;
    padding: 0.75rem;
  }
}

@media (max-width: 23.4375rem) { /* 375px */
  .form-container {
    width: 90%;
    padding: 2rem 1rem;
  }

  .form-heading {
    font-size: 1rem;
    top: 1rem;
  }

  .form-note-1,
  .form-label-1,
  .form-input-1,
  .area {
    font-size: 0.75rem;
  }

  .form-submit-button {
    font-size: 0.875rem;
    width: 100%;
    padding: 0.75rem;
  }
}



/* ----work amount----- */
.work-section {
  background-image: linear-gradient(#95D9FF, #95D9FF);
  padding: 3.75rem 3.75rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.work-title {
  color: #0152C3;
  font-size: 3rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

.work-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56.25rem;
  width: 100%;
}

.work-entry {
  border-bottom: 1px solid #0152C3;
  padding-bottom: 0.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.hidden-entry {
  display: none;
}
.work-entry:hover {
  opacity: 0.8;
}

.entry-date {
  font-size: 1.125rem;
  color: #0152C3;

  margin-bottom: 0.25rem;
}

.entry-description {
  font-size: 1.125rem;
  color: #0152C3;

}
.see-more-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 16px;
  border: none;
  color: var(--color-primary);
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.see-more-arrow:hover {
  transform: translateX(4px);
  color: var(--color-secondary);
}

@media (max-width: 1440px) {
  .work-title {
    font-size: 2rem;
  }

  .entry-date,
  .entry-description {
    font-size: 1.0625rem;
  }
}

@media (max-width: 1024px) {
  .work-section {
    padding: 3rem 2rem;
  }

  .work-title {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) {
  .work-title {
    font-size: 1.625rem;
  }

  .entry-date,
  .entry-description {
    font-size: 1rem;
  }

  .work-button {
    width: 140px;
    height: 52px;
  }
}

@media (max-width: 375px) {
  .work-section {
    padding: 2rem 1rem;
  }

  .work-title {
    font-size: 1.5rem;
  }

  .work-button {
    width: 130px;
    height: 48px;
  }
}

/* -----!-------- */
.ai-alert-section {
  background-color: #FFEEEE; /* or your bg-error color */
  padding: 2rem 1rem 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.ai-alert-message {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  max-width: 960px;
}

.ai-alert-text {
  color: #F00E0E;
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.ai-subtext {
  color: #F00E0E;
  font-size: 1.25rem; /* 20px */
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}

.ai-button {
  width: 25rem; /* 400px */
  height: 5rem; /* 80px */
  background-color: #FEE600; /* your yellow */
  color: #0152C3;
  font-size: 1.25rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem; /* 12px */
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* AI Chat Modal Styles */
.ai-chat-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.ai-chat-modal-content {
  background-color: #f8faff;
  margin: 5% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ai-chat-header {
  background: linear-gradient(90deg, #0152C3 0%, #3377FF 100%);
  color: white;
  padding: 20px;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-chat-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.ai-chat-close {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.ai-chat-close:hover {
  opacity: 0.7;
}

/* AI Banner styles inside modal */
#ai-banner-root .ai-banner {
  background: linear-gradient(90deg, #0152C3 0%, #3377FF 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 20px 16px 20px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(1, 82, 195, 0.08);
  transition: transform 0.15s, box-shadow 0.15s;
}

#ai-banner-root .ai-banner:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(1, 82, 195, 0.16);
  opacity: 0.95;
}

#ai-banner-root .ai-banner span[role="img"] {
  font-size: 1.6em;
}

/* AI ChatDiagnosis styles inside modal */
#ai-chat-diagnosis-root .ai-chat-diagnosis {
  max-width: 420px;
  margin: 0 20px 20px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(1, 82, 195, 0.08);
  padding: 32px 28px 28px 28px;
  border: 1.5px solid #e0e6ed;
  animation: fadeIn 0.7s;
}

#ai-chat-diagnosis-root .ai-chat-question {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.15rem;
  color: #0152C3;
}

#ai-chat-diagnosis-root .ai-chat-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#ai-chat-diagnosis-root .ai-chat-options button {
  padding: 12px 18px;
  background: #f5faff;
  border: 1.5px solid #e0e6ed;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.15s, border 0.15s, color 0.15s;
}

#ai-chat-diagnosis-root .ai-chat-options button:hover {
  background: #3377FF;
  color: #fff;
  border-color: #3377FF;
}

#ai-chat-diagnosis-root .ai-chat-input {
  margin-top: 16px;
}

#ai-chat-diagnosis-root .ai-chat-input input {
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  border: 1.5px solid #e0e6ed;
  font-size: 1rem;
  margin-bottom: 6px;
  transition: border 0.15s;
  box-sizing: border-box;
}

#ai-chat-diagnosis-root .ai-chat-input input:focus {
  border-color: #0152C3;
  outline: none;
}

#ai-chat-diagnosis-root .ai-chat-input button {
  margin-top: 8px;
  padding: 10px 0;
  background: linear-gradient(90deg, #0152C3 0%, #3377FF 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(1, 82, 195, 0.08);
  transition: background 0.15s, box-shadow 0.15s;
}

#ai-chat-diagnosis-root .ai-chat-input button:hover {
  background: linear-gradient(90deg, #3377FF 0%, #0152C3 100%);
  box-shadow: 0 4px 16px rgba(1, 82, 195, 0.16);
}

#ai-chat-diagnosis-root .ai-chat-contact-btn {
  margin-right: 12px;
  padding: 10px 24px;
  background: #F00E0E;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(240, 14, 14, 0.08);
  transition: background 0.15s, box-shadow 0.15s;
}

#ai-chat-diagnosis-root .ai-chat-contact-btn:hover {
  background: #b80000;
  box-shadow: 0 4px 16px rgba(240, 14, 14, 0.16);
}

#ai-chat-diagnosis-root .ai-chat-contact-btn.line {
  background: #3377FF;
  margin-right: 0;
}

#ai-chat-diagnosis-root .ai-chat-contact-btn.line:hover {
  background: #0152C3;
}

#ai-chat-diagnosis-root .ai-chat-warning {
  margin-top: 24px;
  color: #F00E0E;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Mobile responsive styles for AI Chat Modal */
@media (max-width: 768px) {
  .ai-chat-modal-content {
    width: 95%;
    margin: 10% auto;
    max-height: 85vh;
  }
  
  .ai-chat-header {
    padding: 15px;
  }
  
  .ai-chat-header h3 {
    font-size: 1.1rem;
  }
  
  #ai-banner-root .ai-banner {
    margin: 20px 15px 12px 15px;
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  #ai-chat-diagnosis-root .ai-chat-diagnosis {
    margin: 0 15px 15px 15px;
    padding: 24px 20px 20px 20px;
  }
  
  #ai-chat-diagnosis-root .ai-chat-question {
    font-size: 1.05rem;
  }
  
  #ai-chat-diagnosis-root .ai-chat-options button {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
  
  #ai-chat-diagnosis-root .ai-chat-contact-btn {
    display: block;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 12px 20px;
  }
  
  #ai-chat-diagnosis-root .ai-chat-contact-btn.line {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .ai-chat-modal-content {
    width: 98%;
    margin: 5% auto;
  }
  
  .ai-chat-close {
    font-size: 24px;
  }
  
  #ai-banner-root .ai-banner {
    margin: 15px 10px 10px 10px;
    padding: 10px 16px;
    font-size: 0.95rem;
  }
  
  #ai-chat-diagnosis-root .ai-chat-diagnosis {
    margin: 0 10px 10px 10px;
    padding: 20px 16px 16px 16px;
  }
}


/* 🧩 Responsive Layout */

@media (max-width: 1440px) {
  .ai-alert-text {
    font-size: 1.375rem;
  }
  .ai-subtext {
    font-size: 1.125rem;
  }
}

@media (max-width: 1024px) {
  .ai-alert-message {
    flex-direction: row;
  }
  .ai-alert-text {
    font-size: 1.25rem;
  }
  .ai-subtext {
    font-size: 1rem;
  }
  .ai-button {
    width: 20rem;
    height: 4.5rem;
  }
}

@media (max-width: 768px) {
  .ai-button {
    font-size: 1rem;
    height: 4rem;
    
  }
}

@media (max-width: 375px) {
  .ai-alert-text {
    font-size: 1.125rem;
  }
  .ai-subtext {
    font-size: 0.95rem;
  }
  .ai-button {
    height: 3.5rem;
    font-size: 0.95rem;
  }
}


/* -------AI------------ */

 .section-wrapper {
    background-color: #EDFBFE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 3rem;
    width: 100%;
    gap: 2rem;
  }

  .headline-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .headline-block h2 {
    color: #0051C2;
    font-size: 3rem;
    text-shadow:  0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: "Noto Sans JP", sans-serif;
  }

  .headline-block h3 {
    color: #0051C2;
    font-size: 2rem;
  }

  .diagnosis-box {
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 50rem;
    padding: 2rem 1.5rem;
    width: 90%;
  }

  .diagnosis-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
  }

  .diagnosis-header img {
    width: 6.25rem;
  }

  .diagnosis-header h3 {
    font-size: 2rem;
    color: var(--base-color-1);
    font-family: "Noto Sans JP", sans-serif;
  }

  .diagnosis-header p {
    font-size: 1.125rem;
    color: var(--base-color-1);
  }

  .button-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .button-row {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .button-item {
    font-size: 1.125rem;
    background-color: #3377FF;
    border-radius: 0.75rem;
    width: 12.5rem;
    height: 3.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    &:hover{
        background-color: #0051C2;
    }

  }

  .button-item.wide {
    width: 25.5rem;
  }

  .diagnosis-example {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: var(--sea-color);
    padding: 1rem 0.5rem 0.5rem;
    width: auto;
    justify-content: center;
  }

  .diagnosis-example h3 {
    text-align: center;
    font-size: 1.125rem;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--base-color-2);
  }

  .diagnosis-example p {
    font-size: 1rem;
    color: var(--white);
  }

  .start-diagnosis {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    width: 31.25rem;
    height: 5rem;
    background-image: linear-gradient(#0BFF50, #02AD33);
    border-radius: 0.75rem;
    cursor: pointer;
    color: white;
    font-weight: 900;
  }

  .start-diagnosis img {
    width: 2.5rem;
  }

  .start-diagnosis p {
    font-size: 1.875rem;
    color: var(--white);
    font-family: "Noto Sans JP", sans-serif;
  }

  /* Inline Chat Interface Styles */
  .inline-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #0152C3 0%, #3377FF 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    margin-bottom: 1rem;
  }

  .chat-progress {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .reset-chat {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease;
  }

  .reset-chat:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  #inline-chat-content {
    padding: 0 2rem 2rem 2rem;
  }

  .inline-chat-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0152C3;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .inline-chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .inline-chat-options button {
    font-size: 1.125rem;
    background-color: #3377FF;
    border-radius: 0.75rem;
    width: 100%;
    height: 3.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
    font-weight: 500;
  }

  .inline-chat-options button:hover {
    background-color: #0051C2;
  }

  .inline-chat-input {
    margin-top: 1rem;
  }

  .inline-chat-input input {
    padding: 1rem;
    width: 100%;
    border-radius: 8px;
    border: 2px solid #e0e6ed;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border 0.2s ease;
    box-sizing: border-box;
  }

  .inline-chat-input input:focus {
    border-color: #0152C3;
    outline: none;
  }

  .inline-chat-input button {
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #0152C3 0%, #3377FF 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.2s ease;
  }

  .inline-chat-input button:hover {
    background: linear-gradient(90deg, #3377FF 0%, #0152C3 100%);
    transform: translateY(-1px);
  }

  .inline-chat-contact-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .inline-chat-contact-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
  }

  .inline-chat-contact-btn.phone {
    background: #F00E0E;
    color: #fff;
  }

  .inline-chat-contact-btn.phone:hover {
    background: #b80000;
    transform: translateY(-1px);
  }

  .inline-chat-contact-btn.line {
    background: #3377FF;
    color: #fff;
  }

  .inline-chat-contact-btn.line:hover {
    background: #0152C3;
    transform: translateY(-1px);
  }

  .inline-chat-warning {
    margin-top: 1.5rem;
    color: #F00E0E;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
    background: #fff5f5;
    border-radius: 8px;
    border-left: 4px solid #F00E0E;
  }

  .inline-chat-success {
    text-align: center;
    padding: 2rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #0152C3;
  }

  .inline-chat-success h3 {
    color: #0152C3;
    margin-bottom: 1rem;
  }

  .inline-chat-success p {
    color: #333;
    line-height: 1.6;
  }

  /* Pulse animation for button highlighting */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  /* Responsive styles for inline chat */
  @media (max-width: 1024px) {
    .inline-chat-header {
      padding: 0.75rem 1.5rem;
    }
    
    #inline-chat-content {
      padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .inline-chat-contact-buttons {
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .inline-chat-contact-btn {
      width: 100%;
    }
    
    .inline-chat-options button {
      width: 17.5rem;
      margin: 0 auto;
    }
  }

  @media (max-width: 768px) {
    .inline-chat-header {
      padding: 0.5rem 1rem;
      flex-direction: column;
      gap: 0.5rem;
      text-align: center;
    }
    
    .chat-progress {
      font-size: 1rem;
    }
  
    .reset-chat {
      font-size: 0.8rem;
      padding: 0.4rem 0.8rem;
    }
    
    #inline-chat-content {
      padding: 0 1rem 1rem 1rem;
    }
    
    .inline-chat-question {
      font-size: 1.1rem;
    }
    
    .inline-chat-options button {
      width: 17.5rem;
      height: 3.75rem;
      font-size: 1.125rem;
      margin: 0 auto;
    }
    
    .inline-chat-input input {
      padding: 0.75rem;
    }
    
    .inline-chat-input button {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .inline-chat-options button {
      width: 15rem;
      height: 3.75rem;
      font-size: 1.125rem;
    }
  }

  @media (max-width: 1440px) {
    .diagnosis-box {
      max-width: 60rem;
    }
    .diagnosis-example {
      width: 44rem;
    }
  }

  @media (max-width: 1024px) {
    .diagnosis-box {
      max-width: 40rem;
    }
    .button-row{
        flex-direction: column;
    }
    .button-item{
        width: 17.5rem;
    }
    .button-item.wide{
        width: 17.5rem;
    }
    .start-diagnosis{
        width: 30rem;
    }
    .diagnosis-example{
        width: 90%;
    }
  }

  @media (max-width: 768px) {
    .button-item,
    .button-item.wide {
      width: 100%;
    }
     .diagnosis-header{
        padding:0.5rem;
     }
    .diagnosis-header h3{
        font-size: 1.5rem;
    }
    .button-row{
        flex-direction: column;
    }
    .button-item{
        width: 17.5rem;
    }
    .button-item.wide{
        width: 17.5rem;
    }
    .diagnosis-example {
      font-size: 0.875rem;

    }
    .start-diagnosis{
        width: 22.5rem;
    }
    .start-diagnosis h2{
        font-size: 1rem;
        font-weight: 700;
    }
    .diagnosis-example{
        width: 90%;
    }
  }

  @media (max-width: 375px) {
    .headline-block h2,
    .diagnosis-header h3,
    .start-diagnosis p {
      font-size: 1.25rem;
    }
    .headline-block h3 {
    color: #0051C2;
    font-size: 1.125rem;
  }
    .start-diagnosis {
      height: auto;
      padding: 0.25rem;
      width: 90%
    }
    .start-diagnosis h2{
        font-size: 0.75rem;
    }
    .button-item{
        width: 15rem;
    }
    .button-item.wide{
        width: 15rem;
    }
  }

/* <!-- Customer Voice Section --> */

.bg-line {
  background-color: #95D9FF;
  padding: 2rem 1rem;
}

.xxl-text {
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #0051C2;
  text-align: center;
  font-weight: 900;
}

.xxl-yellow-text {
  font-size: 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #FDED40;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.2rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.category-button {
  font-size: 1.125rem;
  background-color: #3377FF;
  border-radius: 0.25rem;
  width: 12.5rem;
  height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}
.category-button:hover {
  background-color: #0051C2;
}

.feedback-container {
  max-width: 61.25rem;
  margin: 2rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feedback-card {
  width: calc(40% - 2rem);
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: bold;
}

.card-body {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  
}

.see-more-arrow {
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  color: white;
  background-color: #0051C2;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
}

.hidden-card {
  display: none;
}
.hidden-card.visible {
  display: flex;
}

/* Responsive */
@media (max-width: 1024px) {
  .feedback-card {
    width: 100%;
    max-width: 30rem;
  }
}

@media (max-width: 768px) {
  .xxl-text,
  .xxl-yellow-text {
    font-size: 1.75rem;
  }
  .category-button {
    width: 9rem;
    font-size: 1rem;
    height: 3rem;
  }
}

@media (max-width: 480px) {
  .category-button {
    width: 100%;
  }
  .feedback-card {
    width: 100%;
  }
}

/* <!-- End Customer Voice Section --> */
/* <!-- Service Flow Section --> */

.flow-section {
    background-color: #D5EAF6;
    padding: 4.5rem 0 7.5rem;
    display: flex;
    flex-direction: column;
    gap: 7.5rem;
    position: relative;
  }

  .flow-header {
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
    color: white;
    background-color: #0051C2;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .flow-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12.5rem;
    flex-wrap: wrap;
  }

  .flow-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 25rem;
  }

  .flow-step img {
    width: 100%;
    height: auto;
  }

  .flow-title {
    font-size: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    text-align: center;
    color: #0051C2;
  }

  .flow-description {
    font-size: 1rem;
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    text-align: justify;
  }

  .step-offset {
    position: relative;
    top: 100px;
  }

  /* Responsive */
  @media (max-width: 1920px) {
    .flow-step {
      width: 24rem;
    }
  }

  @media (max-width: 1440px) {
    .flow-row {
      gap: 8rem;
    }
    .flow-step {
      width: 22rem;
    }
  }

  @media (max-width: 1024px) {
    .flow-section{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    .flow-row{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        width: 80%;
    }
    .flow-step {
      width: 100%;
      max-width: 24rem;
      gap: 0.25rem;
    }
    .flow-description {
      text-align: justify;
    }
    .step-offset {
    position: relative;
    top: 0;
  }
  }

  @media (max-width: 768px) {
    .flow-title {
      font-size: 1rem;
    }
    .flow-section{
      gap: 0.5rem;
    }
    .flow-row{
      gap: 0.5rem;
    }
    .flow-step{
      gap: 0.125rem;
    }
    .flow-description {
      font-size: 0.95rem;
    }
    .flow-header {
    font-size: 2rem;
    }
  }

  @media (max-width: 375px) {
    .flow-step {
      padding: 1rem;
      
    }
    .flow-section{
      gap: 0.25rem;
    
    }
    .flow-row{
      gap: 0.25rem;
    }
    .flow-step{
      gap: 0.125rem;
    }
  }
/* <!-- End Service Flow Section --> */
/* <!-- Area Section --> */
  .area-section {
    background-image: url(../img/image6.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 4.5rem 0 3.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
  }

  .area-heading {
    color: #00265C;
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  }

  .area-subheading {
    color: white;
    font-size: 2.25rem;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
  }

  .area-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50rem;
    max-width: 90%;
  }

  .area-item {
    background-color: #327CF1;
    color: white;
    font-size: 1.25rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif;
  }

  /* Responsive */
  @media (max-width: 1920px) {
    .area-subheading {
      font-size: 2rem;
    }
  }

  @media (max-width: 1440px) {
    .area-heading {
      font-size: 1.75rem;
    }
    .area-subheading {
      font-size: 1.75rem;
    }
  }

  @media (max-width: 1024px) {
    .area-heading h1{
        display: flex;
        flex-direction: column;;
    }
    .area-list {
      width: 37.5rem;
    }
    .area-item {
      font-size: 1.125rem;
    }
  }

  @media (max-width: 768px) {
    .area-heading {
      font-size: 1rem;
    }
    .area-section{
      gap: 1rem;
      padding: 1.5rem 1rem;
    }
    .area-list {
      width: 80%;
      gap: 0.5rem;
    }
    .area-subheading {
      font-size: 1.5rem;
    }
    .area-item {
      font-size: 1rem;
      height: 4rem;
    }
  }

  @media (max-width: 375px) {
    .area-heading {
      font-size: 1rem;
    }
    .area-subheading {
      font-size: 1rem;
    }
    .area-list{
      gap: 0.25rem;
    }
    .area-item {
      font-size: 1rem;
      height: 4rem;
    }
  }
/* <!-- End Area Section --> */
.contact-section {
  width: 100%;
  padding: 4.5rem 1rem 3.75rem;
  background-image: linear-gradient(#54C2FF, #D7EBF6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}

.contact-title {
  font-size: 3rem;
  font-weight: 900;
  color: #0152C3;
  font-family: "Noto Sans JP";
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.form-content {
  width: 50rem;
  max-width: 90%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 56.25rem; /* 900px */
  max-width: 90%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

.form-label {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.required {
  background-color: rgba(255, 4, 4, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.form-input,
.form-textarea {
  padding: 1.25rem;
  font-size: 1rem;
  border: none;
  background-color: #f0f0f0;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}

.form-textarea {
  height: 15rem;
  resize: vertical;
}

.form-privacy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1.125rem;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
}

.form-description {
  font-size: 1rem;
}

.form-agree {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.checkbox {
  width: 1.25rem;
  height: 1.25rem;
}

.submit {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  padding: 1rem;
  width: 20rem;
  font-weight: 900;
  color: white;
  border-radius: 0.5rem;
  background-color: #3377FF;
  border: none;
  cursor: pointer;
}

.submit:hover {
  background-color: #0051C2;
}

/* ----------------------------- */
/* ✅ Responsive Breakpoints     */
/* ----------------------------- */

@media (max-width: 120rem) {
  /* 1920px and down — default is fine */
}

@media (max-width: 90rem) {
  /* 1440px */
  .contact-title {
    font-size: 2.5rem;
  }

  .form-content {
    width: 44rem;
  }

  .contact-form {
    width: 48rem;
  }
}

@media (max-width: 64rem) {
  /* 1024px */
  .contact-title {
    font-size: 2rem;
  }

  .form-label {
    font-size: 1rem;
  }

  .form-content {
    width: 36rem;
  }

  .contact-form {
    width: 90%;
    gap: 1rem;
  }
}

@media (max-width: 48rem) {
  /* 768px */
  .contact-title {
    font-size: 1.75rem;
  }

  .form-textarea {
    height: 12rem;
  }

  .form-content {
    width: 100%;
  }
}

@media (max-width: 23.4375rem) {
  /* 375px */
  .contact-form {
    padding: 0.125rem;
  }

  .contact-title {
    font-size: 1.5rem;
  }

  .form-label {
    font-size: 0.875rem;
  }

  .form-input,
  .form-textarea {
    font-size: 0.75rem;
    padding: 0.75rem;
  }

  .form-textarea {
    height: 10rem;
  }

  .required {
    padding: 0.125rem 0.25rem;
    font-size: 0.7rem;
  }

  .checkbox {
    width: 1.25rem;
    height: 1.25rem;
  }

  .submit {
    font-size: 1.125rem;
    width: 100%;
  }
}

/* <!-- Contact Form Section --> */

/* ===== ARTICLE SECTION ===== */
.article-section {
  background-color: var(--color-info);
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.article-wrapper {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  width: 54rem;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow);
}

.article-title {
  font-size: var(--font-size-xxl);
  text-align: center;
  font-family: var(--font-main);
  font-weight: bold;
  color: var(--color-primary);
}

.article-list {
  display: flex;
  gap: 4rem;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.article-card {
  display: flex;
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 20rem;
  min-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
}

.article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.article-image:hover {
  transform: scale(1.02);
}

.article-tag {
  background-color: #3377FF;
  color: white;
  width: fit-content;
  min-width: 9.375rem;
  height: 2.5rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  padding: 0 1rem;
  font-weight: 500;
}

.article-content {
  font-size: var(--font-size-md);
  line-height: 1.6;
  color: var(--color-black);
  flex-grow: 1;
  color: #003d91;
}

.article-button {
  background-color: var(--color-primary);
  color: var(--color-white);
  width: fit-content;
  min-width: 9.375rem;
  height: 3.75rem;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  padding: 0 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-main);
  font-weight: 500;
}

.article-button:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 82, 195, 0.3);
}

.article-button:active {
  transform: translateY(0);
}

.article-button-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-main);
  width: 100%;
  height: 100%;
  justify-content: center;
}

.article-button-link:visited {
  color: var(--color-white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1440px) {
  .article-title {
    font-size: var(--font-size-xl);
  }

  .article-wrapper {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 1024px) {
  .article-section {
    padding: 3rem 1rem 2.5rem;
    min-height: auto;
  }

  .article-list {
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
  }

  .article-card {
    max-width: 100%;
    min-width: auto;
  }

  .article-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .article-section {
    padding: 2rem 0.5rem;
  }

  .article-wrapper {
    padding: 2rem 1rem;
    margin: 0 0.5rem;
  }

  .article-title {
    font-size: var(--font-size-lg);
  }

  .article-button {
    width: 100%;
    height: 3.25rem;
    font-size: var(--font-size-md);
  }

  .article-image {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .article-section {
    padding: 1.5rem 0.25rem;
  }

  .article-wrapper {
    padding: 1.5rem 0.75rem;
    gap: 1.5rem;
  }

  .article-title {
    font-size: var(--font-size-md);
    margin-bottom: 0.5rem;
  }

  .article-tag {
    width: 100%;
    font-size: var(--font-size-sm);
    min-width: auto;
  }

  .article-content {
    font-size: var(--font-size-sm);
  }

  .article-button {
    width: 100%;
    font-size: var(--font-size-sm);
    height: 3rem;
  }

  .article-image {
    height: 140px;
  }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
  .article-card,
  .article-image,
  .article-button {
    transition: none;
  }
  
  .article-card:hover {
    transform: none;
  }
  
  .article-image:hover {
    transform: none;
  }
  
  .article-button:hover {
    transform: none;
  }
}

/* Focus styles for accessibility */
.article-button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.article-button-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}


/* ----cta------ */
.web-banner {
  width: 100%;
  height: auto;
  position: fixed;
  z-index: 100;
  bottom: 0;
}

.web-banner-top {
  height: 60px;
  background-color: #3377FF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.white-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

.highlight-text {
  color: #ffc107;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 4px;
}

.web-banner-main {
  background-color: #ffeb3b;
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.ai-icon{
  position: absolute;
  right: 0.5rem;
  bottom: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.ai-icon:hover {
  transform: scale(1.1);
}

/* AI Modal Styles */
.ai-modal {
  display: none;
  position: absolute;
  right: 2rem;
  bottom: 6rem;
  z-index: 1000;
  width: 350px;
  max-width: 90vw;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-modal-content {
  display: flex;
  flex-direction: column;
  height: 400px;
}

.ai-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
  background: #f8f9fa;
  border-radius: 12px 12px 0 0;
}

.ai-modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.ai-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.ai-modal-close:hover {
  background-color: #e0e0e0;
}

.ai-modal-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.ai-chat-container {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  max-height: 280px;
}

.ai-message {
  display: flex;
  margin-bottom: 16px;
  align-items: flex-start;
}

.ai-bot-message {
  justify-content: flex-start;
}

.ai-user-message {
  justify-content: flex-end;
}

.ai-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px;
  flex-shrink: 0;
}

.ai-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-user-message .ai-avatar {
  margin-right: 0;
  margin-left: 8px;
  order: 2;
}

.ai-message-content {
  max-width: 250px;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
}

.ai-bot-message .ai-message-content {
  background-color: #f1f3f4;
  color: #333;
  border-bottom-left-radius: 4px;
}

.ai-user-message .ai-message-content {
  background-color: #007bff;
  color: white;
  border-bottom-right-radius: 4px;
  order: 1;
}

.ai-input-container {
  display: flex;
  padding: 16px;
  border-top: 1px solid #e0e0e0;
  gap: 8px;
}

.ai-input-container input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.ai-input-container input:focus {
  border-color: #007bff;
}

.ai-input-container button {
  padding: 10px 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.ai-input-container button:hover {
  background-color: #0056b3;
}

.ai-input-container button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Responsive adjustments for AI modal */
@media (max-width: 768px) {
  .web-banner{
    position:static;
    height: auto;
  }
  .ai-modal {
    right: 1rem;
    width: 300px;
    bottom: 5rem;
  }
  
  .ai-modal-content {
    height: 350px;
  }
  
  .ai-chat-container {
    max-height: 230px;
  }
  
  .ai-message-content {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .ai-modal {
    right: 0.5rem;
    width: 280px;
  }
  
  .ai-message-content {
    max-width: 180px;
  }
}

.discount-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  height: auto;
  padding: 0.5rem;
  /* flex-wrap: wrap; */
  flex-direction: row;
  top: 3rem;
}

.discount-label {
  color: #D92445;
  font-size: 1rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 1.5rem;
}

.discount-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  justify-content: center
}

.amount {
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  color: #D52B42;
  -webkit-text-stroke: 0.5px white;
  line-height: 2rem;
}

.unit {
  font-size: 1.25rem;
  font-weight: 900;
  color: #D52B42;
}

.arrow-img {
  width: 2.5rem;
  height: 2.5rem;
}

.now-only {
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
}

.base-fee {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.25rem;
}

.zero-fee {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.zero {
  font-size: 5rem;
  font-style: italic;
  font-weight: 900;
  color: #D52B42;
  -webkit-text-stroke: 2px #fff;
  line-height: 0.5rem;
}

.yen {
  font-size: 1.5rem;
  color: #D52B42;
  font-weight: 900;
  font-style: italic;
  -webkit-text-stroke: 1px #fff;

}

.tel-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tel-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 12px;
  padding: 0.5rem 3rem;
  /* gap: 0.5r  em; */
  flex-direction: column;
  flex-wrap: wrap;
}

.tel-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
  font-size: 1.25rem;
  font-weight: bold;
}
.hour-label{
    color: red;
}
.tel-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.tel-icon{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0.25rem;
}
.tel-icon img {
  display: inline-block;
}
 .cta-tel{
    width: 60px;
    height: auto;
  }
  .cta-r{
    height: 16px;
  }
.tel-number p {
  font-size: 3rem;
  font-weight: 900;
  color: #0051C3;
  line-height: 3rem;
}
.tel-number a{
    text-decoration: none;
}

/* ────────── Responsive ────────── */

/* Desktop Large - 1920px以下 */
@media (max-width: 1920px) {
  .web-banner-top {
    height: 55px;
  }
  
  .white-text {
    font-size: 1.4rem;
  }
  
  .highlight-text {
    font-size: 1.8rem;
  }
  
  .amount {
    font-size: 2.8rem;
  }
  
  .zero {
    font-size: 4.5rem;
  }
  
  .tel-number p {
    font-size: 2.8rem;
  }
}

/* Desktop Medium - 1440px以下 */
@media (max-width: 1440px) {
  .web-banner-top {
    height: 50px;
  }
  
  .white-text {
    font-size: 1.3rem;
  }
  
  .highlight-text {
    font-size: 1.6rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .zero {
    font-size: 4rem;
    -webkit-text-stroke: 1.8px #fff;
  }
  
  .tel-number p {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  
  .tel-btn {
    padding: 0.4rem 2.5rem;
  }
  
  .tel-info {
    gap: 8rem;
    font-size: 1.1rem;
  }
}

/* Tablet - 1024px以下 */
@media (max-width: 1024px) {
  .web-banner{
    position: static;
    height: auto;
   
  }
   .web-banner-main{
    padding: 1rem;
    padding-bottom: 1rem;
   }
  .discount-row{
    display: none;
  }
  .white-text {
    font-size: 1.2rem;
  }
  
  .highlight-text {
    font-size: 1.4rem;
  }
  
  .tel-btn {
    flex-direction: column;
    align-items: center;
    padding: 0.6rem 2rem;
  }
  
  .tel-info {
    gap: 6rem;
    font-size: 1rem;
  }
  
  .tel-number p {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }
  
  .arrow-img {
    width: 2.2rem;
    height: 2.2rem;
  }
}

/* Tablet Small - 768px以下 */
@media (max-width: 768px) {
  
  .web-banner{
    position: static;
    height: auto;
  }
  .web-banner-top {
    height: 40px;
  }
  
  .white-text {
    font-size: 1.1rem;
  }
  
  .highlight-text {
    font-size: 1.3rem;
  }
  
  .web-banner-main {
    padding-bottom: 0.4rem;
    gap: 0.4rem;
  }
  
  .discount-row {
    gap: 0.6rem;
    padding: 0.6rem;
  }
  
  .discount-label {
    font-size: 0.9rem;
    line-height: 1.3rem;
  }
  
  .amount {
    font-size: 1.8rem;
    line-height: 1.6rem;
  }
  
  .unit {
    font-size: 1.1rem;
  }
  
  .zero {
    font-size: 3rem;
    -webkit-text-stroke: 1.4px #fff;
    line-height: 0.4rem;
  }
  
  .yen {
    font-size: 1.3rem;
  }
  
  .now-only {
    font-size: 0.9rem;
  }
  
  .base-fee {
    font-size: 0.9rem;
    line-height: 1.1rem;
  }
  
  .tel-btn {
    padding: 0.5rem 1.5rem;
  }
  
  .tel-info {
    gap: 4rem;
    font-size: 0.9rem;
  }
  
  .tel-number p {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  
  .arrow-img {
    width: 2rem;
    height: 2rem;
  }
}

/* Mobile Large - 480px以下 */
@media (max-width: 480px) {
  main{
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .web-banner-top {
    height: 35px;
  }
  
  .white-text {
    font-size: 1rem;
  }
  
  .highlight-text {
    font-size: 1.2rem;
  }
  
  .discount-row {
    gap: 0.5rem;
    padding: 0.5rem;
  }
  
  .amount {
    font-size: 1.6rem;
  }
  .tel-main{
    gap: 0.25rem;
  }
  .zero {
    font-size: 2.8rem;
    -webkit-text-stroke: 1.3px #fff;
  }
  
  .tel-info {
    gap: 2rem;
    font-size: 0.8rem;
  }
  
  .tel-number p {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  
  .tel-btn {
    padding: 0.4rem 1rem;
  }
   .cta-tel{
    width: 36px;
    height: auto;
  }
  .cta-r{
    height: 12px;
  }
}

/* Mobile - 375px以下 */
@media (max-width: 375px) {
  main{
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .web-banner-top {
    height: 32px;
  }
  
  .white-text {
    font-size: 0.9rem;
  }
  
  .highlight-text {
    font-size: 1.1rem;
    margin: 0 2px;
  }
  
  .web-banner-main {
    padding-bottom: 0.3rem;
    gap: 0.3rem;
  }
  
  .discount-row {
    gap: 0.4rem;
    padding: 0.4rem;
  }
  
  .discount-label {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }
  
  .amount {
    font-size: 1.4rem;
    line-height: 1.3rem;
  }
  
  .unit {
    font-size: 1rem;
  }
  
  .now-only {
    font-size: 0.8rem;
  }
  
  .base-fee {
    font-size: 0.8rem;
    line-height: 1rem;
  }
  
  .zero {
    font-size: 2.5rem;
    -webkit-text-stroke: 1.2px #fff;
    line-height: 0.3rem;
  }
  
  .yen {
    font-size: 1.2rem;
  }
  
  .arrow-img {
    width: 1.8rem;
    height: 1.8rem;
  }
  
  .tel-btn {
    padding: 0.3rem 0.8rem;
  }
  
  .tel-info {
    gap: 1.5rem;
    font-size: 0.7rem;
  }
  
  .tel-number p {
    font-size: 1rem;
    line-height: 1rem;
  }
  
  .cta-tel{
    width: 36px;
    height: auto;
  }
  .cta-r{
    height: 12px;
  }
}

/* Mobile Small - 320px以下 */
@media (max-width: 320px) {
  main{
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .web-banner-top {
    height: 30px;
  }
  
  .white-text {
    font-size: 0.8rem;
  }
  
  .highlight-text {
    font-size: 1rem;
  }
  
  .amount {
    font-size: 1.2rem;
  }
  
  .zero {
    font-size: 2.2rem;
    -webkit-text-stroke: 1px #fff;
  }
  
  .tel-info {
    gap: 1rem;
    font-size: 0.6rem;
  }
  
  .tel-number p {
    font-size: 1.1rem;
    line-height: 1.1rem;
  }
  
  .tel-btn {
    padding: 0.2rem 0.6rem;
  }
  
  .arrow-img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* ----cta------ */