@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

img {
  width: 100%;
}



/* メインビジュアル */
.main-visual {
  margin-top: 143px;
  margin-bottom: 14px;
}
@media (max-width: 991px) {
  .main-visual {
    margin-top: 93px;
  }
}
@media (max-width: 768px) {
  .main-visual {
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .main-visual {
    margin-top: 82px;
  }
}
@media (max-width: 575px) {
  .main-visual {
    margin-top: 52px;
  }
}

.main-visual h1 {
  margin: 0;
}
.main-copy {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.main-visual .sp {
  display: none;
}
@media screen and (max-width: 768px){
  .main-visual .pc {
    display: none;
  }
  .main-visual .sp {
    display: block;
  }
}


@keyframes main-infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}

.main-scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.main-scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.main-scroll-infinity__list--left {
  animation: main-infinity-scroll-left 80s infinite linear 0.5s both;
}
.main-scroll-infinity__item {
  width: calc(100vw / 4);
}
.main-scroll-infinity__item>img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 768px){
  .main-scroll-infinity__item {
    width: calc(100vw / 2);
  }
}


.sub-copy {
    font-size: 20px;
    margin-bottom: 25px;
}

.highlight {
    background-color: rgba(255, 102, 0, 0.2);
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: bold;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 15px;
}

.benefit-tag {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
}

.accent {
    color: #ff9933;
    font-weight: bold;
}

