/*
Theme Name: Locaop Desk
Author: Locaop
Version: 1.0
*/
:root {
    --primary: #FE4A26 ;
    /* Locaop Branding Ora */
    --primary-light: #FFF3EE;
    --primary-dark: #333333;
    --navy: #0f172a;
    /* Dark Contrast */
    --accent: #2ECC71;
    --cta-gradient: linear-gradient(90deg,#fe5126 0%,#ff7a5c 100%);
    /* Locaop Orange Gradient */
    --text-color: #333;
    --text-light: #666;
    --bg-light: #F6F6F6;
    /* Light Gray */
    --bg-light-teal: #FFF3EE;
    /* Light Ora Section */
    --white: #ffffff;
    --font-base: 
  AdjustedYuGothic,Yu Gothic,YuGothic,Hiragino Sans,sans-serif;
    --font-en: 'Poppins', sans-serif;
    --max-width: 1200px;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    /* Bolder rounded font looks better */
    line-height: 1.3;
    color: var(--navy);
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.text-center {
    text-align: center;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.sp-br {
  display: none;
}
span.small {
    font-size: 0.8rem;
}

@media (max-width: 767px) {
  .sp-br {
    display: block;
  }
}


/* 汎用装飾 */
.page-p{
  margin-top: 1em;
}
.txt_link{
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

/* 両サイド/ */
.deco-slashes {
    display: inline-block;
    position: relative;
    padding: 0 1.2em;
}
.deco-slashes::before,
.deco-slashes::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 2px;
    height: 0.7em;
    background-color: var(--primary, #FE4A26);
    border-radius: 2px;
}
.deco-slashes::before {
    left: 0.3em;
    transform: translateY(-50%) rotate(-25deg);
}
.deco-slashes::after {
    right: 0.3em;
    transform: translateY(-50%) rotate(25deg);
}

@media (max-width: 768px) {
    .deco-slashes {
        padding: 0 1em;
    }
}




/* Buttons */
.btn {
    position: relative;
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 999px;
    /* Pill shape */
    font-weight: 700;
    font-family: var(--font-base);
    cursor: pointer;
    text-align: center;
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    position: relative;
    background: var(--primary);
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(180, 90, 60, 0.28);
}

.btn-primary:hover {
  background-color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    position: relative;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: #333;
    color:  var(--primary);
}

.btn-org {
    position: relative;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
  transition: all 0.3s ease;
}
.btn-org::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  bottom: 0;
  content: "";
  height: 7px;
  width: 7px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  transform: rotate(45deg);
  transition: right .3s;
}

.btn-org:hover::after {
  right: 25px;
}
.btn-org:hover {
  background-color: #333;
}
.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
}

.shadow-pulse {
    animation: pulse-orange 2s infinite;
}
@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 170, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 170, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 170, 0, 0);
    }
}
.cursor{
  position:fixed;
  left:0;top:0;
  width:22px;height:22px;
  background: rgba(254, 74, 38, 0.8);
  border-radius:50%;
  pointer-events:none;
  z-index:9999;
  opacity:1;
  transition:opacity .2s;
  transform:translate(var(--x,-9999px),var(--y,-9999px)) translate(-50%,-50%) scale(var(--s,1));
}
@media (hover:none){.cursor{display:none}}

.reveal-image {
  position: relative;
  overflow: hidden;
}
.reveal-image img {
  width: 100%;
  height: auto;
  display: block;
}
.image-overlay {
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform-origin: left;
  transform: scaleX(1);
}


/* Hero Section */
.hero {
    padding-top: 120px;
    /* header + gap */
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
    background-size: 36px 36px, 100% 100%;
    background-position: 0 0, 0 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hero-content {
    flex: 1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary);
}

.trust-badge i {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 2.7rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, #FE4A26 0%, #FE4A26 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}
.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://locaop.jp/desk/wp-content/uploads/2026/02/hero_bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    border-radius: 10px;
}

.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot {
    width: 100%;
    max-width: 430px;
    height: auto;
    animation: float-mascot 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* バブルの親 */
.blob-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* 円の共通設定 */
.blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: none;
  opacity: 0.3;
  mix-blend-mode: multiply;
}

