@charset "UTF-8";
/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: calc(86vh - 84px);
  margin-top: 84px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hero {
    height: calc(86vh - 64px);
    margin-top: 64px;
  }
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: scale(1.15);
  will-change: transform;
}
.hero-video-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}

.hero-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-catch {
  position: absolute;
  left: 3%;
  top: 20%;
  font-size: clamp(36px, 3.5vw, 44px);
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  filter: drop-shadow(0px 0px 0.5px #f6f6f6);
}
.hero-catch .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-catch.active .line:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.hero-catch.active .line:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.hero-catch span span {
  font-size: clamp(44px, 4.2vw, 52px);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .hero-catch {
    left: 20px;
    top: 15%;
    font-size: clamp(24px, 6.5vw, 38px);
  }
  .hero-catch span span {
    font-size: clamp(32px, 8vw, 46px);
  }
}

.hero-text {
  position: absolute;
  left: 3%;
  bottom: 20%;
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  opacity: 0;
  filter: blur(6px) drop-shadow(0px 0px 0.5px #999);
  transition: opacity 0.8s ease 0.8s, filter 0.8s ease 0.8s;
}
.hero-text.active {
  opacity: 1;
  filter: blur(0) drop-shadow(0px 0px 0.5px #999);
}
@media screen and (max-width: 768px) {
  .hero-text .br-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hero-text {
    left: unset;
    right: 3%;
    bottom: 22%;
    font-size: clamp(14px, 3.8vw, 18px);
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .hero-text {
    right: unset;
    left: 3%;
  }
}

.hero-badge {
  position: absolute;
  right: 3%;
  bottom: 6%;
  z-index: 2;
  display: block;
}
.hero-badge img {
  width: 230px;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hero-badge:hover img {
  transform: scale(1.03);
  opacity: 0.85;
}
.hero-badge.is-fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  opacity: 0;
  /*filter: drop-shadow(0px 0px 2px #ddd);*/
  animation: badgeFadeIn 0.4s ease forwards;
}
.hero-badge.is-hidden {
  animation: badgeFadeOut 0.4s ease forwards;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .hero-badge {
    right: 10px;
    bottom: 10px;
  }
  .hero-badge img {
    width: 195px;
  }
}
@media screen and (max-width: 480px) {
  .hero-badge img {
    width: 170px;
  }
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes badgeFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
/* ===== NEWS TICKER ===== */
.news-ticker {
  background: #F2F2F2;
}

.news-ticker-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .news-ticker-inner {
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 2px 12px;
  }
  .news-ticker-inner::after {
    content: "";
    flex-basis: 100%;
    order: 2;
  }
}

.news-ticker-label {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid #333;
  padding: 4px 16px;
}
@media screen and (max-width: 768px) {
  .news-ticker-label {
    font-size: 12px;
    padding: 3px 12px;
  }
}

.news-ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
  transition: color 0.3s ease;
}
.news-ticker-item:hover {
  color: #34C8DC;
}
@media screen and (max-width: 768px) {
  .news-ticker-item {
    display: contents;
  }
}

.news-ticker-date {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #999;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .news-ticker-date {
    font-size: 13px;
  }
}

.news-ticker-title {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .news-ticker-title {
    font-size: 13px;
    flex: 1;
    order: 3;
  }
}

.news-ticker-more {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  color: #333;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
  transition: color 0.3s ease;
}
.news-ticker-more .news-ticker-more-icon {
  width: 24px;
  height: auto;
  transform: translateX(-6px);
  transition: transform 0.3s ease;
}
.news-ticker-more:hover {
  color: #34C8DC;
}
.news-ticker-more:hover .news-ticker-more-icon {
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .news-ticker-more {
    font-size: 13px;
    margin-left: auto;
    order: 4;
    gap: 16px;
  }
  .news-ticker-more .news-ticker-more-icon {
    width: 20px;
  }
}

/* ===== 汎用セクションタイトル ===== */
.section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-title::before {
  content: attr(data-en);
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.85);
  font-family: "Outfit", sans-serif;
  font-size: 70px;
  font-weight: 700;
  background: linear-gradient(90deg, #33C8DC, #6B8BE0, #A855C8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  filter: blur(12px);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  transition: opacity 1s ease 0.1s, filter 1s ease 0.1s, transform 1s ease 0.1s;
}
@media screen and (max-width: 768px) {
  .section-title::before {
    font-size: 48px;
  }
}
@media screen and (max-width: 480px) {
  .section-title::before {
    font-size: 36px;
  }
}
.section-title.is-visible::before {
  opacity: 0.18;
  filter: blur(0);
  transform: translateX(-50%) scale(1);
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }
}

/* ===== 汎用コンテナ ===== */
.container {
  max-width: calc(1100px + 80px);
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ===== SOLUTION ===== */
.section-solution {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .section-solution {
    padding: 80px 0;
  }
}
@media screen and (max-width: 480px) {
  .section-solution {
    padding: 60px 0;
  }
}

.solution-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .solution-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .solution-title {
    font-size: 18px;
  }
}

.solution-text {
  font-size: 19px;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}
@media screen and (max-width: 768px) {
  .solution-text {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 480px) {
  .solution-text {
    font-size: 14px;
  }
}

.solution-flow {
  max-width: 1110px;
  margin: 0 auto 32px;
}
.solution-flow img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 1190px) {
  .solution-flow {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 22px;
  }
  .solution-flow::-webkit-scrollbar {
    height: 4px;
  }
  .solution-flow::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
  }
  .solution-flow img {
    width: 1110px;
    min-width: 1110px;
  }
}
@media screen and (max-width: 1190px) and (max-width: 480px) {
  .solution-flow img {
    width: 920px;
    min-width: 920px;
  }
}