.cta-button {
  display: inline-block;
  background-color: #ff6600;
  color: white;
  padding: 18px 50px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 768px){
  .cta-button {
    font-size: 18px;
  }
}
@media screen and (max-width: 490px){
  .cta-button {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px){
  .cta-button {
    font-size: 14px;
    padding: 18px 25px;
  }
}
@media screen and (max-width: 400px){
  .cta-button {
    font-size: 12px;
    padding: 18px 15px;
  }
}

.cta-button:hover {
  color: #fff;
  background-color: #ff8033;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}
.cta-button:link {
  color: #fff;
}
.cta-button:visited {
  color: #fff;
}

.cta-button:hover::before {
    left: 100%;
}


.arrow-right {
    display: inline-block;
    margin-left: 8px;
    font-style: normal;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-right {
    transform: translateX(5px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.cta-subtext {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.9;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 8px 16px;
    border-radius: 5px;
}

.trust-icon {
    margin-right: 8px;
    font-style: normal;
}

/* セクション共通 */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section2 {
    padding: 80px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
@media screen and (max-width: 768px){
  .section {
    padding: 60px 20px;
  }
}




.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #1c6ea4;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff6600;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* 悩み */
.worries {
    background-color: #fff;
    position: relative;
}

.worries-subtitle {
    text-align: center;
    font-size: 18px;
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 30px;
}

.worries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.worry-item {
    width: 48%;
    margin-bottom: 30px;
    padding: 0 25px 15px;
    background-color: #fff;
    border-radius: 15px;
    border: 4px solid #FF6600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 768px){
  .worries-list-wrap {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 480px){
  .worry-item {
      padding: 0 10px 15px;
  }
}




.worry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

.urgent {
    border-left-color: #ff6600;
}

.expensive {
    border: solid 4px #E74C3C;
}

.stress {
    border: solid 4px #9B59B6;
}

.worry-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff6600;
    color: white;
    padding: 3px 23px 7px 27px;
    font-size: 20px;
    font-weight: 500;
    border-bottom-left-radius: 25px;
    z-index: 5;
}

.urgent .worry-badge {
    background-color: #ff6600;
    animation: pulse 2s infinite;
}

.expensive .worry-badge {
    background-color: #e74c3c;
}

.stress .worry-badge {
    background-color: #9b59b6;
}

.worry-icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
}

.worry-item h3 {
    font-size: 21px;
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
    font-weight: bold;
}
.worry-item h3 span {
  background:linear-gradient(transparent 60%, #FFFE00 60%);
}

.worry-details p {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
    padding-left: 10px;
}
.check_ico1 {
  width: 26px !important;
  height: 28px !important;
  margin-top: -3px;
  margin-right: 3px;
  vertical-align: middle;
  display: inline-block !important;
}

.solution-tag {
  margin-top: 15px;
  padding: 10px 15px 20px 40px;
  font-size: 14px;
  color: #1c6ea4;
  position: relative;
}


.solution-arrow {
  width: 60px;
  position: absolute;
  top: 0;
  left: 0;
}
.solution-arrow img {
  width: 60px !important;
  height: 79px !important;
}

.solution-tag strong {
  padding: 5px 30px;
  color: #fff;
  background: #00136F;
  z-index: 1;
}
@media screen and (max-width: 480px){
  .solution-tag strong {
    padding: 5px 10px 5px 30px;
    font-size: 13px;
  }
}

.solution-text {
  padding: 8px 5px 8px 40px;
  font-weight: 500;
  color: #fff;
  border-radius: 30px;
  background-image: linear-gradient(90deg, #0171E1 55%, #1289FF);
}
@media screen and (max-width: 1050px){
  .solution-text {
    padding: 8px 15px 8px 30px;
  }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animated:nth-child(1) { animation-delay: 0.1s; }
.animated:nth-child(2) { animation-delay: 0.2s; }
.animated:nth-child(3) { animation-delay: 0.3s; }
.animated:nth-child(4) { animation-delay: 0.4s; }

.section-cta {
  text-align: center;
  margin-top: 40px;
  padding: 40px 30px;
  border-radius: 15px;
  position: relative;
}
@media screen and (max-width: 768px){
  .section-cta {
    text-align: center;
    margin-top: 0;
    padding: 30px 0;
  }
}

.staff1 {
  width: 290px;
  position: absolute;
  left: calc(50% + 380px);
  bottom: -40px;
}
@media screen and (max-width: 1400px){
  .staff1 {
    width: 240px;
    left: auto;
    right: 10px;
  }
}
@media screen and (max-width: 1000px){
  .staff1 {
    width: 200px;
    right: 10px;
  }
}
@media screen and (max-width: 840px){
  .staff1 {
    display: none;
  }
}



.cta-urgency {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.urgency-text {
    font-size: 16px;
    color: #856404;
    font-weight: bold;
}

.urgency-icon {
    margin-right: 8px;
}

.section-cta-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1c6ea4;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.check_ico2 {
  width: 20px;
  margin-top: -3px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

.benefit {
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-image: linear-gradient(90deg, #0171E1 55%, #1289FF);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px){
  .benefit {
    padding: 8px 15px;
    font-size: 15px;
  }
}

.cta-button.secondary {
  background-color: #ff6600;
  font-size: 20px;
  padding: 20px 40px;
}
@media screen and (max-width: 460px){
  .cta-button.secondary {
    font-size: 18px;
  }
}
@media screen and (max-width: 400px){
  .cta-button.secondary {
    font-size: 16px;
  }
}
@media screen and (max-width: 360px){
  .cta-button.secondary {
    font-size: 14px;
  }
}

.cta-button.secondary:hover {
  color: #fff;
  background-color: #ff8033;
}

.cta-subtext {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}



/* 特徴 */
.features {
    background-color: #f0f8ff;
    overflow: hidden;
}

.features-subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-bottom: 30px;
}

.features-text {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #666;
}
.features-text p {
  margin-bottom: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px){
  .features-grid-wrap {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .features-grid {
    display: block;
  }
}

.feature-item {
  padding-bottom: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 4px solid #0272E2;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #0272E2;
}
@media screen and (max-width: 768px){
  .feature-item:hover {
      transform: translateY(0px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      border-color: #0272E2;
  }
  .feature-item {
    border: 4px solid #0272E2;
  }
}


.feature-number {
  padding: 5px 0 10px;
  background: #0272E2;
}
.feature-number span {
  margin-right: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  border-bottom: 1px solid #fff;
}
.number1 {
  width: 15px !important;
  height: 29px !important;
  vertical-align: -8px;
  display: inline-block !important;
}
.number2 {
  width: 18px !important;
  height: 29px !important;
  vertical-align: -8px;
  display: inline-block !important;
}
.number3 {
  width: 18px !important;
  height: 29px !important;
  vertical-align: -8px;
  display: inline-block !important;
}
.number4 {
  width: 19px !important;
  height: 28px !important;
  vertical-align: -8px;
  display: inline-block !important;
}
.number5 {
  width: 17px !important;
  height: 28px !important;
  vertical-align: -8px;
  display: inline-block !important;
}
.number6 {
  width: 18px !important;
  height: 28px !important;
  vertical-align: -8px;
  display: inline-block !important;
}

.feature-icon {
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.feature-title {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #1c6ea4;
  line-height: 1.3;
}

.feature-desc {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #666;
  margin-bottom: 15px;
}

.feature-badge {
  background: linear-gradient(135deg, #ff6600, #ff8033);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
}

.features-summary {
  background: #fff;
  margin-bottom: 100px;
  padding: 55px 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px){
  .features-summary {
    padding: 55px 20px;
  }
}

.summary-content h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
}

.featuresList {
  width: 800px;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.featuresList li {
  width: 292px;
}
@media screen and (max-width: 900px){
  .featuresList {
    width: 100%;
    flex-wrap: wrap;
    gap: 10%;
  }
  .featuresList li {
    width: 40%;
  }
}


.summary-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-desc {
        font-size: 14px;
    }

    .summary-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .summary-stats {
        flex-direction: column;
        gap: 20px;
    }
}



/* 料金 */
.pricing {
    background-color: #fff;
}

.pricing-description {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #555;
}

.plan-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
    gap: 25px;
}

.plan {
    width: 48%; /* Changed from 31% to 48% for 2-column layout */
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.popular {
    border: 4px solid #ff6600;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff6600;
    color: white;
    padding: 3px 25px 7px;
    font-size: 16px;
    font-weight: bold;
    border-bottom-left-radius: 10px;
    z-index: 10;
}

.plan-header {
    background: #0272E2;
    color: white;
    padding: 35px 20px;
    text-align: center;
}

.plan-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0;
}

.plan-price {
    font-size: 36px;
    font-weight: bold;
    margin: 15px 0 10px;
    line-height: 130%;
}

.plan-price span {
    font-size: 16px;
}

.plan-save {
    background-color: #2893FF;
    padding: 5px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    margin-top: 10px;
}
@media screen and (max-width: 768px){
  .plan-save {
    padding: 5px 20px;
    font-size: 13px;
  }
}

.plan-img {
  width: 80%;
  margin: 15px auto 0;
}

.plan-details {
    padding: 25px 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.check {
    color: #1c6ea4;
    font-weight: bold;
    margin-right: 2px;
    margin-bottom: auto;
    font-style: normal;
}

.pricing-intro {
    background-color: #F0F8FF;
    padding: 35px 25px 20px;
    border-radius: 10px;
    margin-bottom: 80px;
    font-weight: 400;
    text-align: center;
}

.pricing-intro h3 {
    color: #0C56A0;
    font-weight: 900;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    margin-bottom: 15px;
    font-size: 30px;
}
@media screen and (max-width: 768px){
  .pricing-intro h3 {
    font-size: 24px;
  }
}

.pricing-intro-note {
  font-weight: 400;
  color: #e74c3c;
  margin-top: 15px;
}

.plan-details h4 {
    color: #1c6ea4;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f8ff;
    padding-bottom: 5px;
}

.plan-example {
    background-color: #F0F8FF;
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    font-weight: 400;
    margin: 15px 0;
}

.plan-example h5 {
    color: #1c6ea4;
    font-size: 16px;
    margin-bottom: 8px;
}

.plan-example p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.pricing-additional {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.pricing-additional h3 {
    color: #1c6ea4;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

.additional-services {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 300px;
    text-align: center;
}

.service-item h4 {
    color: #1c6ea4;
    font-size: 18px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.service-price {
    background-color: #ff6600;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

.pricing h2 {
  color: #0C56A0;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  margin-bottom: 15px;
  font-size: 36px;
}
@media screen and (max-width: 768px){
  .pricing h2 {
    font-size: 26px;
  }
}

.pricing-comparison {
    margin: 40px 0;
    text-align: center;
}

.pricing-comparison h3 {
  color: #0C56A0;
  font-size: 36px;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px){
  .pricing-comparison h3 {
    font-size: 26px;
  }
}

.comparison-table {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.comparison-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #939393;
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-item:first-child {
    background-color: #1c6ea4;
    font-weight: bold;
}

.comparison-item > div {
    padding: 15px;
    text-align: center;
    display: grid;
    place-items: center;
}

.comparison-label {
    background-color: #f8f9fa;
    border-right: 5px solid #2BA3FF;
    font-weight: bold;
}

.comparison-ours {
    background-color: #e8f4ff;
    color: #0C56A0;
    font-weight: 900;
    border-right: 5px solid #2BA3FF;
}
.comparison-ours-top {
  border-top: 5px solid #2BA3FF;
}
.comparison-ours-bottom {
  border-bottom: 5px solid #2BA3FF;
}

.comparison-others {
    background-color: #fff;
    color: #666;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .additional-services {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 100%;
        max-width: 400px;
    }

/*
    .comparison-item {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .comparison-item > div {
        border-bottom: 1px solid #eee;
        border-right: none;
    }

    .comparison-item:last-child > div:last-child {
        border-bottom: none;
    }
*/
}
@media (max-width: 600px) {
  .comparison-item {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .comparison-item {
    font-size: 14px;
  }
}

.plan-button {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 18px;
}

.price-guarantee {
    display: flex;
    align-items: center;
    background-color: #F0F8FF;
    padding: 40px 30px 25px;
    border-radius: 10px;
    margin: 30px 0 80px;
}

.guarantee-icon {
    font-size: 40px;
    margin-right: 20px;
    color: #1c6ea4;
}

.guarantee-text h3 {
  font-size: 36px;
  font-weight: 900;
  color: #0C56A0;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px){
  .guarantee-text h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
.guarantee-text p {
  font-weight: 400;
}

.pricing-note {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.plan-name {
    font-size: 22px;
    font-weight: 900;
}

.plan-price {
    font-size: 36px;
    font-weight: 900;
    margin: 0;
}
@media screen and (max-width: 768px){
  .plan-price {
      font-size: 33px;
  }
}

.plan-price span {
    font-size: 20px;
}

.plan-details {
    padding: 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.plan-features li {
    padding: 8px 10px;
    color: #333;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* 流れ */
.flow {
    background-color: #f0f8ff;
    overflow: hidden;
}

.flow h2 {
  margin-bottom: 0;
  color: #0C56A0;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  font-size: 36px;
}

.flow p.flow-subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 50px;
}

.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}


.step-number {
    width: 80px;
    height: 80px;
    background: #0272E2;
    color: white;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(28, 110, 164, 0.3);
}

.step-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.step-content {
    background-color: #fff;
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-top: 4px solid #0272E2;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #0C56A0;
    line-height: 1.3;
}

.step-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.step-time {
    background-color: #E8F4FF;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #0C56A0;
    font-weight: bold;
    display: inline-block;
}

.step-arrow {
  width: 50px;
  position: absolute;
  top: 18px;
  right: -25px;
  z-index: 3;
  padding: 5px;
}

.flow-summary {
    margin-top: 50px;
    text-align: center;
}

.summary-box {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8f4ff;
    max-width: 800px;
    margin: 0 auto;
}

.summary-box h3 {
    font-size: 24px;
    color: #1c6ea4;
    margin-bottom: 15px;
    font-weight: bold;
}

.summary-box > p {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    margin-bottom: 35px;
}

.flow-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    color: #1c6ea4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f4ff;
}

/* レスポンシブ対応 */
@media (max-width: 968px) {
    .flow-container {
        flex-direction: column;
        align-items: center;
    }

    .flow-step {
        margin-bottom: 30px;
        max-width: 400px;
    }

    .flow-step:not(.last-step)::after {
        display: none;
    }

    .step-arrow {
        display: none;
    }

    /* 縦並び時の矢印 */
    .flow-step:not(.last-step)::before {
        content: '↓';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 30px;
        color: #FF6600;
        font-weight: 900;
        padding: 5px;
        z-index: 3;
    }
}

@media (max-width: 768px) {
  .flow h2 {
    font-size: 26px;
  }

  .flow-benefits {
    margin-bottom: 25px;
    align-items: center;
    gap: 10px;
  }

  .flow-benefits .benefit {
    font-size: 15px;
    display: inline-block;
  }

  .summary-box {
      padding: 30px 20px;
  }

  .summary-box h3 {
      font-size: 20px;
  }
}
@media (max-width: 480px) {
  .summary-box .cta-button.secondary {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .flow-benefits {
      gap: 5px;
  }

  .flow-benefits .benefit {
    padding: 8px 12px;
    margin-bottom: 5px;
    font-size: 11px;
  }
  .flow-benefits .benefit .check_ico2 {
    margin-right: 5px;
  }
}
@media (max-width: 360px) {
  .summary-box .cta-button.secondary {
    font-size: 12px;
    padding: 20px 20px;
  }
}

/* FAQ */
.faq {
    background-color: #fff;
}

.faq-title {
  color: #0C56A0;
  font-size: 36px;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    border: 4px solid #0070E0;
    border-radius: 30px;
    overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 70px;
  color: #fff;
  font-weight: 400;
  background-color: ;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  position: relative;
  background: url(../img/faq_q.png) no-repeat #0070E0;
  background-size: 40px 40px;
  background-position: 15px 15px;
}

.faq-answer {
  display: flex;
  padding: 20px 20px 20px 70px;
  background-color: #fff;
  font-weight: 400;
  background: url(../img/faq_a.png) no-repeat;
  background-size: 40px 40px;
  background-position: 15px 15px;
}


/* お客様の声 */
.testimonials {
    background-color: #f0f8ff;
}

.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.testimonial-item {
    width: 48%;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text {
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.testimonial-info {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 50%;
}
.testimonial-avatar1 {
  background: url(../img/voice_ico1.png) no-repeat;
  background-size: 60px 60px;
}
.testimonial-avatar2 {
  background: url(../img/voice_ico2.png) no-repeat;
  background-size: 60px 60px;
}
.testimonial-avatar3 {
  background: url(../img/voice_ico3.png) no-repeat;
  background-size: 60px 60px;
}
.testimonial-avatar4 {
  background: url(../img/voice_ico4.png) no-repeat;
  background-size: 60px 60px;
}

.testimonial-meta {
    flex-grow: 1;
}

.testimonial-name {
    font-weight: bold;
    color: #1c6ea4;
}

.testimonial-location {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}




/* レスポンシブ */
@media (max-width: 768px) {
    .faq-title {
      font-size: 26px;
    }

    .main-copy {
        font-size: 28px;
    }

    .sub-copy {
        font-size: 18px;
    }

    .worry-item, .feature-item, .plan, .testimonial-item {
        width: 100%;
    }

    .flow-step {
        flex-direction: column;
    }

    .step-number {
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 15px;
    }

    .flow-step:not(:last-child)::after {
        left: 40px;
        bottom: -30px;
        width: 2px;
        height: 30px;
    }
}




#mainWrapper {
  font-family: 'Noto Sans JP', sans-serif;
}
#mainWrapper a img {
  color: #000;
  outline: none;
   -webkit-transition: 0.3s ease-in-out;
      -moz-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
           transition: 0.3s ease-in-out;
}
#mainWrapper a:hover img {
  opacity: .70;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
  -khtml-opacity: .70;
  -moz-opacity: .70;
}







.contactBnrBase {
  background: #62B0FD;
}
.contactBnrList {
  padding: 50px 0 45px;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contactBnrTel {
  width: 35.4%;
  position: relative;
}
.contactBnrTel span {
  width: 56%;
  display: block;
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.contactBnrLine {
  width: 25.6%;
}
.contactBnrMail {
  width: 35.4%;
}
@media screen and (max-width: 1230px){
  .contactBnrList {
    padding: 4% 0 3.8%;
    width: calc(100% - 40px);
    margin: 0 auto;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .contactBnrTel span {
    top: -14%;
  }
}
@media screen and (max-width: 900px){
  .contactBnrTel span {
    top: -18%;
  }
}
@media screen and (max-width: 768px){
  .contactBnrList {
    padding: 36px 0 25px;
    width: calc(100% - 40px);
    max-width: 500px;
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
  }
  .contactBnrTel {
    width: 100%;
    margin-bottom: 0.1%;
  }
  .contactBnrTel span {
    top: -13%;
  }
  .contactBnrLine {
    width: 41.5%;
    margin-left: 0.5%;
  }
  .contactBnrMail {
    width: 56.5%;
    margin-right: 0.5%;
  }
}
@media screen and (max-width: 360px){
  .contactBnrList {
    padding: 26px 0 25px;
  }
}












#contactTitle {
  padding: 130px 10px 80px;
  overflow: hidden;
  position: relative;
}
#contactTitle h2 {
  color: #0C56A0;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  margin-bottom: 15px;
  font-size: 36px;
}
#contactTitle p {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #555;
}
.staff2 {
  width: 290px;
  position: absolute;
  left: calc(50% + 380px);
  bottom: -40px;
}
@media screen and (max-width: 1356px){
  .staff2 {
    left: auto;
    right: 10px;
  }
}
@media screen and (max-width: 1000px){
  #contactTitle {
    padding: 80px 10px 30px;
  }
  .staff2 {
    width: 200px;
  }
}
@media screen and (max-width: 768px){
  #contactTitle h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 640px){
  .staff2 {
    display: none;
  }
}
@media screen and (max-width: 360px){
  #contactTitle h2 {
    font-size: 24px;
  }
  #contactTitle p {
    font-size: 16px;
  }
}



#contact h2 {
  color: #0C56A0;
  font-weight: 900;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  margin-bottom: 15px;
  font-size: 36px;
}
.wrap_form {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
  margin-bottom: 3em;
}
.Form-Item-Label-Required {
  margin-left: 5px;
  line-height: 1.7em;
  display: inline-block;
  text-align: center;
  color: #FF0000;
}
table.formTable {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
}
table.formTable td,table.formTable th {
  border-bottom: 1px solid #ccc;
  padding: 22px 10px 22px 0;
  vertical-align: top;
}
table.formTable th {
	width: 30%;
  min-width: 200px;
  padding: 27px 10px 17px;
	font-weight: normal;
	text-align: left;
  font-weight: bold;
}
form input[type="text"] {
	width: 100%;
	padding: 7px 10px;
	display: block;
  border-color: #707070;
  border-style: solid;
  border-width: 1px;
  font-size: 1.1em;
  border-radius: 5px;
}
form input[type="text02"] {
	width: 100%;
	padding: 7px 10px;
	display: block;
  border-color: #707070;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  font-size: 1.1em;
}
form select {
	width: 100%;
	padding: 7px 40px 7px 10px;
	display: block;
  color: #3c3c3c;
  border-color: #707070;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  font-size: 1.1em;
  background-image: url(../img/arrow2.png);
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 17px 8px;
  -webkit-appearance: none;
  appearance: none;
}
form textarea {
	width: 100%;
	padding: 10px;
	display: block;
  border-color: #707070;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  font-size: 1.2em;

}
.form_btn {
  padding: 1em 0;
  margin-top: 1em;
  text-align: center;
}
.entry_btn {
  width: 40%;
  display: inline-block;
  background-color: #ff6600;
  color: white;
  padding: 18px 50px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-appearance: none;
  appearance: none;
}
.entry_btn:hover {
  color: #fff;
  background-color: #ff8033;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  #contact h2 {
    font-size: 26px;
  }
  table.formTable th{
    padding: 10px 10px;
  }
  table.formTable td {
    padding: 10px 10px 17px;
  }
  table.formTable th, table.formTable td {
  	width:auto;
  	display:block;
  }
  table.formTable th {
  	margin-top:5px;
    border-bottom: none;
  }
  table.formTable td {
    border-bottom: 1px solid #ccc;
  }
  form input[type="text"], form input[type="text02"],form select,form textarea {
  	width: 100%;
  	padding: 10px;
  	display:block;
  }
  form input[type="submit"], form input[type="reset"], form input[type="button"] {
  	display:block;
  }
  .entry_btn {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .entry_btn {
    font-size: 16px;
    padding: 18px 10px;
  }
}











.titleStyle1 {
  width: 700px;
  margin: 0 auto;
}
.titleStyle2 {
  margin: 0 auto 80px;
  text-align: center;
  color: #FA6B00;
  font-size: 26px;
  font-weight: bold;
}
.titleStyle3 {
  width: 780px;
  margin: 0 auto 30px;
}
.titleStyle4 {
  width: 540px;
  margin: 0 auto;
}
.titleStyle5 {
  width: 880px;
  margin: 0 auto;
  padding-bottom: 15px;
}
.titleStyle6 {
  width: 310px;
  margin: 0 auto 30px;
}
.titleStyle7 {
  width: 670px;
  margin: 0 auto 30px;
}
.titleStyle8 {
  width: 300px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 1000px){
  .titleStyle5 {
    width: 100%;
    max-width: 880px;
  }
}
@media screen and (max-width: 800px){
  .titleStyle3 {
    width: 100%;
  }
}
@media screen and (max-width: 768px){
  .titleStyle1 {
    width: 100%;
    max-width: 700px;
  }
  .titleStyle2 {
    margin: 0 auto 35px;
    font-size: 18px;
  }
  .titleStyle4 {
    width: 90%;
    max-width: 540px;
  }
  .titleStyle6 {
    width: 100%;
    max-width: 230px;
  }
  .titleStyle7 {
    width: 100%;
    max-width: 600px;
  }
  .titleStyle8 {
    width: 200px;
  }
}
@media screen and (max-width: 600px){
  .titleStyle6 {
    max-width: 180px;
  }
}



.bgStyle1 {
  width: 100%;
  background-image:
      url(../img/bg_img1.png),
      url(../img/bg_img2.png);
  background-repeat:
      no-repeat,
      no-repeat;
  background-position:
      left 1.5vw top 2.3vw,
      right 1.5vw top 1.5vw;
  background-size:
      25.4vw auto,
      25.4vw auto;
  overflow: hidden;
}
.bgStyle1 section {
  background: none;
}
.bgStyle2 {
  width: 100%;
  background: #F0F8FF;
}
@media screen and (max-width: 768px){
  .bgStyle1 {
    background-image:
        url(../img/bg_img1.png),
        url(../img/bg_img2.png);
    background-repeat:
        no-repeat,
        no-repeat;
    background-position:
        left 1.5vw top 2.3vw,
        right 1.5vw top 1.5vw;
    background-size:
        30% auto,
        30% auto;
  }
  .bgStyle1 .section2 {
      padding: 60px 20px 40px;
  }
}



@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 4);
}
.scroll-infinity__item>img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 768px){
  .scroll-infinity__item {
    width: calc(100vw / 2);
  }
}


.slick-arrow {
  z-index: 1;
}
.slick-prev::before {
  content: '';
  width: 34px;
  height: 34px;
  margin-left: 5px;
  font-size: 30px;
  background: url(../img/arrow_left.png) no-repeat;
  background-size: 30px 30px;
  background-position: center center;
  border: 4px solid #fff;
  border-radius: 50%;
  opacity: 1;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.slick-next::before {
  content: '';
  width: 34px;
  height: 34px;
  margin-left: -18px;
  font-size: 30px;
  background: url(../img/arrow_right.png) no-repeat;
  background-size: 30px 30px;
  background-position: center center;
  border: 4px solid #fff;
  border-radius: 50%;
  opacity: 1;
  overflow: hidden;
  display: block;
  cursor: pointer;
}