/* 個別調整 */
.blob {
  position: absolute;
  width: 560px;
  height: 450px;
  top: 26%;
  right: 11%;
  border-radius: 50%;

background: linear-gradient(
  130deg,
  #ffd400 0%,
  #ffc000 18%,
  #ffa000 40%,
  #ff7a00 65%,
  #ff6300 85%,
  #ff4d00 100%
);
  border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%;
  animation: blob-morph 12s ease-in-out infinite alternate;
}

@keyframes blob-morph {
  0% {
    border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%;
  }
  50% {
    border-radius: 60% 40% 45% 55% / 55% 45% 60% 40%;
  }
  100% {
    border-radius: 50% 60% 40% 50% / 45% 55% 50% 60%;
  }
}


.scroll_down{
  position:absolute;
  bottom: 20%;
  right: 3%;
}

.scroll_down a{
  position: absolute;
  left: 10px;
  bottom: 48px;
  color: #333 !important;
  text-decoration: none !important;
  font-size: 12px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:#333;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:120px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:0.8px;
  height: 120px;
  background:#333;
}
.hero-cta-btn {
  flex-shrink: 0;
}
.hero-cta img {
  max-height: 70px;
  width: auto;
}

/* rogo scroll */
#hero .swiper-wrapper {
  transition-timing-function: linear !important;
  margin: 3rem 0 0;
}

/* ロゴ */
#hero .swiper-slide {
  width: auto !important;
}

#hero .swiper-slide img {
  display: block;
  height: auto;
}

/* Pricing Badge */
.price-badge-wrap {
    margin-bottom: 1.5rem;
}

.price-main {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
}

.price-main__amount {
    font-size: 2.5rem;
    color: var(--primary);
}

.price-main__unit {
    font-size: 1rem;
}

.campaign-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.2rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 1rem;
    position: relative;
    top: -5px;
}

.campaign-tag__free {
    font-size: 1.2rem;
}


.hero-subtitle {
    line-height: 1.7;
}

.hero-subtitle-lead {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent);
}

.hero-subtitle-question {
    font-weight: 700;
    color: var(--navy);
}
.hero-cta-btn {
    position: relative;
    background: var(--primary);
    color: #fff;
    min-width: 320px;
    font-size: 1.3rem;
}
.hero-cta-btn:after{
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  bottom: 0;
  content: "";
  height: 7px;
  width: 7px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  transform: rotate(45deg);
  transition: right .3s;
}
.hero-cta-btn:hover:after {
  right: 25px;
}


@keyframes float-mascot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--navy);
    z-index: 2;
    /* Ensure card is above image */
}

.floating-card i {
    color: var(--accent);
}

.card-1 {
    top: 40px;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    bottom: 40px;
    right: -20px;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Slack通知 */
.slack-message {
  position: absolute;
  top: 330px;
  right: 24px;
  width: 400px;
  z-index: 3;
  animation: slackFloat 6s ease-in-out infinite;
}
.slack-message img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.15));
}
@keyframes slackFloat {
  0%   { transform: translateY(0px) rotate(0deg); }
  50%  { transform: translateY(-12px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Sections Global */
.section {
    padding: 3rem 0;
}
.bg-light {
    background-color: var(--bg-light);
    z-index: 1;
    position: relative;
}
.primary-light {
    background-color: var(--primary-light);
    z-index: 1;
    position: relative;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--navy);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
    display: block;
    letter-spacing: 2px;
}
.section-subtitle:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    margin-left: 8px;
    background-image: url("images/sub_txt.png");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}
@media (max-width: 767px) {
.section {
    padding: 2rem 0;
}
.btn-lg {
    min-width: 269px;
    padding: 1rem 3.5rem;
}
.hero-cta-btn {
    font-size: 1rem;
}
}

/* About */
.section-about {
padding: 2rem 0 3rem;
}

.section-about_container {
display: flex;
flex-direction: column;
gap: 32px 0;
}
.c-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
}
.c-title strong {
    font-weight: 700;
    font-size: 2rem;
    line-height: 140%;
    margin-top: 1.5rem;
}
.section-about_content img {
    margin-top: 18px;
}
.section-about_img{
    width: 100%;
}
.section-about .section-title{
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .section-about_container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    .section-about_img,
    .section-about_content {
        flex: 1;
    }
}
/* Problems */
section.section.section-problems {
    background: var(--bg-light);
    z-index: 1;
    position: relative;
}
.section-problems .problems-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.problem-card {
    background: var(--white);
    padding: 0;
    /* Remove padding to let image sit nicely or adjust */
    padding-bottom: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-color: var(--primary);
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-img-wrapper {
    width: 100%;
    height: 220px;
    background: #f9f9f9;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.problem-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.problem-card:hover .problem-img {
    transform: scale(1.05);
}

.problem-text {
    font-weight: 700;
    color: var(--navy);
}

/* Solutions */
.solution-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}
.solution-img-box img {
    border-radius: 10px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}