.solution-flow-hint {
  display: none;
  position: relative;
  width: 0;
  height: 1px;
  margin: -8px auto 20px 75px;
  animation: scroll-sway 3s ease-in-out infinite;
}
.solution-flow-hint span {
  position: absolute;
  left: -75px;
  bottom: -18px;
  color: #666;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.solution-flow-hint::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 3px;
  width: 1px;
  height: 10px;
  background: #666;
  transform: skewX(31deg);
}
.solution-flow-hint::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75px;
  height: 1px;
  background: #666;
}
@media screen and (max-width: 1190px) {
  .solution-flow-hint {
    display: block;
  }
}

@keyframes scroll-sway {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
}
.solution-note {
  font-size: 20px;
  text-align: center;
  color: #555;
}
@media screen and (max-width: 768px) {
  .solution-note {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .solution-note {
    font-size: 14px;
  }
}

/* ===== OUR SERVICES ===== */
.section-services {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .section-services {
    padding: 80px 0;
  }
}
@media screen and (max-width: 480px) {
  .section-services {
    padding: 60px 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4%;
}
@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.service-card {
  text-align: center;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}
.service-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }
}

.service-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .service-name {
    font-size: 16px;
  }
}

.service-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
@media screen and (max-width: 768px) {
  .service-desc {
    font-size: 13px;
  }
}

