@charset "utf-8";

html{
    font-size: 10px;
    color: #2b2b2b;
    scroll-behavior: smooth;
}


li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #2b2b2b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 64px;
}

.section-subtext {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 32px;
    transition-delay: 0.1s;
}
 

.feature_wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

#feature {
    scroll-margin-top: 80px;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    pointer-events: none;

    animation: pageFadeOut 0.6s ease forwards;
}

@keyframes pageFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}


/* ヘッダー */
header {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    z-index: 30;
    background-color: transparent;
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.header-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 70px;
    z-index: 30;
}
.header-section img {
    width: 170px;
    height: 80px;
    object-fit: cover;
}

.nav-list a {
    color: white;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.6s ease;
}
nav ul {
    display: flex;
    gap: 60px;
    align-items: center;
}

.btn {
    background-color: #16385C;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.6s;
}

.btn:hover {
    background-color: #FFFFFF;
    color:#16385C;
    outline: 2px solid #16385C;
}

header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

header.is-scrolled .nav-list a {
    color: #2b2b2b;
}


header.is-scrolled .nav-list .btn {
    color:#FFFFFF;
}


header.is-scrolled  .nav-list .btn {
    background-color:#16385C;
    color: #FFFFFF;
}

header.is-scrolled  .nav-list .btn:hover {
    background-color: #FFFFFF;
    color:#16385C;
    outline: 2px solid #16385C;
}




/* hamburger */

.hamburger {
    display: none;
    width: 40px;
    height: 28px;
    position: absolute;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 40;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background-color: #16385C;
    transition: 0.3s;
}

.hamburger span:nth-child(1) {top:0;}
.hamburger span:nth-child(2) {top:13px;}
.hamburger span:nth-child(3) {top:26px;}

.open .hamburger span:nth-child(1) {top:13px; transform: rotate(45deg);}
.open .hamburger span:nth-child(2) {opacity: 0;}
.open .hamburger span:nth-child(3) {top:13px; transform: rotate(-45deg);}


.hamburger-nav {
    position: fixed;
    inset: 0;
    background-color: #FFFFFF;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;    opacity: 0;
    transition: 0.5s ease;
    transform: scale(0.98);
}

.open .hamburger-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;    
    transform: scale(1);
}

.hamburger-nav-list {
    padding: 150px 30px 0 30px;
    display: flex;
    flex-direction: column;
    gap:64px;    
}

.hamburger-nav-list a {
    color: #2b2b2b;
    font-size: 1.8rem;
    font-weight: 600;
}

.hamburger-nav-list .btn {
    color: #FFFFFF;
    transition: all 0.6s;
}


.hamburger-nav-list .btn:hover {
    color: #16385C;
}



/* FV */
.fv {
    position: relative;
    height: 100vh;
    background-image: url("../img/fv.jpg");
    background-size: cover;
    background-position: center;
    align-items: center;

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
    }
}

.fv-text {
    position: absolute;
    top: 30%;
    left: 110px;
    color: white;
    font-weight: 700;
    font-size: 5.8rem;
    letter-spacing: 7.2px;
    line-height: 140%;
    width: calc(100%-220px);
}

.fv-subtext {
    position: absolute;
    top: 65%;
    left: 110px;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 2.3px;
    line-height: 36px;
    color: white;
}

.access-btn {
    position: absolute;
    top: 80%;
    left: 110px;
    background-color: #16385C;
    padding: 20px 30px;
    border-radius: 20px;
    letter-spacing: 2px;
    /* From Uiverse.io by alexmaracinaru */ 

  cursor: pointer;
  font-weight: 700;
  transition: all 0.6s;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 15px;
  color:#FFFFFF;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.access-btn:hover{
    background-color: #FFFFFF;
    color:#16385C;
    outline: 2px solid #16385C;
}