.solution-item.reverse {
    flex-direction: row-reverse;
}

.solution-text {
    flex: 1;
}

.solution-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-family: var(--font-en);
}

.solution-head {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.solution-desc {
    color: var(--text-light);
    font-size: 1.05rem;
}

.solution-img-box {
    flex: 1;
    height: auto;
    background: transparent;
    /* Remove bg to let image shine */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
    border-radius: 20px;
}

/* Solution image box (icon version) */
.solution-img-box--gradient {
    background: linear-gradient(
        135deg,
        #eef9ff 0%,
        #e0f2fe 100%
    );
    border-radius: 20px;
}

.solution-img-icon {
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.8;
}

.arrow {
  position: relative;
  width: 100px;
  height: 80px;
  margin: 0 auto;
}

.arrow::before {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: solid #FE4A26;
  border-width: 0 0 4px 4px;
  transform: translate(-50%, -70%) rotate(-45deg);
  animation: arrow 2.5s infinite;
}

@keyframes arrow {
  0% {
    transform: translate(-50%, -100%) rotate(-45deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    transform: translate(-50%, 0%) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0%) rotate(-45deg);
    opacity: 0;
  }
}

/* CSS Illustration removed - using SVG now */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    text-align: center;
}
.feature-card h3 {
    margin-top: 10px;
}
.feature-card .feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0 auto 1.5rem auto;
    transition: transform 0.3s ease;
    background: var(--primary-light);
    border: 1px solid var(--primary);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(180, 90, 60, 0.28);
}

/* Unified simple icons - no extra individual colors needed */

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Cases */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.case-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.case-img-holder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.case-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-card:hover .case-img-holder img {
    transform: scale(1.1);
}

.case-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: #FFF;
    z-index: 2;
    text-align: left;
    color: var(--text-color);
}

.case-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.case-content p {
    font-size: 0.95rem;
    font-weight: 500;
}

