/* ==========================================
  VARIABLES & BASE
========================================== */
:root {
    --p-blue: #0084A9;
    --a-orange: #FF7D2C;
    --text: #333;
    --bg-light: #FCF4E3;
    --bg-light-green: #EFF6F5;
    --h-height: 74px;
}

body {
    margin: 0;
    color: var(--text);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.08em;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    body {
       font-size: 14px;
    }
}


section {
    padding: 7em 0em;
}


@media screen and (max-width: 768px) {
    section {
        padding: 2em 0em;
    }
}

.section__inner{
    width: 1080px;
    margin: 0 auto;
}


@media screen and (max-width: 768px) {
    .section__inner{
        width: 100%;
        padding:1em;
    }
}

h2 {
    font-size: 32px;
    text-align: center;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 21px;
    }
}

/* ==========================================
  HEADER
========================================== */
.section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 74px;
    background: #fff;
    border-bottom: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}
@media screen and (max-width: 768px) {
    .section__header {
        height: 65px;
    }
}

.section__header__logo {
    padding-left: 20px;
}

.section__header__logo img {
    width: 110px;
}

@media screen and (max-width: 768px) {
   .section__header__logo img {
    width: 95px;
}

}


.section__header__right {
    display: flex;
    height: 100%;
    align-items: center;
}

.section__header__nav {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0 30px 0 0;
    padding: 0;
}

.section__header__nav-link {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    font-size: 15px;
}

/* ==========================================
  BUTTON COMPONENTS
========================================== */
.c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.2s;
    padding:1.5em;
}

.c-btn__icon {
    margin-right: 10px;
    font-size: 1.2em;
}

.c-btn--orange {
    background: var(--a-orange);
    width: 300px;
    letter-spacing: 0;
}

.c-btn--blue {
    background: var(--p-blue);
    width: 240px;
}

.c-btn--cta {
    height: 67px;
    border-radius: 32px;
    width: 400px;
    font-size: 19px;
}

.c-btn:hover {
    opacity: 0.85;
}

/* Utility: Round Price Button */
.c-btn-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  cursor: pointer;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #d1d1d1;
  border-radius: 100px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
  color: #4385a5;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
}

.c-btn-price:hover {
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(1px);
}

.c-btn-price::before {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #4385a5;
  color: #ffffff;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 24px;
}

/* ==========================================
  HERO
========================================== */
.section__hero {
    background-color: var(--bg-light);
    padding: 80px 0 136px;
    position: relative;
    background-image: url(../../assets/images/hero_bg.png);
    background-size: contain;
}

@media screen and (max-width: 768px) {
    .section__hero {
        background-color: var(--bg-light);
        padding: 0;
    }
}

.section__hero__inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 26px;
}

.section__hero__content {
    flex: 1;
}

.section__hero__caption {
    font-size: 61px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: 0.09em;
}

.section__hero__caption span {
    color: var(--a-orange);
}

.section__hero__list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.section__hero__list-item {
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 19px;
    letter-spacing: 0.05em;
}

.section__hero__image-unit {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.8em;
}

.section__hero__pc {
    width: 430px;
    margin-left: 10px;
}

.section__hero__pc img {
    width: 94%;
}

.section__hero__main-img {
    width: 102%;
}

/* Layout: Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-hero {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.caption-delay { animation-delay: 0.2s; }
.list-delay { animation-delay: 0.4s; }
.pc-delay { animation-delay: 0.6s; }
.img-delay { animation-delay: 0.8s; }

/* ==========================================
  CTA FLOATING
========================================== */
.section__cta {
    max-width: 1050px;
    margin: -74px auto 0;
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 10;
}

/* ==========================================
  PROBLEM
========================================== */
.section__problem {
    padding-top: 5em;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .section__problem {
    padding-top: 1em;
}
}

.section__problem__title {
    display: inline-block;
    font-weight: 900;
    position: relative;
    margin: 10px 0 20px;
    padding: 0 0.5em;
}

.section__problem__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 14px;
    background: #FFE77B;
    z-index: -1;
}
@media screen and (max-width: 768px) {
    .section__problem__title::after {
        background: none;
    }
}