.fv-text,
.fv-subtext,
.access-btn {
    opacity: 0;
    transform: translateY(200px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-show {
    opacity: 1;
    transform: translateY(0);
}

.fv-mask {
    position: absolute;
    inset: 0;
    background: #f8f8f5; /* ←オフホワイト */
    z-index: 5;

    opacity: 1;
    transition: opacity 1s ease;
}

.fv-mask.is-hide {
    opacity: 0;
}

/* 悩み */
.problem {
    padding-block: 80px;
    background-color: #F6F6F6;
}

.problem-item {
    background-color: #F6F6F6;
    border-radius: 10px;
    display: flex;
    justify-content: center;
}

.cause {
    width: 30%;
    text-align: center;
}



.cause img {
    width: 80%;
    height: 230px;
    object-fit: cover;
}

.cause-content {
    font-size: 18px;
    font-weight: bold;
    padding: 24px 0;
}

.cause-content {
    background-color: #8C9EB0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    padding: 24px 0;
    border-radius: 10px;
    margin: 30px 32px;
}
.cause-detail {
    background-color: #DFE4EE;
    font-size: 16px;
    letter-spacing: 0.3%;
    line-height: 36px;
    padding: 16px 8px;
    border-radius: 10px;
    margin: 30px 32px;
    text-align: left;
}
.cause-arrow {
    display: block;
    margin: 0 auto;
    padding-top: 32px;
}


/* 営業支援 */
.feature {
    background-color: #F6F6F6;
}

.step1 {
    background-color: #F6F6F6;
    display: flex;
    gap: 80px;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 40px 60px;
    position: relative;
}
.step1::before {
  content: "01";
  position: absolute;
  top: 20px;
  left: 60px;

  font-size: 200px;
  font-weight: bold;
  color: #000;
  opacity: 0.05;

  z-index: 0;
}
.step1 img {
    width: 15%;
    height: 10%;
}
.support-content1 {
    font-weight: 600;
    line-height: 36px;
}
.tagline-point {
    background-color: #16385C;
    padding: 8px 16px;
    border-radius: 10px;
}
.tagline1 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    line-height: 140%;
    letter-spacing: 2px;
}
.tagline-point1 {
    font-size: 3.2rem;
    line-height: 140%;
    letter-spacing: 5.8px;
    margin:0;
}

.tagline-content1{
    font-size: 1.6rem;
}

.tagline-content{
    font-size: 1.6rem;
}

.step1 ul li, .step2 ul li {
    font-size: 1.6rem;
}

.support-content1 ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.support-content li {
    text-align: left;
}

.step2 {
    background-color: #B7C4D6;
    display: flex;
    gap: 80px;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 40px 60px;
    position: relative;
}

.step2::before {
  content: "02";
  position: absolute;
  top: 20px;
  right: 60px;

  font-size: 200px;
  font-weight: bold;
  color: #000;
  opacity: 0.05;
  z-index: 0;
}
.step2 img {
    width: 15%;
    height: 10%;
}
.support-content {
    font-weight: bold;
    line-height: 36px;
    color: white;
}
.tagline-point {
    font-size: 32px;
    margin-bottom: 32px;
    color: white;
}

.support-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.support-content li {
    text-align: left;
}

.step3 {
    background-color: #8C9EB0;
    display: flex;
    gap: 80px;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 40px 60px;
    position: relative;
}

.step3::before {
  content: "03";
  position: absolute;
  top: 20px;
  left: 60px;

  font-size: 200px;
  font-weight: bold;
  color: #000;
  opacity: 0.05;
  z-index: 0;
}
.step3 img {
    width: 15%;
    height: 10%;
}
.support-content {
    font-weight: bold;
    line-height: 36px;
    color: white;
}

.support-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.support-content li {
    text-align: left;
}

.step3 .tagline-content {
    margin-bottom: 36px;
}



/* 検証 */

.verification-section {
    background-color: #DFE4EE;
    padding-block: 80px;
}
.verification {
    display: flex;
    gap: 32px;
}
.verification-content {
    display: flex;
    align-items: flex-end;
    margin-top: 32px;
}
.verification-content1 {
    padding: 0 32px;
    width: 100%;
}
.verification img {
    width: 100%;
    height: 250px;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    object-fit: cover;
}
.verification-step1 {
    background-color: #F6F6F6;
    padding: 20px 60px;
    margin-top: 32px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 140%;
}
.verification-step1 span {
    font-weight: bold;
    font-size: 3.6rem;
}
.verification-detail1 {
    background-color: #F6F6F6;
    margin-top: 32px;
}
.verification-detail1 h3 {
    font-weight: 700;
    font-size: 1.8rem;
}

.verification-content1 ul {
    background-color: #F6F6F6;
    display: block;
    padding-left: 20px;
    margin: 0 auto;
    line-height: 30px;
}
.verification-content1 li {
    list-style: disc;
    font-size: 1.6rem;    
}
.verification-detail1,.verification-content1 ul {
    padding: 16px;
    border-radius: 10px;
}


/* step2 */
.verification-content2 {
    padding: 0 32px;
    width: 100%;
}
.verification-step2 {
    background-color: #B7C4D6;
    margin-top: 32px;
    padding: 40px 20px 30px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    color: white;
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 140%;    
}

.verification-step2 span {
    font-weight: bold;
    font-size: 3.6rem;
    color: white;
}
.verification-detail2 {
    background-color: #B7C4D6;
    margin-top: 32px;
    color: white;
    font-size: 1.6rem;
}
.verification-detail2 h3 {
    font-size: 1.8rem;
    font-weight: 700;
}


.verification-content2 ul {
    background-color: #B7C4D6;
    display: block;
    padding-left: 20px;
    margin: 0 auto;
    line-height: 30px;
}
.verification-content2 li {
    list-style: disc;
    color: white;
}
.verification-detail2,.verification-content2 ul {
    padding: 16px;
    border-radius: 10px;
}


/* step3 */
.verification-content3 {
    margin-top: -90px;
    padding: 0 32px;
    width: 100%;
}
.verification-step3 {
    background-color: #F6F6F6;
    padding: 40px 20px 60px;
    margin-top: 32px;
    border-radius: 10px;
}
.verification-step3 {
    text-align: center;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    color: white;
    background-color: #8C9EB0;
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 140%;
}
.verification-step3 span {
    font-weight: bold;
    font-size: 36px;
    color: white;
}
.verification-detail3 {
    background-color: #8C9EB0;
    margin-top: 32px;
    color: white;
    font-size: 1.6rem;
}
.verification-detail3 h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.verification-content3 ul {
    display: block;
    padding-left: 20px;
    margin: 0 auto;
    line-height: 30px;
}
.verification-content3 li {
    list-style: disc;
    color: white;
}
.verification-detail3,.verification-content3 ul {
    padding: 16px;
    border-radius: 10px;
}
.inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.verification-method {
    display: inline-block;
    background-color: #16385C;
    border-radius: 10px;
    color: #FFFFFF;
    text-align: center;
    margin: 32px 80px;
    font-weight: bold;
    line-height: 35px;
    padding: 16px 24px;
    font-size: 2.4rem;
}

.fade-child {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-child.show {
  opacity: 1;
  transform: translateY(0);
}



/* プラン例 */

.plan {
    margin-top: 80px;
    padding-inline: 4%;
    text-align: center;
}


.plan-scroll-note {
    display: none;
}

.plan-table-wrap {
    width: 100%;
    margin-bottom: 24px;
}

.plan-table-frame {
    position: relative;
}


.plan-list {
    text-align: center;
    margin-top: 80px;
    position: relative;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
}



th:first-child {
  border-top-left-radius: 10px;
}

th:last-child {
  border-top-right-radius: 10px;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
table {
  border-collapse: collapse;
}

th, td {
  border: 3px solid #DFE4EE;
  padding: 20px;
}
.plan-item {
    width: 300px;
    font-size: 1.8rem;
}
.light {
    width: 300px;
    background-color: #F6F6F6;
    font-size: 1.8rem;
    padding-top: 80px;
}
.standard {
    width: 300px;
    background-color: #16385C;
    color: #FFFFFF;
    font-size: 1.8rem;
    padding-top: 80px;
    position: relative;
}

.standard::before {
    position: absolute;
    content: "最も人気のプラン";
    width: 80%;
    height: 45px;
    background-color: #FFFFFF;
    color:#16385C;
    border-radius: 10px;
    top: 16px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    line-height: 140%;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 1.8rem;
}


.professional {
    width: 300px;
    background-color: #8C9EB0;
    color: #FFFFFF;
    font-size: 1.8rem;
    padding-top: 80px;

}
.plan-contents {
    margin-top: 16px;
    letter-spacing: 0.1rem;
    line-height: 36px;
    font-weight: 400;
}

.plan-cost th {
    font-size: 1.8rem;
    font-weight: 600;
}

.plan-cost td {
    font-size: 2.4rem;
    font-weight: 700;
}

.plan-cost td span {
    font-size: 1.4rem;
}

td img {
    width: 30px;
}

tr th {
    font-size: 1.8rem;
}

tr td {
    font-size: 1.8rem;
}

td {
    width: 300px;
}

.plan-subtext-below {
    font-size: 1.4rem;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    color: #16385C;
    font-weight: bold;
    padding: 8px 16px;
    display: inline-block;
}



/* CTA */

.cta{
    background-color: #404f5E;
    padding-block: 80px;
}

.cta-wrapper {
    display: flex;
    gap: 5%;
    padding-inline: 4%;
}

.cta-left {
    width: 30%;
}

.cta-left img {
    width: 100%;
    border-radius: 10px;
}

.cta-right {
    width: 65%;
}

.cta-right h2 {
    font-size: 4.8rem;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.cta-right p {
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.cta-access-btn {
    justify-content: center;
    align-items: center;
    background-color: #16385C;
    padding: 10px;
    border-radius: 20px;
    letter-spacing: 2px;
    /* From Uiverse.io by alexmaracinaru */ 

  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-size: 3.2rem;
  transition: all 0.6s;
}

.cta-access-btn:hover {
    background-color: #FFFFFF;
    color:#16385C;
    outline: 2px solid #16385C;
}



/* 導入から運用までの流れ */

.flow{
    padding-block: 80px;
}

.flow-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #F9F9F9;
    padding-block: 64px;
    padding-inline: 6%;
}

.flow-grid-upper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    margin-bottom: 60px;
    position: relative;
}

.flow-grid-upper::before {
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #16385C;
    border-radius: 10px;
}

.flow-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    position: relative;
}

.flow-grid-bottom::before {
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #16385C;
    border-radius: 10px;
}

.flow-item-upper {
    width: 89.8%;
    text-align: center;
}

.flow-item-bottom {
    width: 60%;
    text-align: center;
}

.flow-item-upper img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    margin-bottom: 32px;
}

.flow-item-bottom img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: center -6px;
    margin-bottom: 32px;
}