/* CTA */
.section-cta {
    background-image: url('/desk/wp-content/uploads/2026/02/cta_bg-scaled.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.section-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3) !important;
    z-index: -1;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Success Stories */
.section-success {
    padding-bottom: 5rem;
}

.success-swiper {
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 2rem;
}

.success-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.success-img:hover {
    transform: translateY(-5px);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Swiper Slide内カード */

#section-success .swiper {
    padding: 0 0 50px;
}

.success-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

/* ビジュアルエリア */
.success-card-visual {
    position: relative;
    height: 220px;
}
.success-card-visual img {
    width: 100%; height: 100%; object-fit: cover;
}
.visual-overlay {
    position: absolute;
    inset: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.client-name {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 3px 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.7rem;
    align-self: flex-start;
}
.visual-title {
    color: #fff;
    font-size: 0.9rem;
    margin: 0 0 8px 0;
}
.visual-title .text-bg {
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 6px;
    display: inline-block;
    margin-bottom: 3px;
}

/* ボディエリア */
.success-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.industry-tag-wrap {
    text-align: center;
    margin-top: -34px;
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
}
.industry-tag {
    background: var(--primary);
    color: #fff;
    padding: 5px 24px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(254,74,38,0.3);
}

.issue-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #999;
}
.issue-badge {
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 2px;
    height: fit-content;
    font-weight: bold;
    flex-shrink: 0;
    padding-top: 3px;
}
.issue-desc {
    flex: 1;
    font-size: 0.8rem;
    margin: 0;
    text-align: justify;
}

/* 実績グリッド */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}
.stat-item {
    background: #FFF5F2;
    padding: 10px 5px;
    border-radius: 10px;
    text-align: center;
}
.stat-label {
    font-size: 0.8rem;
    margin-bottom: 3px;
}
.stat-value {
    font-weight: 800;
    color: var(--navy);
    margin: 0;
}
.stat-value .highlight {
    color: #FE4A26;
    font-size: 1rem;
}

/* 音声テキスト */
.voice-box {
    background: var(--bg-light);
    padding: 12px;
    border-radius: 6px;
    margin-top: auto;
}
.voice-badge {
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 2px;
    flex-shrink: 0;
    font-weight: bold;
    margin-top: 2px;
    padding-top: 3px;
}
.voice-text {
    display: flex;
    align-items: flex-start;
    font-size: 0.8rem;
    margin-bottom: 8px;
    gap: 12px;
}
.voice-text p {
    flex: 1;
    font-size: 0.8rem;
    margin: 0;
    text-align: justify;
}
.voice-author {
    font-size: 0.8rem;
    font-weight: 800;
    text-align: right;
    margin: 0;
}





/* Audio Section */
.section-audio {
    padding-top: 1rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.audio-box {
    max-width: 600px;
    margin: 20px auto 0;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.audio-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.promo-audio {
    width: 100%;
    height: 35px;
    outline: none;
}
.audio-heading {
    margin-bottom: 1.5rem;
}

.audio-heading__title {
    font-size: 1.8rem;
    color: var(--navy);
}

.audio-heading__desc {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}


#section-audio video {
width: 50% !important;
max-width: 50% !important;
height: auto !important;
}
.tab-content .wp-video {
    width: 50% !important;
    max-width: 50% !important;
    min-width: 300px; 
}

#section-audio h3 {
    margin: 15px 0;
}
.fa-circle-check {
    color: var(--primary);
    font-size: 1.2em;
    vertical-align: middle;
}
.covers__box__main__text {
    width: 50%;
}

.tab-container {
    position: relative;
}

.tab-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    background: #eeeeee;
    border-radius: 48px;
    padding: 6px;
    position: relative;
}

.slide-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(100% / 4 - 2px);
    height: calc(100% - 12px);
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    border-radius: 48px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.tab-container ul li {
    flex: 1;
    padding: 14px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    border-radius: 8px;
    margin: 0 2px;
    background: transparent;
}

.tab-container ul li.selected {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tab-container ul li:not(.selected):hover {
    color: #aaaaaa;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.tab-content {
    opacity: 0;
    position: absolute;
    pointer-events: none;

    padding: 24px;
    min-height: 150px;
    background: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 16px;
}

.tab-content.selected {
    animation: slideContentIn 0.3s ease-out;

    opacity: 1;
    position: relative;
    pointer-events: auto;

    display: flex;
    align-items: center;
    gap: 32px;
}
.cmlist {
    display: block !important;
    background: var(--primary-light);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}
.cmlist p {
    line-height: 2;
}

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

/* Decorative circles */
.promo-circle {
    position: absolute;
    border-radius: 50%;
}

.promo-circle--blue {
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(29, 149, 212, 0.1);
}

.promo-circle--orange {
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 159, 28, 0.1);
}

/* Text area */
.promo-text {
    position: relative;
    z-index: 2;
    flex: 1.4;
    max-width: 700px;
}
.promo-heading {
    margin-bottom: 1.5rem;
}

.promo-label {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
}

.promo-title {
    color: var(--white);
    font-size: 2.2rem;
    margin-top: 0.5rem;
    line-height: 1.3;
}

.promo-note {
    font-size: 0.7em;
    color: #ffeb3b;
}

.promo-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.promo-btn {
    background: var(--white);
    color: var(--navy);
    font-size: 1.2rem;
    padding: 1.2rem 3.5rem;
    font-weight: 600;
}
.promo-icon {
    position: relative;
    z-index: 2;
    flex: 0.6;
    text-align: right;
}
.promo-icon-inner {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}
.promo-icon-inner i {
    font-size: 9rem;
    color: var(--accent);
}