.section__problem__p {
    font-weight: 400;
    line-height: 2.4em;
    font-size: 17px;
}
@media screen and (max-width: 768px) {
    .section__problem__p {
        text-align: left;
        line-height: 1.9em;
         font-size: 15px;
    }
}
.section__problem__photos {
    margin: 2.6em 0 1.5em;
}

@media screen and (max-width: 768px) {
    .section__problem__photos {
        margin: 1em 0;
    }
}

.section__problem__photos img {
    width: 80%;
}
@media screen and (max-width: 768px) {
    .section__problem__photos img {
    width: 100%;
}
}
.section__problem__cta {
    text-align: center;
    margin: 0 auto;
    width: 520px;
}
@media screen and (max-width: 768px) {
.section__problem__cta {
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
}

/* ==========================================
  FEATURE
========================================== */
.section__feature {
    background-color: var(--bg-light);
    padding-top: 8em;
}

@media screen and (max-width: 768px) {
    .section__feature {
        background-color: var(--bg-light);
        padding-top: 4em;
    }
}

.section__feature__main {
    background-color: #FFF;
    border-radius: 18px;
    padding: 0 4.8em 2.5em;
    border: 1px solid #eee;
    margin-bottom: 3em;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

@media screen and (max-width: 768px) {
    .section__feature__main {
         padding: 0 1.4em;
         margin-bottom: 1.5em;
          border-radius: 10px;
    }  
}

.section__feature__main h2 img {
    margin: -2em auto 2em;
    text-align: center;
    width: 78%;
}
@media screen and (max-width: 768px) {
    .section__feature__main h2 img {
        margin: -1em auto 1em;
        text-align: center;
        width: 100%;
    }
}

.section__feature__item__parent{
     margin-bottom: 60px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2em;
}
@media screen and (max-width: 768px) {
.section__feature__item__parent{
     margin-bottom: 2.4em;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1.2em;
}
}

.section__feature__item{
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 1em;
   
}


@media screen and (max-width: 768px) {
    .section__feature__item{
         display:block;
        gap: 0px;
        margin-bottom: 1em;
    }
}

.section__feature__item-text {
    flex-basis: 58%;
}
.section__feature__item-text__narrow{
    flex-basis: 45%;
}

@media screen and (max-width: 768px) {
    .section__feature__item-text {
    flex-basis: 100%;
    }
    .section__feature__item-text__narrow{
        flex-basis: 100%;    }

}

.section__feature__item-img {
    flex: 1;
}

@media screen and (max-width: 768px) {
.section__feature__item-img {
    text-align: center;
    margin:1em auto 1em;
}
}
.section__feature__item-img img{
    width: 90%;
}
@media screen and (max-width: 768px) {
.section__feature__item-img {
    text-align: center;
    margin:1em auto 1em;
}
.section__feature__item-img img{
    width: 75% !important;
}
img.section__feature__item-text__narrow__img{
    width: 100% !important;
}
}


.section__feature__item-header {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
.section__feature__item-header {
    display: flex;
    gap: 0.5em;
    margin-bottom: 0.7em;
}
}

.section__feature__item-num {
    flex-shrink: 0;
    width: 100px;
}


@media screen and (max-width: 768px) {
.section__feature__item-num {
    flex-shrink: 0;
    width: 50px;
}

}

.section__feature__item-num img {
    width: 100%;
    height: auto;
    display: block;
    padding-bottom: 0.3em;
}

.section__feature__item-title {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.5;
    color: #333;
}
@media screen and (max-width: 768px) {
.section__feature__item-title {
    font-size: 18px;
}
}

@media screen and (max-width: 768px) {
.section__feature__item-num img {
    padding-top: 0.3em;
}

}


.section__feature__item-description {
    line-height: 2.2;
    color: #333;
}
@media screen and (max-width: 768px) {
.section__feature__item-description {
    line-height: 2;
}
}

/* ==========================================
  ACCORDION (SMOOTH VERSION)
========================================== */

/* Layout / Utility: Accordion Container */
.c-accordion {
    text-align: center;
    margin-bottom: 1em;
}

.c-accordion__input {
    display: none;
}

.c-accordion__link {
    display: inline-block;
    color: var(--p-blue, #007bff);
    text-decoration: underline;
    cursor: pointer;
    text-align: center;
    padding: 10px;
    transition: opacity 0.2s;
}

.c-accordion__link:hover {
    opacity: 0.8;
}

.c-accordion__link img {
    display: block;
    width: 310px;
    max-width: 100%;
}

.c-accordion__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s ease, margin-top 0.6s ease;
    overflow: hidden;
}

.c-accordion__input:checked ~ .c-accordion__content {
    grid-template-rows: 1fr; 
    margin-top: 15px;
}

.c-accordion__content-inner {
    min-height: 0;
}
.c-accordion__content table{
    width: 100%; border-collapse: collapse; border: 1px solid #ddd; color: #333;
}
.c-accordion__text {
    line-height: 1.8;
    text-align: left;
    padding: 1px;
}

.c-accordion__text table {
    margin-bottom: 0.5em;
    width: 100%;
}

/* Layout / Utility: Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 1fr;
    gap: 14px;
    padding: 10px 0;
}

.feature-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card__header {
    background-color: #0084A9;
    padding: 13px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.feature-card__header i {
    color: #ffffff;
    font-size: 24px;
}

.feature-card__title {
    font-weight: bold;
    color: #ffffff;
    font-size: 18px;
}

.feature-card__body {
    padding: 20px;
    font-size: 15px;
    line-height: 1.9;
    color: #555555;
    text-align: left;
    flex-grow: 1;
    background: #ffffff;
}

/* ==========================================
  interview
========================================== */

.section__voice {
    width: 100%;
    background-color: var(--bg-light-green);
}

.section__voice-inner {
    margin: 0 auto;
}

.section__voice-title {
    text-align: center;
    margin-bottom: 2em;
    font-weight: bold;
    color: var(--text);
}

/* Layout: Voice Cards */
.voice-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.voice-card {
    flex: 1;
    min-width: 340px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 132, 169, 0.08);
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    transition: transform 0.3s ease;
}
 @media  screen and (max-width:768px) {
.voice-card {
 min-width: 100%;
 /* margin:1em; */
}
 }

/* .voice-card:hover {
    transform: translateY(-5px);
} */

.voice-card__image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.voice-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-card__content {
    padding: 35px;
    flex-grow: 1;
}

.voice-card__tag {
    display: inline-block;
    background: #f0faff;
    color: var(--p-blue);
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid var(--p-blue);
}

.voice-card__heading {
    font-size: 22px;
    line-height: 1.5;
    margin: 0 0 18px 0;
    color: var(--text);
    font-weight: bold;
}
 @media  screen and (max-width:768px) {
.voice-card__heading {
    font-size: 18px;
}
 }

.voice-card__text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.voice-card__footer {
    padding: 0 35px 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.voice-card__name {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.office-name {
    font-size: 14px;
    color: #777;
}

.person-name {
    font-size: 20px;
    color: var(--text);
}

.btn-container {
    text-align: center;
}

.voice-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 30px;
    background-color: #fff;
    color: var(--p-blue);
    border: 1px solid var(--p-blue);
    border-radius: 100px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.voice-card__link:hover {
    background-color: var(--p-blue);
    color: #fff;
}

/* ==========================================
  FAQ
========================================== */
.section__faq h2{
    margin-bottom: 2em;
}
ul.menu{
    padding:0;
  }
.section__faq .menu__item {
    background: #ffffff;
    cursor: pointer;
    display: block;
    margin-bottom: 12px;
    color:#333333;
    border-bottom: 1px solid #bbb;
}
.section__faq .menu__item:first-child{
    border-top: 1px solid #bbb;
}
.section__faq .menu__item__link {
  color:#111111;
  padding-left: 4.5em;
  background-image: url("../images/icon_q2.svg");
  background-repeat: no-repeat;
  background-position: left 1em center;
  background-size: 39px;
  text-decoration: none;
}
  @media screen and (max-width:768px) {
.section__faq .menu__item__link {
    padding-left: 4em;
  background-size: 30px;
}
  }
.section__faq .menu__item__link:hover{
    text-decoration: underline;
}
.section__faq .submenu {
  border:none;
  line-height: 1.8em;
}

.menu__item {
  background: #008C9E;
  cursor: pointer;
  display: block;
  margin-bottom: 12px;
  color:#FFF;

  }
  @media screen and (max-width:768px) {
    .menu__item {
        margin-bottom: 8px;
    }
  }

  .menu__item__link {
  display: block;
  line-height: 60px;
  position: relative;
  font-size: 17px;
  font-weight: bold;
  padding:1.2em 2em;
  color:#FFFFFF;
  }

  .submenu {
  background: #FFF;
  color:#2a2a2a;
  display: none;
  padding:0em 4.7em 3em 1.5em;
  border:1px solid #ddd;
  }
  .submenu h3 {
  position: relative;
  padding: 0.8rem 1.7rem;
  color: #333;
  background: #B0E1D6;
  font-size:17px;
  margin:1.8em auto 0.8em;
  text-align: left;
  }
  @media screen and (max-width:768px) {
  .submenu h3:first-child {
    margin: 0 auto 0.5em;
  }
  .submenu h3 {
    font-size:15px;
    padding:0.6em 1em;
  }
  }

  .submenu h4{
    border-left:6px solid #1B9AA0;
    font-size:15px;
    margin-top:2em;
    margin-bottom:1em;
    padding:0em 0.7em;
  }
  .submenu ul{
    list-style-type: disc;
    margin:0;
    padding:0.5em 0.5em 0.5em 1em;
  }
  @media  screen and (max-width:768px) {
    .menu__item__link {
        line-height:26px;
        font-size:14.5px;
        padding:1em 1.3em;
    }
    .submenu {
        padding:1.2em;
    }
  }
  .submenu a{
    color:blue !important;
    font-weight: bold;
    text-decoration: underline;

  }
  .submenu a:hover{
    text-decoration: none;
    opacity: 1;
  }
  .submenu__item {
  color: #222;
  padding: 1rem;
  }

  .section__faq table{
    margin:0.5em auto 0.8em;
    width: 100%;
  }
  table, th, td {
    border: 1px solid #bbb;
    border-collapse: collapse;
}

  .section__faq table th{
    background-color:#666;
    color: #FFF;
    text-align: center;
  }

    .section__faq table th,.section__faq table td{
     padding: 1em;
  }



/* ==========================================
  FOOTER CTA
========================================== */
.section__footer__cta {
    background-image: url(../images/bg_footer_cta.jpg);
    background-size: cover;
    padding-bottom: 0;
    padding-top: 3.6em;
}

.section__footer__cta__main {
    display: flex;
    padding-bottom: 7em;
}

.section__footer__cta__left {
    width: 42%;
    padding: 20px 20px 0 0;
}

.section__footer__cta__right {
    width: 58%;
    padding: 20px;
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .section__footer__cta {
    background-image: url(../images/bg_footer_cta.jpg);
    background-size: cover;
    padding-bottom: 0;
    padding-top: 0em;
}

.section__footer__cta__main {
    display: block;
    padding-bottom: 2em;
}
.section__footer__cta__left {
    width: 100%;
    padding: 20px 10px 0;
}

.section__footer__cta__right {
    width: 100%;
    padding: 10px;
    margin-top: 1em;
    display: flex;
    justify-content: center;
}

}


.section__footer__cta__right img {
    max-width: 100%;
    height: auto;
}

.section__footer__cta .section__inner {
    position: relative;
}

.section__footer__cta__woman {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 230px;
}
@media screen and (max-width: 768px) {
.section__footer__cta__woman {
   display: none;
}
}

.section__inner__woman img {
    width: 100%;
}

/* ==========================================
  UTILITIES & RESPONSIVE
========================================== */
.u-text-accent {
    color: var(--a-orange);
    /* font-weight: bold; */
}

.text-shadow-white {
    text-shadow:
        1px 1px 0px #fff, -1px -1px 0px #FFF,
        -1px 1px 0px #fff, 1px -1px 0px #FFF,
        1px 0px 0px #fff, -1px 0px 0px #FFF,
        0px 1px 0px #fff, 0px -1px 0px #FFF;
}

.headbackbtn {
    display: none;
    width: 65px;
    position: fixed;
    bottom: 30px;
    right: 40px;
    cursor: pointer;
    z-index: 3;
}

span.orage_text {
    color: var(--a-orange);
}

.arrow_under{
    text-align: center;
    width: 90px;
    margin:2em auto 1.8em;
}

@media screen and (max-width: 768px) {
    .arrow_under{
        text-align: center;
        width: 45px;
        margin:1em auto;
    }
}

@media screen and (max-width: 768px) {
    .headbackbtn {
        display: none;
        width: 50px;
        position: fixed;
        bottom: 20px;
        right: 20px;
        cursor: pointer;
    }
    .sp-on { display: block; }
    .pc-on { display: none; }
}

@media screen and (min-width: 769px) {
    .sp-on { display: none; }
    .pc-on { display: block; }
}

/* Layout: Hamburger Menu */
.hamburger {
    display : block;
    position: fixed;
    z-index : 3;
    right : 13px;
    top   : 16px;
    width : 40px;
    height: 35px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 25px;
    height  : 3px ;
    left    : 6px;
    background : #111;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition   : 0.2s ease-in-out;
    transition        : 0.2s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }

  .hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
    background : #111;
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
    background : #111;
  }

  nav.globalMenuSp {
    position: fixed;
    z-index : 2;
    top  : 0;
    left : 0;
    background : var(--p-blue);
    background: var(--bg-light-green);
    text-align: left;
    transform: translateY(-100%);
    transition: all 0.4s;
    width: 100%;
    height: 100%;
    opacity:1 !important;
    overflow: scroll;
  }

  nav.globalMenuSp ul {
    background: var(--bg-light-green);
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #111;
  }
  nav.globalMenuSp ul li:first-child{
    border-top: 1px solid #111;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #111;
    padding: .8em 1.5em;
    text-decoration :none;
    font-size:16px;
  }
  nav.globalMenuSp.active {
    transform: translateY(0%);
  }

/* Layout: Animation Effects */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.content-card {
    transition-delay: 0.1s;
}

/* Utility: Common Round Button */
.c-btn-round {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 36px;
    background-color: #fff;
    color: var(--p-blue, #0084A9);
    border: 1px solid var(--p-blue, #0084A9);
    border-radius: 100px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.02em;
    font-size: 17px;
}
@media screen and (max-width: 768px) {
    .c-btn-round {
        padding: 10px 16px;
        font-size: 15px;
    }
 
}

.c-btn-round:hover {
    background-color: var(--p-blue, #0084A9);
    color: #fff;
    transform: translateY(-2px);
}

.c-btn-round i {
    font-size: 1.1em;
}


/* スマホ閲覧時（画面幅768px以下）の強制調整 */
/* ==========================================
  MOBILE RESPONSIVE FIX (見切れ防止まとめ)
========================================== */
@media screen and (max-width: 768px) {
    /* 1. コンテンツ全体の共通設定 */
    .c-accordion__content-inner,
    .c-accordion__text {
        width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* 2. 画像の見切れ防止 */
    .c-accordion__text img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* 3. 料金表（テーブル）の強制収縮 */
    .c-accordion__content__table {
        width: 100% !important;
        table-layout: fixed !important; /* 幅を100%に強制固定 */
        word-break: break-all !important; /* 数字などの突き抜け防止 */
        font-size: 11px !important; /* 物理的に収めるためサイズダウン */
        min-width: 0 !important;
    }

    .c-accordion__content__table th,
    .c-accordion__content__table td {
        padding: 8px 2px !important; /* 余白を最小化 */
        letter-spacing: -0.05em;
        line-height: 1.3;
    }

    /* テーブルの列幅比率（100%内での割り振り） */
    .c-accordion__content__table th:nth-child(1), .c-accordion__content__table td:nth-child(1) { width: 18%; }
    .c-accordion__content__table th:nth-child(2), .c-accordion__content__table td:nth-child(2) { width: 23%; }
    .c-accordion__content__table th:nth-child(3), .c-accordion__content__table td:nth-child(3) { width: 23%; }

    /* 4. 機能一覧（カードグリッド）の1列化 */
    .feature-grid {
        grid-template-columns: 1fr !important; /* 縦1列に強制 */
        width: 100% !important;
        gap: 15px !important;
        padding: 10px 0 !important;
        box-sizing: border-box;
    }

    .feature-card {
        width: 100% !important;
        min-width: 0 !important;
    }

    .feature-card__body {
        font-size: 14px !important;
        padding: 15px !important;
    }
}