.flow-timeline {
    font-size: 1.6rem;
    color: #16385C;
    font-weight: 700;
    margin-bottom: 32px;
    padding-inline: 16px;
    text-align: center;
    z-index: 1;
    background-color: #F6F6F6;
    position: relative;
    display: inline-block;
}

.flow-item-title {
    font-size: 1.8rem;
    color: #16385C;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    padding: 0 16px; 
}

.flow-item-upper .flow-item-title::after {
    content: ">>";
    top: 50%;
    left: 102%;
    transform: translateY(-50%);
    color: #16385C;
    position: absolute;
}

.flow-item-bottom .flow-item-title::after {
    content: ">>";
    top: 50%;
    left: 130%;
    transform: translateY(-50%);
    color: #16385C;
    position: absolute;
}

.flow-item-upper:last-child .flow-item-title::after {
    display: none;
}

.flow-item-bottom:last-child .flow-item-title::after {
    display: none;
}


.flow-item-detail li {
    font-size: 1.6rem;
    margin-bottom: 16px;
    text-align: left;
}




















/* お客様の声 */
.voice {
    padding-block: 80px;
    padding-inline: 4%;
    background-color: #F9F9F9;
}

.voice-wrapper {
    display: flex;
    gap: 32px;
}

.voice-card-left {
    width: 50%;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 48px 24px;
}