/* Media Queries */
@media (min-width: 900px) {

    /* PC specific styles for cases to improve layout */
    .case-card {
        height: auto;
        /* Allow content to define height */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .case-img-holder {
        position: relative;
        /* Reset absolute */
        height: 180px;
        /* Fixed height image */
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .case-img-holder img {
        transition: transform 0.5s ease;
    }

    .case-card:hover .case-img-holder img {
        transform: scale(1.05);
    }

    .case-content {
        position: relative;
        /* Reset absolute */
        bottom: auto;
        left: auto;
        padding: 1.5rem;
        color: var(--text-color);
        /* Reset text color */
        text-align: center;
    }

    .case-content h3 {
        color: var(--navy);
        text-shadow: none;
        /* Remove shadow */
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .case-content p {
        color: var(--text-light);
        font-weight: normal;
    }
}

@media (max-width: 900px) {
    .container {
        width: 92%;
    }

    .hero-title {
        font-size: 2.5rem;
    }


    /* Hide hero image on smaller screens or adjust */

    .solution-item,
    .solution-item.reverse {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .solution-img-box {
        width: 100%;
        height: 250px;
    }
}


@media (max-width: 767px) {
    .header-nav {
        display: none;
    }
    .header-nav {
        display: none;
    }

    .hero {
        padding-top: 90px;
        padding-bottom: 20px;
        text-align: center;
    }

    .hero-title {
        font-size: 1.7rem;
        margin-bottom: 0.3rem;
    }
    .hero-subtitle {
    display: none;
    }
    .hero-cta img {
     display: none;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        display: flex;
        width: 100%;
        margin-top: 15px;
    }

    .hero-mascot {
        max-width: 280px; 
    }

    .slack-message {
        width: 100%;
        top: auto;
        bottom: 0;
        right: 0;
    }
    .card-1 {
    display: none;
    }

    .problems-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .cases-row {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }
   .solution-head {
    font-size: 1.4rem;
}
    .c-title strong {
    font-size: 1.4rem;
}
.section-cta {
background-position: 84% center;
}
/* Audio */
#section-audio {
    padding: 0 15px;
}
#section-audio .container {
    padding: 0px;
}
#section-audio img {
    width: 100%;
    margin-top: 15px;
}
#section-audio .covers__box__main__text {
    margin-top: 0px;
}
.tab-container ul {
    display: block;
    border-radius: 18px;

}
.tab-content.selected {
    display: block;
}
.slide-indicator {
    width: calc(100% - 12px);
    height: calc(100% / 4 - 2px);
}
.covers__box__main__text {
    width: 100%;
}
#section-audio video {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-top: 20px;
}
}






@keyframes blob_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.bg_blobs {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}

.blobs {
  position: absolute;
  left: 50%;
  top: 50%;
  animation-name: blob_rotate;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.blobs::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  transform: translate(-50%, -50%); 
}

/* 各 blob の速度や見た目を個別に指定 */
.blobs:nth-child(1) {
  animation-duration: 35000ms;
}

.blobs:nth-child(1)::before {
  left: -150px;
  top: 150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(rgba(255, 72, 38, 0.35) 0%, rgba(255, 72, 38, 0) 70%);
}

.blobs:nth-child(2) {
  animation-duration: 30000ms;
  animation-direction: reverse;
}

.blobs:nth-child(2)::before {
  left: 250px;
  top: -250px;
  width: 500px;
  height: 500px;
  background: radial-gradient(rgba(255, 110, 80, 0.25) 0%, rgba(255, 110, 80, 0) 70%);
}

.blobs:nth-child(3) {
  animation-duration: 25000ms;
}

.blobs:nth-child(3)::before {
  left: 550px;
  top: 300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(rgba(255, 140, 120, 0.2) 0%, rgba(255, 140, 120, 0) 70%);
}

/* ------------------------------
  レスポンシブ対応
------------------------------ */
@media (max-width: 767px) {
  .blobs:nth-child(1)::before {
    left: -50px;
    top: 50px;
    width: 250px;
    height: 250px;
  }

  .blobs:nth-child(2)::before {
    left: 150px;
    top: -150px;
    width: 350px;
    height: 350px;
  }

  .blobs:nth-child(3)::before {
    left: 450px;
    top: 150px;
    width: 500px;
    height: 500px;
  }
}