/* ===== PERFORMANCE ===== */
.section-performance {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .section-performance {
    padding: 80px 0;
  }
}
@media screen and (max-width: 480px) {
  .section-performance {
    padding: 60px 0;
  }
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
}
@media screen and (max-width: 768px) {
  .performance-grid {
    gap: 1%;
  }
}
@media screen and (max-width: 480px) {
  .performance-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.performance-card {
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 480px) {
  .performance-card {
    max-width: 250px;
    margin: auto;
  }
}

.performance-img {
  width: 100%;
}
.performance-img img {
  width: 100%;
  height: auto;
  display: block;
}

.performance-label {
  font-size: clamp(11px, 1.2vw, 14px);
  color: #333;
  font-weight: 300;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .performance-label {
    margin-bottom: 1.2%;
  }
}
@media screen and (max-width: 480px) {
  .performance-label {
    font-size: 13px;
  }
}

.performance-data {
  position: absolute;
  bottom: 12%;
  right: 2%;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .performance-data {
    bottom: 10%;
  }
}
@media screen and (max-width: 480px) {
  .performance-data {
    bottom: 12%;
  }
}

.performance-number {
  font-family: "Outfit", sans-serif;
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 700;
  color: #333;
}
.performance-number small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1.8vw, 20px);
  font-weight: 500;
  margin-left: 4px;
}
@media screen and (max-width: 480px) {
  .performance-number {
    font-size: 36px;
  }
  .performance-number small {
    font-size: 16px;
  }
}

.performance-banner {
  margin-top: 80px;
}
.performance-banner img {
  width: 94%;
  height: auto;
  display: block;
  margin: auto;
}
@media screen and (max-width: 480px) {
  .performance-banner img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .performance-banner {
    margin-top: 50px;
  }
}

/* ===== STRENGTHS ===== */
.section-strengths {
  padding: 120px 0 200px;
}
@media screen and (max-width: 768px) {
  .section-strengths {
    padding: 80px 0 140px;
  }
}
@media screen and (max-width: 480px) {
  .section-strengths {
    padding: 60px 0 100px;
  }
}

.strengths-subtitle {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .strengths-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
  }
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5%;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.strengths-card {
  border: 1px solid #7C93E7;
  overflow: visible;
  border-radius: 12px 12px 0px 0px;
  display: flex;
  flex-direction: column;
}

.strengths-card-header {
  background: #7C93E7;
  color: #fff;
  padding: clamp(10px, 1.3vw, 16px) clamp(12px, 1.6vw, 20px);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  position: relative;
  border-radius: 10px 10px 0px 0px;
  text-align: center;
}
.strengths-card-header::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #7C93E7;
}
@media screen and (max-width: 768px) {
  .strengths-card-header {
    font-size: 13px;
    padding: 12px 16px;
  }
}
@media screen and (max-width: 480px) {
  .strengths-card-header {
    font-size: 12px;
    padding: 10px 12px;
  }
}

.strengths-num {
  font-family: "Outfit", sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
}
@media screen and (max-width: 930px) {
  .strengths-num {
    font-size: 16px;
    display: block;
    letter-spacing: 0.06em;
  }
}

@media screen and (max-width: 930px) {
  .strengths-divider {
    display: none;
  }
}

.strengths-en {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 4px;
  opacity: 0.8;
}
@media screen and (max-width: 480px) {
  .strengths-en {
    font-size: 10px;
  }
}

.strengths-card-body {
  padding: 24px 20px;
  flex: 1;
}
.strengths-card-body p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .strengths-card-body {
    padding: 20px 16px;
  }
  .strengths-card-body p {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .strengths-card-body {
    padding: 16px 12px;
  }
  .strengths-card-body p {
    font-size: 12px;
    line-height: 1.7;
  }
}