.voice-card-right {
    width: 50%;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 48px 24px;
}

.voice-card-title {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.voice-card-title-left img {
    width: 70px;
}

.voice-card-title-left {
    text-align: center;
}

.voice-card-title-right {
    display: flex;
    align-items: center;
}

.voice-card-title-right h3 {
    font-weight: 600;
    font-size: 1.8rem;
    position: relative;
}

.voice-card-title-right h3::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #16385C;
    bottom:-5px;
    left: 0;
    border-radius: 10px;
}


.voice-card-body-title {
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    background-color: #8C9EB0;
    display: inline-block;
    color: #ffffff;
}

.voice-card-body p {
    font-size: 1.3rem;
    margin-bottom: 16px;
}







/* お問い合わせ */

.contact {
    padding-block: 80px;
    padding-inline: 4%;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding-block: 48px;
}

dl {
  display: grid;
  grid-template-columns: 50% 1fr;
}

dt {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

dt label {
    font-size: 1.6rem;
}

dd {
    margin-bottom: 48px;
    position: relative;
}



.input-wrapper {
    background-color: #d9d9d9;
    width:100%;
    height: 48px;
    border-radius: 10px;
    position: relative;
}

input {
    width: 100%;
    height: 100%;
    padding-inline: 10px;
    box-sizing: border-box;
    font-size: 1.6rem;
    color: #2b2b2b;
    outline: none;
}

.input-wrapper::before {
    position: absolute;
    content: "必須";
    top: 50%;
    left: -58px;
    transform: translateY(-50%);
    width: 48px;
    height: 32px;
    border-radius: 10px;
    background-color: #E53935;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.input-wrapper.optional::before {
  content: none;
}

input::placeholder {
  color: #2b2b2b;
  opacity: 28%;
  font-size: 1.6rem;
}

.input-wrapper:focus-within {
    background-color: #F5FAFC;
}

.input-wrapper:focus-within {
    outline: none;
    outline: 2px solid #d9d9d9;
}

.radio-wrapper {
    display: flex;
    flex-direction: column;
}

.radio {
    display: flex;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.radio input {
    width: 10%;
}

.textarea-wrapper {
    width: 100%;
    height: 250px;
    position: relative;
    background-color: #d9d9d9;
    border-radius: 10px;
}

.textarea-wrapper:focus-within {
    background-color: #F5FAFC;
    outline: none;
    outline: 2px solid #d9d9d9;
}

textarea {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    font-size: 1.6rem;
    color: #2b2b2b;
    outline: none;
}

.textarea-wrapper::before {
    position: absolute;
    content: "必須";
    top: 50%;
    left: -58px;
    transform: translateY(-50%);
    width: 48px;
    height: 32px;
    border-radius: 10px;
    background-color: #E53935;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}



.button-wrapper {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.button-wrapper input[type="submit"] {
  display: inline-block;
  width: 250px;
  padding: 20px 80px;
  border: none;
  border-radius: 10px;
  background-color: #16385C;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.6s;
}

.button-wrapper input:hover {
    background-color: #FFFFFF;
    color: #16385C;
    outline: 2px solid #16385C;
}



/* フッター */

footer {
    background-color: #404F5E;
    padding-block: 50px;
}

.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 4%;
}
.footer-section img {
    width: 180px;
    height: 30px;
    object-fit: cover;
}



/* レスポンシブ */



/* タブレット1 */
@media (max-width:1024px) {

/* お悩み */
.cause-content {
    font-size: 1.6rem;
}

.cause-detail {
    font-size: 1.4rem;
}


/* 検証 */
.verification-detail1 h3, .verification-detail2 h3, .verification-detail3 h3 {
    font-size: 1.6rem;
}

.verification-content1 li, .verification-detail2, .verification-detail3 {
    font-size: 1.4rem;
}

.verification {
    margin-top: 80px;
}

/* CTA */
.cta-right h2 {
    font-size: 2.4rem;
}

.cta-right p {
    font-size: 1.8rem;
}

.cta-access-btn {
    font-size: 1.8rem;
}

/* プラン例 */
.plan-table-frame::before {
    left:61%;
    padding: 12px 12px;
}

}


/* タブレット2 */
@media (max-width:900px) {

/* hamburger */
.hamburger {
    display: block;
}

.hamburger span {
    display: block;
}


/* ヘッダー */

.header-section {
    padding: 30px 100px 30px 30px;
}

.btn {
    padding: 10px;
}



/* FV */
.fv-text {
    font-size: 4.8rem;
}

.fv-subtext {
    font-size: 1.4rem;
}

.access-btn {
    font-size: 2.4rem;
}


/* プラン例 */
.light,.standard,.professional {
    font-size: 1.6rem;
}

.plan-contents {
    line-height: 24px;
}


/* お客様の声 */

.voice-wrapper {
    flex-direction: column;
}

.voice-card-left {
    width: 100%;
}

.voice-card-right {
    width: 100%;
}


/* フッター */
.nav-list li:not(.btn) {
    display: none;
  }


}



/* スマホ */

@media (max-width: 760px){

/* 共通 */
    .section-title {
    font-size: 2.4rem;
}

.section-subtext {
    width: 90%;
    margin-inline: auto;
}


/* ヘッダー */

.header-section {
    padding: 10px 100px 10px 10px;
}

    .header-section .nav-list .btn {
    display: none;
}

/* FV */

.fv-text {
    font-size: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 85%;
}

.fv-subtext {
    font-size: 1.4rem;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 85%;
}

.access-btn {
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    width: 85%;
    justify-content: center;
    font-size: 1.4rem;
}


/* お悩み */

.problem-item {
    flex-direction: column;
}

.cause {
    width: 100%;
}


/* 営業支援 */

.step1 {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    padding: 40px 16px;
}

.step1::before {
    font-size: 48px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.support-content1 {
    width: 100%;
}

.tagline-point {
    text-align: center;
    margin-bottom: 16px;
}

.tagline1, .tagline-content1, .support-content1 ul li {
    font-size: 1.4rem;
}

.tagline-point1 {
    font-size: 1.8rem;
}

.support-content1 ul {
    align-items: center;
}


.step2 {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: center;
    text-align: center;
    padding: 72px 16px 40px 16px;
}

.step2::before {
    font-size: 48px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.support-content2 {
    width: 100%;
}

.tagline2, .tagline-content, .support-content ul li {
    font-size: 1.4rem;
}

.tagline-point2 {
    font-size: 1.8rem;
}

.support-content ul {
    align-items: center;
}




.step3 {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
    padding: 72px 16px;
}

.step3::before {
    font-size: 48px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}









/* 検証 */

.verification-content {
    flex-direction: column;
}

.verification {
    margin-top: 0;
    justify-content: center;
}

.verification-step1, .verification-step2, .verification-step3 {
    margin-top: 16px;
    padding: 16px 60px;
}

.verification-detail1, .verification-detail2,.verification-detail3 {
    margin-top: 16px;
}

.verification-content1 {
    padding-inline: 16px;
}

.verification-content2,.verification-content3 {
    padding-top: 32px;
    padding-inline: 16px;
    margin: 0;
}

.verification-method {
    font-size: 1.6rem;
    margin: 16px 16px;
}


/* CTA */

.cta-wrapper {
    flex-direction: column;
    align-items: center;
}

.cta-right {
    width: 90%;
}

.cta-right h2 {
    font-size: 1.8rem;
}

.cta-right p {
    font-size: 1.4rem;
}

/* /* プラン */

.plan-scroll-note {
    display: block;
    margin-bottom: 12px;
    font-size: 1.2rem;
    text-align: center;
}

.plan-table-frame::before {
    left: 120%;
}


.plan-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.plan-list {
    min-width: 900px;
}

.plan-item,.light, .standard, .professional {
    font-size: 1.4rem;
}

.plan-cost th,.plan-cost td {
    font-size: 1.4rem;
}

tr th, tr td {
    font-size: 1.4rem;
}

th, td {
    padding: 8px;
}

td img {
    width: 16px;
}

.standard::before {
    font-size: 1.6rem;
}



/* Voice */

.voice-card-title {
    margin-bottom: 32px;
}

.voice-card-left, .voice-card-right {
    padding: 32px 16px;
}

.voice-card-title-left h3, .voice-card-title-right h3 {
    font-size: 1.6rem;
}

/* Flow */

.flow-wrapper {
    background-color: #8C9EB0;
}

.flow-grid-upper {
    grid-template-columns: 1fr;
    gap: 48px;
}

.flow-grid-bottom {
    grid-template-columns: 1fr;
    gap: 48px;
}


.flow-grid-upper::before, .flow-grid-bottom::before {
    display: none;
}

.flow-item-upper, .flow-item-bottom {
    position: relative;
    background-color: #F6F6F6;
    border-radius: 10px;
}

.flow-item-upper, .flow-item-bottom {
    width: 100%;
    padding-top: 20px;
}

.flow-item-upper::before, .flow-item-bottom::before {
    position: absolute;
    content: "";
    top: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #16385C;
    border-radius: 10px;
}

.flow-item-title::after {
    display: none;
}

.flow-item-title {
    margin-bottom: 24px;
}

.flow-item-upper::after {
    content: ">>";
    bottom: -10%;
    left: 50%;
    transform: translateY(50%);
    color: #FFFFFF;
    position: absolute;
    font-size: 2.4rem;
    font-weight: 700;
    rotate: calc(90deg);
}

.flow-item-bottom::after {
    content: ">>";
    bottom: -10%;
    left: 50%;
    transform: translateY(50%);
    color: #FFFFFF;
    position: absolute;
    font-size: 2.4rem;
    font-weight: 700;
    rotate: calc(90deg);
}

.flow-item-bottom:last-child::after {
    display: none;
}


.flow-item-detail {
    padding-inline: 16px;
}

.flow-item-detail li {
    font-size: 1.4rem;
}


/* お問い合わせ */

dl {
    grid-template-columns: 1fr;
}

dt {
    margin-bottom: 8px;
}

dt::before {
    top: -12px;
    width: 100%;
}

dd {
    margin-bottom: 32px;
}

label {
    position: relative;
}

label::after {
    position: absolute;
    content: "必須";
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    width: 48px;
    height: 24px;    
    border-radius: 10px;
    background-color: #E53935;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.optional-label::after {
    content: none;
}

.input-wrapper::before {
    content: none;
}

.textarea-wrapper::before {
    content: none;    
}



/* フッター */

.footer-section {
    flex-direction: column-reverse;
    gap: 32px;
}







}
/* HubSpot 埋め込みフォームの配置調整 */
.contact-content .hs-form-frame {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

/* ===== 職人の右腕 LP 追加スタイル ===== */
.sp-br { display: none; }

/* 実績セクション */
.results { padding: 80px 0; background: #F6F6F6; }
.results-casetitle { text-align: center; font-size: 1.8rem; font-weight: 700; margin-top: 8px; }
.results-stats { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.results-stat { background: #fff; border-radius: 16px; padding: 40px 32px; text-align: center; flex: 1 1 260px; max-width: 320px; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.results-stat .num { font-size: 6rem; font-weight: 700; color: #16385C; line-height: 1; }
.results-stat .num small { font-size: 2.8rem; }
.results-stat .label { font-size: 1.9rem; font-weight: 700; margin-top: 12px; }
.results-stat .desc { font-size: 1.4rem; color: #555; margin-top: 14px; line-height: 1.7; text-align: left; }
.results-note { text-align: center; font-size: 1.4rem; color: #666; margin-top: 32px; line-height: 1.7; }

/* プランカード（名称＋位置づけ） */
.plan-cards { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.plan-card { flex: 1 1 280px; max-width: 340px; background: #fff; border: 1px solid #DFE4EE; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.05); }
.plan-card-head { padding: 24px; color: #fff; text-align: center; }
.plan-card-head .pc-name { font-size: 2.2rem; font-weight: 700; }
.plan-card-head .pc-pos { font-size: 1.4rem; margin-top: 6px; opacity: .95; }
.plan-card.is-light .plan-card-head { background: #F2B441; }
.plan-card.is-standard .plan-card-head { background: #16385C; }
.plan-card.is-pro .plan-card-head { background: #E53935; }
.plan-card-body { padding: 24px; }
.plan-card-body ul { list-style: none; padding: 0; margin: 0; }
.plan-card-body li { font-size: 1.5rem; line-height: 1.7; padding: 8px 0 8px 22px; position: relative; border-bottom: 1px dashed #E5E9F0; }
.plan-card-body li:last-child { border-bottom: none; }
.plan-card-body li::before { content: ""; position: absolute; left: 0; top: 1.5em; width: 8px; height: 8px; border-radius: 50%; background: #16385C; }
.plan-options { margin-top: 40px; background: #F6F6F6; border-radius: 16px; padding: 32px; }
.plan-options h3 { font-size: 1.9rem; font-weight: 700; margin-bottom: 16px; text-align: center; }
.plan-options-list { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.plan-options-list span { background: #fff; border: 1px solid #DFE4EE; border-radius: 999px; padding: 10px 20px; font-size: 1.4rem; }
.plan-price-note { text-align: center; font-size: 1.5rem; margin-top: 28px; font-weight: 700; line-height: 1.8; }

@media (max-width: 768px) {
    .sp-br { display: inline; }
    .results { padding: 56px 0; }
    .results-stat .num { font-size: 4.8rem; }
    .results-stat { max-width: 100%; }
    .plan-card { max-width: 100%; }
    .plan-options { margin-inline: 16px; }
}

/* プランカード 文字色の明示・バッジ */
.plan-card-body, .plan-card-body li { color: #2b2b2b; }
.plan-card-head { position: relative; }
.plan-card-head .pc-name, .plan-card-head .pc-pos { color: #fff; }
.pc-badge { display: inline-block; background: #fff; color: #16385C; font-size: 1.2rem; font-weight: 700; padding: 4px 14px; border-radius: 999px; margin-bottom: 8px; letter-spacing: .04em; }
.plan-card.is-standard { box-shadow: 0 8px 24px rgba(0,183,206,.25); transform: translateY(-6px); }
@media (max-width: 768px){ .plan-card.is-standard { transform: none; } }

/* ===== 製造業版 テーマ上書き（ネイビー×オレンジ／Noto Sans JP） ===== */
:root{
  --navy:#16385C; --navy-dark:#0F2740; --orange:#EE7E1B; --orange-light:#F4A24C;
}
body, .fv-text, .fv-subtext, .section-title, h1, h2, h3, h4, p, li, a, th, td, input, textarea, button{
  font-family:"Noto Sans JP","Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

/* CTAボタン類はオレンジで強調 */
.btn, .access-btn, .cta-access-btn{
  background:var(--orange) !important; color:#fff !important; border-color:var(--orange) !important;
}
.btn:hover, .access-btn:hover, .cta-access-btn:hover{ background:var(--orange-light) !important; }

/* データ数字・アクセントはオレンジ */
.results-stat .num{ color:var(--orange); }
.plan-card-body li::before{ background:var(--orange); }
.pc-badge{ background:var(--orange); color:#fff; }

/* プランカードのヘッダー配色（差別化） */
.plan-card.is-light .plan-card-head{ background:#5B7794; }
.plan-card.is-standard .plan-card-head{ background:var(--navy); }
.plan-card.is-pro .plan-card-head{ background:var(--orange); }
.plan-card.is-standard{ box-shadow:0 8px 24px rgba(22,56,92,.25); }

/* ===== SVGアイコンのサイズ調整 ===== */
.cause img{ width:108px !important; height:108px !important; object-fit:contain !important; }
.step1 img, .step2 img, .step3 img{ width:120px !important; height:120px !important; }
.verification img{ width:104px !important; height:104px !important; object-fit:contain !important; border-radius:0 !important; margin:0 auto 4px !important; }
.flow-item-upper img, .flow-item-bottom img{ width:96px !important; height:96px !important; object-fit:contain !important; object-position:center !important; margin:0 auto 18px !important; display:block; }
.cta-left img{ width:100% !important; max-width:340px; margin:0 auto; display:block; }

/* ===== FV レイアウト修正（絶対配置→縦並び中央寄せで重なり解消） ===== */
.fv{
  display:flex; flex-direction:column; justify-content:center; align-items:flex-start;
  padding:0 48px 0 110px;
}
.fv::before{ z-index:1; }
.fv-text, .fv-subtext{
  position:relative !important; top:auto !important; left:auto !important; z-index:2;
}
.fv-text{ margin:0 0 28px !important; }
.fv-subtext{ margin:0 0 40px !important; }
.fv > div{ position:relative; z-index:2; }
.access-btn{
  position:relative !important; top:auto !important; left:auto !important;
  display:inline-flex !important; width:auto !important;
}
@media (max-width:768px){
  .fv{ padding:0 24px; align-items:flex-start; }
  .fv-text{ margin-bottom:20px !important; }
  .fv-subtext{ margin-bottom:28px !important; }
}

/* 「製造業に強い理由」上部の余白を詰める */
.feature .section-subtext{ margin-bottom:8px; }
.feature_first .step1{ padding-top:8px; }

/* ===== レイアウト微調整（改行・段差解消） ===== */

/* CTA見出し：1行目を折り返さず指定の改行に */
.cta-right h2{ word-break: keep-all; line-height: 1.5; }
@media (max-width:768px){ .cta-right h2{ font-size: 2.6rem; } }

/* 検証STEP：階段状をやめて上端・高さを揃える */
.verification-content{ align-items: flex-start !important; }
.verification-content3{ margin-top: 0 !important; }
.verification-step1, .verification-step2, .verification-step3{
  padding: 28px 20px !important;
  margin-top: 0 !important;
  min-height: 96px;
  justify-content: center;
}

/* プランカード：高さ・ヘッダーを揃える */
.plan-cards{ align-items: stretch !important; }
.plan-card{ display: flex; flex-direction: column; }
.plan-card.is-standard{ transform: none !important; }
.plan-card-head{
  position: relative;
  min-height: 150px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
}
.pc-badge{ position: absolute; top: 16px; left: 50%; transform: translateX(-50%); margin: 0 !important; }
.plan-card-body{ flex: 1; }

/* お悩み本文：語の途中で折り返さない */
.cause-detail{ word-break: keep-all; line-height: 1.9; }

/* STEP説明ボックス：見出し高さを揃えて下端を合わせる */
.verification-detail1 h3, .verification-detail2 h3, .verification-detail3 h3{
  min-height: 84px;
}
/* プラン・流れの箇条書き：語の途中で折り返さない */
.plan-card-body li, .flow-item-detail li{ word-break: keep-all; }

/* ===== スマホ最適化（追加修正） ===== */
@media (max-width: 760px){
  html, body{ overflow-x: hidden; }

  /* FV：高さ自動＋余白で文字の詰まり・重なりを解消 */
  .fv{ height:auto; min-height:100vh; padding:110px 24px 56px; justify-content:center; box-sizing:border-box; }
  .fv-text{ font-size:3.4rem !important; line-height:1.45; margin:0 0 18px !important; }
  .fv-subtext{ font-size:1.5rem !important; line-height:1.75; margin:0 0 26px !important; }
  .access-btn{ font-size:1.6rem; }

  /* 検証STEP：縦積み＆画面内に収める（横はみ出し解消） */
  .verification{ flex-direction:column; gap:24px; padding:0 16px; box-sizing:border-box; width:100%; }
  .verification-content{ width:100%; box-sizing:border-box; padding-inline:0 !important; align-items:stretch !important; }
  .verification-step1, .verification-step2, .verification-step3{
    min-height:auto !important; padding:16px !important; width:100%; box-sizing:border-box; margin-top:12px;
  }
  .verification-detail1, .verification-detail2, .verification-detail3{ box-sizing:border-box; }
  .verification-detail1 h3, .verification-detail2 h3, .verification-detail3 h3{ min-height:auto !important; }
  .verification-content1 ul, .verification-content2 ul, .verification-content3 ul{ box-sizing:border-box; }

  /* 実績・プランの余白を画面内に */
  .results-stat{ box-sizing:border-box; }
  .plan-card{ box-sizing:border-box; }
}

/* FV スマホ：中央寄せに整える（translateXのズレを打ち消す） */
@media (max-width: 760px){
  .fv{ align-items:center; text-align:center; }
  .fv-text, .fv-subtext{
    transform:none !important; left:auto !important; right:auto !important;
    width:100% !important; text-align:center !important;
  }
  .fv > div{ width:100%; display:flex; justify-content:center; }
  .access-btn{ position:relative !important; left:auto !important; transform:none !important; }
}

/* ===== FV 背景動画 ===== */
.fv-video{
  position:absolute !important; inset:0 !important; top:0 !important; left:0 !important;
  width:100% !important; height:100% !important;
  object-fit:cover !important; z-index:0 !important; margin:0 !important;
}
.fv{ position:relative; overflow:hidden; height:100vh; }
.fv::before{ z-index:1; }
.fv-mask{ position:relative; z-index:1; }
.fv-text, .fv-subtext, .fv > div{ position:relative; z-index:2; }

/* FV動画：文字の可読性確保の暗がり */
.fv::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(100deg, rgba(8,16,26,.78) 0%, rgba(8,16,26,.45) 50%, rgba(8,16,26,.18) 100%);
}
@media (max-width:760px){
  .fv::after{ background:rgba(8,16,26,.55); }
}

/* FV見出し：行頭カギ括弧をぶら下げて頭を揃える */
.fv-text span{ display:block; }
.fv-text .lead-kakko{ text-indent:-0.5em; }
@media (max-width:760px){
  /* スマホは中央寄せのため、ぶら下げは無効化（中央基準で揃える） */
  .fv-text span{ display:block; }
  .fv-text .lead-kakko{ text-indent:0; }
}