.strengths-note {
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .strengths-note {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .strengths-note {
    font-size: 14px;
  }
}

/* ===== BUSINESS ===== */
.section-business {
  padding: 80px 0 120px;
  background: rgba(234, 236, 248, 0.4);
}
.section-business .section-title {
  margin-top: -80px;
  padding-top: 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .section-business {
    padding: 60px 0 80px;
  }
  .section-business .section-title {
    margin-top: -66px;
  }
}
@media screen and (max-width: 480px) {
  .section-business {
    padding: 40px 0 60px;
  }
  .section-business .section-title {
    margin-top: -46px;
  }
}

/* Biz Inner（overflow制御用ラッパー） */
.biz-inner {
  overflow: hidden;
}

/* Biz Block */
.biz-block {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 13.5%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
.biz-block--reverse {
  flex-direction: row-reverse;
  margin-bottom: 10.5%;
}
@media screen and (max-width: 768px) {
  .biz-block--reverse {
    margin-bottom: 16.5% !important;
  }
}
.biz-block--reverse .biz-block-more {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .biz-block--reverse .biz-block-more {
    margin-left: auto;
  }
}
@media screen and (max-width: 1100px) {
  .biz-block {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .biz-block {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0;
    margin-bottom: 12.5%;
  }
  .biz-block--reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 480px) {
  .biz-block {
    margin-bottom: 80px;
  }
  .biz-block--reverse {
    margin-bottom: 80px;
  }
}

/* 最後の .biz-block（3番目） */
.biz-block:nth-child(3) {
  margin-bottom: 18%;
}
@media screen and (max-width: 768px) {
  .biz-block:nth-child(3) {
    margin-bottom: 20%;
  }
}

.biz-block-visual {
  position: relative;
  flex: 0 0 54%;
  max-width: 54%;
  margin-left: -10%;
}
.biz-block--reverse .biz-block-visual {
  margin-left: unset;
  margin-right: -10%;
  flex: 0 0 62%;
  max-width: 62%;
}
@media screen and (max-width: 768px) {
  .biz-block-visual {
    flex: none;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .biz-block--reverse .biz-block-visual {
    flex: none;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.biz-block-img {
  position: relative;
  z-index: 1;
}
.biz-block-img img {
  width: 100%;
  height: auto;
  display: block;
}
.biz-block-img picture {
  display: block;
}

.biz-block-accent {
  position: absolute;
  bottom: -3%;
  left: 15%;
  width: 42%;
  z-index: 1;
  opacity: 0;
  transform: translate(-80px, -80px);
  transition: opacity 0.5s ease 1.1s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.1s;
}
.biz-block.is-visible .biz-block-accent {
  opacity: 1;
  transform: translate(0, 0);
}
.biz-block-accent.accent02 {
  display: none;
}
.biz-block-accent img {
  width: 100%;
  height: auto;
  display: block;
}
.biz-block--reverse .biz-block-accent {
  left: auto;
  right: 50px;
  transform: translate(80px, -80px);
}
.biz-block--reverse.is-visible .biz-block-accent {
  opacity: 1;
  transform: translate(0, 0);
  width: 33%;
}
@media screen and (max-width: 768px) {
  .biz-block-accent {
    /* 1つ目: 総代理店事業 */
  }
  .biz-block:nth-child(1) .biz-block-accent {
    top: 45%;
    left: -5%;
    width: 49%;
  }
  .biz-block:nth-child(1) .biz-block-accent.accent02 {
    display: block;
    top: 53%;
    width: 80.6%;
    left: unset;
    right: -2%;
    opacity: 1;
    transform: translate(0, 0);
    transition: none;
  }
  .biz-block-accent {
    /* 2つ目: 統合マーケティング（reverse） */
  }
  .biz-block:nth-child(2) .biz-block-accent {
    top: 46.4%;
    right: -10.8%;
    width: 54.3%;
  }
  .biz-block:nth-child(2) .biz-block-accent.accent02 {
    display: block;
    top: 70%;
    width: 80.6%;
    left: 1.3%;
    opacity: 1;
    transform: translate(0, 0);
    transition: none;
  }
  .biz-block-accent {
    /* 3つ目: ライブコマース */
  }
  .biz-block:nth-child(3) .biz-block-accent {
    top: 56%;
    width: 57%;
    left: -2%;
  }
}

.biz-block-map {
  position: absolute;
  bottom: -30%;
  right: -50%;
  width: 72%;
  z-index: 2;
  max-width: 666px;
}
@media screen and (max-width: 1200px) {
  .biz-block-map {
    bottom: -45%;
    right: -20%;
  }
}
.biz-block-map img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .biz-block-map {
    display: none;
  }
}

.biz-block-body {
  flex: 1;
  padding-top: 40px;
  max-width: 540px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease 0.1s, transform 1s ease 0.1s;
}
.biz-block.is-visible .biz-block-body {
  opacity: 1;
  transform: translateY(0);
}
.biz-block--reverse .biz-block-body {
  margin-right: -6%;
}
.biz-block--reverse .biz-block-body .biz-block-title {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .biz-block--reverse .biz-block-body .biz-block-title {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .biz-block-body {
    padding-top: 0;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .biz-block--reverse .biz-block-body {
    margin: 0 auto;
  }
}

.biz-block-title {
  font-size: clamp(22px, 1vw, 24px);
  font-weight: 600;
  margin-bottom: 24px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .biz-block-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .biz-block-title {
    font-size: 18px;
  }
}

.biz-block-text {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 32px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .biz-block-text {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .biz-block-text {
    font-size: 13px;
  }
}

.biz-block-more {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  gap: 20px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  padding-bottom: 8px;
  border-bottom: 1px solid #ccc;
  transition: color 0.3s ease;
  margin-left: auto;
}
.biz-block-more .biz-block-more-icon {
  width: 24px;
  height: auto;
  transform: translateX(-6px);
  transition: transform 0.3s ease;
}
.biz-block-more:hover {
  color: #34C8DC;
}
.biz-block-more:hover .biz-block-more-icon {
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .biz-block-more {
    font-size: 14px;
  }
}

/* TikTok Area */
.tiktok-area {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .tiktok-area {
    margin-top: 60px;
  }
}

.tiktok-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tiktok-slider::-webkit-scrollbar {
  height: 4px;
}
.tiktok-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.tiktok-slider-track {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .tiktok-slider-track {
    gap: 16px;
  }
}

.tiktok-slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
}
.tiktok-slide .tiktok-embed {
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  .tiktok-slide {
    flex: 0 0 80%;
    min-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .tiktok-slide {
    flex: 0 0 85%;
    min-width: 260px;
  }
}

/* ===== PHOTO (挿絵) ===== */
.section-photo {
  width: 100%;
  overflow: hidden;
}

.section-photo-row {
  width: 100%;
  overflow: hidden;
}
.section-photo-row img {
  width: 110%;
  max-width: none;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: -5%;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .section-photo-row img {
    width: 200%;
    margin-left: -50%;
  }
}
@media screen and (max-width: 480px) {
  .section-photo-row img {
    width: 250%;
    margin-left: -75%;
  }
}

/* ===== NEWS ===== */
.section-news {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .section-news {
    padding: 80px 0;
  }
}
@media screen and (max-width: 480px) {
  .section-news {
    padding: 60px 0;
  }
}

.news-list {
  max-width: 800px;
  margin: 0 auto 48px;
}

.news-list-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: opacity 0.3s ease;
}
.news-list-item:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .news-list-item {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
  }
}

.news-list-date {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #999;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .news-list-date {
    font-size: 13px;
    width: 100%;
  }
}

.news-list-title {
  font-size: 15px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .news-list-title {
    font-size: 14px;
    white-space: normal;
  }
}

.news-list-arrow {
  font-size: 28px;
  color: #2D9EDC;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.news-list-item:hover .news-list-arrow {
  transform: translateX(6px);
}

.news-btn-wrap {
  text-align: center;
}

.news-btn {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid #333;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}
.news-btn:hover {
  background: #333;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .news-btn {
    padding: 14px 40px;
    font-size: 14px;
  }
}

/* ===== BANNER ===== */
.section-banner {
  padding: 0 0 120px;
}
@media screen and (max-width: 768px) {
  .section-banner {
    padding: 0 0 80px;
  }
}
@media screen and (max-width: 480px) {
  .section-banner {
    padding: 0 0 60px;
  }
}

.banner-item {
  text-align: center;
}
.banner-item a {
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.banner-item img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
}