/* 横スクロール防止とヘッダー修正 */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.header {
  width: 100%;
  overflow-x: hidden;
}

.header__inner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* ハンバーガーメニューの修正（tax-advisorページ専用） */
.hamburger-menu {
  flex-direction: column;
  justify-content: space-around;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hamburger-menu {
    display: flex;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-left: auto;
    margin-right: 8px;
    width: 30px;
    height: 30px;
  }
  
  .header__inner {
    justify-content: space-between;
    padding-right: 16px;
    align-items: center;
  }
}

/* パンくずリスト */
.breadcrumb {
  margin: 84px 5% 4px 5%;
  font-size: 0.8rem;
  color: #888;
}

.breadcrumb a {
  color: #1E4377;
  text-decoration: underline;
}

/* タイトルエリア */
.tax-advisor-title-area {
  position: relative;
  width: 100vw;
  min-width: 320px;
  height: auto;
  opacity: 0;
  animation: titleAreaFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

@keyframes titleAreaFadeIn {
  to {
    opacity: 1;
  }
}

.tax-advisor-title-whiteband {
  position: relative;
  top: 0; left: 0;
  width: 95vw;
  background: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: auto;
  border-radius: 0;
  transform: translateX(-30%);
  opacity: 0;
  animation: whiteBandSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

@keyframes whiteBandSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tax-advisor-title-blueband {
  position: absolute;
  right: 0%;
  top: 50%;
  width: 95vw;
  height: 100%;
  background: linear-gradient(90deg, #E63946 0%, #b92c38 100%);
  z-index: 1;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  transform: translateX(30%);
  opacity: 0;
  animation: blueBandSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

@keyframes blueBandSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tax-advisor-title-blueband-text {
  position: absolute;
  top: 75%;
  left: 5vw;
  transform: translateY(-50%);
  width: 100vw;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 0;
  height: auto;
  margin: 0;
  opacity: 0;
  animation: blueTextFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
  padding-right: 150px;
}

@keyframes blueTextFadeIn {
  to {
    opacity: 1;
  }
}

.tax-advisor-title-texts {
  margin-left: 10vw;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  animation: whiteTextSlideUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

@keyframes whiteTextSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tax-advisor-title-bgmark {
  position: absolute;
  right: -333px;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: auto;
  opacity: 0;
  animation: logoScaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.0s forwards;
}

@keyframes logoScaleIn {
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.tax-advisor-title-bgmark img {
  width: 55%;
  object-fit: contain;
  display: block;
}

.tax-advisor-title-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #1E4377;
  line-height: 1.2;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  paint-order: stroke;
}

.tax-advisor-title-en {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: normal;
  color: #1E4377;
  line-height: 1.2;
}

/* メインコンテンツ */
.tax-advisor-main {
  padding: 140px 0;
}




/* 共通セクション */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1E4377;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.section-title span{
  display: inline-block;
}

.section-title::after {
  content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #387CDD, #1E4377);
    border-radius: 2px;
}



/* サービス概要セクション */
.service-overview {
  padding: 80px 0;
  position: relative;
  /*min-height: 500px;*/
  padding: 40px 0 40px 0;
  overflow: hidden;
  z-index: 1;
  align-content: center;
}

.service-overview-bg{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  background: url(../../img/service/service_main01.jpeg) center / cover no-repeat;
}
.service-overview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 67, 119, 0.95);
  z-index: 2;
}



.service-overview__container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;

}

.service-overview__content {
  gap: 64px;
  align-items: center;
  padding: 24px 0;
  display: flex;
}

.service-overview__text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 55%;
}

.service-overview__catchphrase {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 32px 0;
  text-align: left;
  position: relative;
}
.service-overview__catchphrase span{
  display: inline-block;
}


.service-overview__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #fff;
  margin: 0;
  text-align: left;
}

.service-overview__text span{
  display: inline-block;
}

.service-overview__image {
  text-align: center;
  width: 45%;
}

.service-overview__image img {
  width: 100%;
  /*max-width: 350px;*/
  height: auto;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}


/* 私たちの３つ特徴セクション */
.three-detail {
  padding: 16px 0;
  /*background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);*/
  background-color: #F4F7FF;
  padding-bottom: 80px;
}

.three-detail__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/*こだわり中タイトル*/
.detail-title{
  font-size: 1.25rem;
}
span.detail-title__number{
  font-size: 1.8rem;
  padding-right: 4px;
}
span.detail-title__text {
  background-color: #1E4377;
  padding: 4px 8px;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 4px;
  margin-left: 4px;
}
.detail-title{
  display: flex;
  align-items: center;
}
.detail-title:before,
.detail-title:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
}

.detail-title:before {
    margin-right: 1rem;
}

.detail-title:after {
    margin-left: 1rem;
}
/**/
/*姿勢*/
.three-posture__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
  margin-bottom: 80px;
}

.posture-item {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(30, 67, 119, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.posture-item__image img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.posture-item__text{
  padding: 24px;
}

.posture-item__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E4377;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.posture-item__title span{
  display: inline-block;
}

.posture-item__desc {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

/*特徴*/
.three-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.features-item {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(30, 67, 119, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 1px rgba(30, 67, 119, 1);
}

.features-item__image img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.features-item__text{
  padding: 24px;
}

.features-item__title {
  font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.4;
    background-color: #1e4377;
    border-radius: 4px;
    padding: 8px;
}

.features-item__desc {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}


/* 課題解決セクション */
.problem-solving-section {
  padding: 100px 0;
  background: #F4F7FF;
  position: relative;
  overflow: hidden;
}


.problem-solving__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-title--white {
  color: #1E4377;
}


/* 課題解決：新レイアウト（リード/カテゴリ） */
.problem-solving__lead {
  color: #1E4377;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.9;
  margin: -8px auto 8px auto;
  max-width: 1000px;
}

.problem-categories {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 24px;
}

.problem-category {
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}
.problem-category__title-group {
  justify-items: center;
  width: 40%;
  text-align: center;
  margin: 0 auto;
}

.problem-category__title {
  display: inline-block;
  color: #1E4377;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  padding: 8px 14px;
  text-align: center;
}
.problem-category__image{
  width: 70%;
  margin: 0 auto;
  text-align: center;
}

.problem-solving__grid {
  display: grid;
  gap: 16px;
  width: 60%;
}

.problem-item {
  background: #D7E2F3;
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  border-radius: 4px;
  text-align: left;
  transition: all 0.4s ease;
  /*border: 1px solid rgba(255, 255, 255, 0.2);*/
  /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);*/
  position: relative;
  overflow: hidden;
}



.problem-item__icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.problem-item__title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1E4377;
  margin: 0 0 16px 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
}

.problem-item__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin: 0;
  position: relative;
  z-index: 1;
}

a.links-text {
  color: #1a0dab;
  border-bottom: solid;
}

.problem-item__link {
  color: #E63946;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
  display: inline-block;
  transition: color 0.3s ease;
}

.problem-item__link:hover {
  color: #1E4377;
  text-decoration: underline;
}

/* 受け取れるもの（成果物） */
.problem-item__deliverables {
  margin-top: 12px;
  padding: 12px 14px;
  background: #F4F7FF;
  border-left: 4px solid #E63946;
  border-radius: 10px;
  color: #1E4377;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* サービス内容セクション */
.service-content {
  padding: 80px 0;
  background: #FFF;
}

.service-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-content__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}





.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.service-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0;
  color: #E63946;
  font-size: 1rem;
}

.option-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.option-list li {
  background: #F8F9FA;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 8px;
  border-left: 4px solid #E63946;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

/*サービス内容中タイトル*/
.subsection-title {
  font-size: 1rem;
  font-weight: bold;
  color: #1E4377;
  margin-bottom: 24px;
}
.subsection-title {
  display: flex;
  align-items: center;
}
.subsection-title:before,
.subsection-title:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
}

.subsection-title:before {
    margin-right: 1rem;
}

.subsection-title:after {
    margin-left: 1rem;
}
/**/


.service-detail-flex{
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* サービス詳細項目のスタイル */
.service-detail-item {
  background: #FFF;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: calc(50% - 24px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}


.service-detail-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1E4377;
  margin: 0 0 12px 0;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #E1E1E1;
    padding-bottom: 16px;
}


.service-detail-image{
  width: 10%;
  max-width: 50px;
  min-width: 40px;
  padding-right: 16px;
}



.service-detail-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* オプションサービス詳細項目のスタイル */
.option-detail-flex{
  display: flex;
  gap: 32px;
}


.option-detail-item {
  background: #FFF;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}



.option-detail-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1E4377;
  margin: 0 0 8px 0;
}

.option-detail-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #387CDD;
  margin: 0 0 12px 0;
  background: #F4F4F4;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
}

.option-detail-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  text-align: left;
}

/* ビザ取得に必要なものセクション */
.visa-requirements {
  padding: 80px 0;
  background: #FFF;
}

.service-future .service-lead {
  text-align: center;
  font-size: 1.1rem;
  color: #1E4377;
  line-height: 1.9;
  margin: -8px auto 24px auto;
  max-width: 1000px;
}

.service-future .service-quote {
  max-width: 900px;
  margin: 0 auto 40px auto;
  background: #F8F9FF;
  border-left: 6px solid #E63946;
  border-radius: 8px;
  padding: 16px 20px;
  color: #1E4377;
}

.service-future .service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.service-future .service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(30, 67, 119, 0.08);
  padding: 20px;
  border: 1px solid #E9ECEF;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-future .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 67, 119, 0.12);
}

.service-future .service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1E4377;
  margin: 0 0 10px 0;
}

.service-future .service-card__desc {
  font-size: 0.98rem;
  color: #333;
  line-height: 1.7;
  margin: 0 0 12px 0;
}

.service-future .service-card__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-future .service-card__benefits li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #1E4377;
}

.service-future .service-card__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #E63946;
  font-weight: 700;
}

.service-future .special-program {
  background: #F4F7FF;
  border: 1px solid #D7E2F3;
  border-radius: 12px;
  padding: 24px;
  margin: 8px 0 32px 0;
}

.service-future .value-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.service-future .value-list li {
  background: #fff;
  border: 1px solid #E9ECEF;
  border-left: 4px solid #387CDD;
  border-radius: 8px;
  padding: 12px 14px;
  color: #1E4377;
  font-size: 0.98rem;
}

.service-future .roadmap-table-wrap {
  overflow-x: auto;
  margin-top: 12px;
}

.service-future .roadmap-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.service-future .roadmap-table th {
  background: #D7E2F3;
  padding: 12px 14px;
  text-align: left;
  color: #1E4377;
}

.service-future .roadmap-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #E9ECEF;
}

.service-future .service-process-title {
  margin: 20px 0 6px 0;
  font-size: 1rem;
  color: #1E4377;
}

.service-future .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin: 0 0 24px 0;
  padding-left: 20px;
}

.service-future .menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
}

.service-future .menu-list li {
  background: #F8F9FA;
  border: 1px solid #E9ECEF;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.95rem;
  color: #1E4377;
}

.service-future .menu-note {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  .service-future .service-lead {
    font-size: 1rem;
    margin-bottom: 16px;
    padding: 0 8px;
  }
  .service-future .service-quote {
    margin: 0 8px 24px 8px;
  }
}

.visa-requirements__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.visa-requirements__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.visa-requirements__basic,
.visa-requirements__business-scale {
  background: #F8F9FA;
  padding: 32px;
  border-radius: 4px;
}

.visa-requirements__note {
  background: #E8F4FD;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #387CDD;
  text-align: center;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-list li {
  padding: 12px 0;
  border-bottom: 1px solid #E5E5E5;
  font-size: 1rem;
  line-height: 1.6;
}

.requirements-list li:last-child {
  border-bottom: none;
}

.requirements-list li strong {
  color: #1E4377;
  font-weight: 600;
}

.visa-requirements__note p {
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.visa-requirements__note strong {
  color: #387CDD;
  font-weight: 600;
}

/* 料金プランセクション */
.pricing {
  padding: 80px 0;
  background: #F4F7FF;
}

.pricing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing__category {
  margin-bottom: 48px;
}

.pricing__category-title-container{
  border-radius: 16px 16px 0px 0px;
  background-color: #387CDD;
  display: flex;
  justify-content: center;
}

.pricing__category-img{
  width: 10%;
  max-width: 32px;
  align-content: center;
}

.pricing__category-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1E4377;
  margin-bottom: 24px;
  text-align: center;
  padding: 16px;
  color: #fff;
  margin-bottom: 0;
  margin-top: 0;
}

.pricing__table {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.price-table th {
  background: #D7E2F3;
  padding: 20px 16px;
  text-align: center;
  font-weight: bold;
  color: #1E4377;
}

.price-table td {
  padding: 20px 16px;
  text-align: center;
  border-bottom: 1px solid #E9ECEF;
  color: #333;
}



.pricing__notes {
  margin-top: 24px;
  text-align: center;
}

.pricing__notes p {
  margin: 8px 0;
  font-size: 0.9rem;
  color: #666;
}

.monthly{
  color: #666;
  background-color: #1E4377;
  color: #FFF;
  padding: 4px 8px;
  /*border-radius: 4px;*/
  margin-right: 4px;
}
.monthly_price{
  font-size: 1.25rem;
}

.settlement{
  color: #387CDD;
  font-size: 0.9rem;
  margin-right: 2px;
}
.settlement_price{
  font-size: 0.9rem;
}

/*個人サブ料金*/
.pricing__sub-title{
  display: flex;
  align-items: center;
}
.pricing__sub-title:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
}
.pricing__sub-title:after {
    margin-left: 1rem;
}

.price-table-sub-container {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
table.price-table-sub {
  width: calc(50% - 24px);
  background: #fff;
}

table.price-table-sub {
  border-collapse: collapse;
}

.price-table-sub th{
  background: #D7E2F3;
  padding: 20px 16px;
  text-align: center;
  font-weight: bold;
  color: #1E4377;
}
.price-table-sub .td-item{
  height: auto;
  padding: 0 8px;
  width: 70%;
}
td.td-price {
  padding: 0 8px;
  width: 30%;
  text-align: center;
}

.table-sub-1 tr{
  border-bottom: solid 1px #E1E1E1;
  height: 60px;
}
.table-sub-2 tr{
  border-bottom: solid 1px #E1E1E1;
  height: 60px;
}
.tr-null{
  visibility: collapse;
}

table.price-table-sub td span{
  display: inline-block;
}




/* 導入フローセクション */
.introduction-flow {
  padding: 80px 0;
  background: #F4F7FF;
}

.introduction-flow__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.flow-step {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}

/* ホームベース型（1-3のステップ） */
.flow-step-container {
  padding: 24px;
  justify-items: center;
}

.flow-step:nth-child(-n+3) {
  background: none;
  padding: 0;
  box-shadow: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flow-step:nth-child(-n+3)::before {
  content: '';
  background: #1E4377;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
  z-index: 1;
}

.flow-step:nth-child(-n+3) .flow-step__number,
.flow-step:nth-child(-n+3) .flow-step__content {
  position: relative;
  z-index: 2;
}

.flow-step:nth-child(-n+3) .flow-step__content {
  /*padding: 32px 8px;*/
  text-align: left;
  flex: 1;
}

/* 4番目のステップは従来通りの四角 */
.flow-step:nth-child(4) {
  background: #387CDD;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}



.flow-step__number {
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px auto;
  flex-flow: column;
}

.flow-step__number span{
  font-size: 0.8rem;
}

/* ホームベース型の番号位置調整 */
.flow-step:nth-child(-n+3) .flow-step__number {
  margin: 0;
  flex-shrink: 0;
}

.flow-step__content h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #FFF;
  margin-bottom: 12px;
  justify-self: center;
  height: 64px;
  align-content: center;
}
.flow-step__content h3 span{
  display: inline-block;
}

.flow-step__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF;
  margin: 0;
  height: 64px;
}
.flow-step__content p span{
  display: inline-block;
}

/* タブレット対応 - 三角を下向きに */
@media (max-width: 900px) {
  .flow-step:nth-child(-n+3) {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 160px;
  }
  
  .flow-step:nth-child(-n+3)::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
  }
  
  .flow-step:nth-child(-n+3) .flow-step__number {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 16px auto 0 auto;
  }
  
  .flow-step:nth-child(-n+3) .flow-step__content {
    margin-left: 0;
    padding: 16px 24px 32px 24px;
    text-align: center;
  }

  .flow-step__content h3 {
    margin-top: 4px;
}
}

/* モバイル対応 */
@media (max-width: 768px) {
  .flow-steps {
    grid-template-columns: 1fr;
  }
  
  .flow-step:nth-child(-n+3) {
    min-height: 140px;
  }
  
  .flow-step:nth-child(-n+3)::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px));
  }
  
  /* ビザ取得に必要なものセクション - タブレット */
  .visa-requirements {
    padding: 60px 0;
  }
  
  .visa-requirements__container {
    padding: 0 16px;
  }
  
  .visa-requirements__content {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  
  .visa-requirements__basic,
  .visa-requirements__business-scale {
    padding: 24px;
  }
  
  .visa-requirements__note {
    padding: 20px;
  }
  
  .flow-step:nth-child(-n+3) .flow-step__content {
    padding: 12px 16px 24px 16px;
  }
  
  .flow-step:nth-child(-n+3) .flow-step__number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin: 12px auto 0 auto;
  }
}

/* モバイル対応 - FAQセクション */
@media (max-width: 768px) {
  
  .tax-faq-sub {
    font-size: 14px;
    padding: 0 16px;
  }
  
  .tax-faq-question {
    padding: 20px 16px;
  }
  
  .tax-faq-q-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-right: 12px;
  }
  
  .tax-faq-text {
    font-size: 14px;
  }
  
  .tax-faq-toggle {
    font-size: 20px;
    margin-left: 8px;
  }
  
  .tax-faq-item.active .tax-faq-answer {
    padding: 0 16px 20px 16px;
  }
  
  .tax-faq-a-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-right: 12px;
  }
  
  .tax-faq-answer-text {
    font-size: 14px;
  }
}

/* 最初の30日体験記 */
.first-30days {
  padding: 80px 0;
  background: #F4F7FF;
}

.first-30days__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.first-30days__lead {
  text-align: center;
  font-size: 1.1rem;
  color: #1E4377;
  line-height: 1.9;
  margin: -8px auto 28px auto;
  max-width: 900px;
}

.first-30days__lead span{
  display: inline-block;
}

.first-30days__note {
  text-align: center;
  color: #1E4377;
  font-size: 1.25rem;
  margin-top: 48px;
  padding: 0 16px;
  font-weight: bold;
}
.first-30days__note span{
  display: inline-block;
}

.first-30days__steps {
  display: flex
;
  flex-direction: column;
  gap: 32px;
}


.first-30days__item{
  display: flex;
    padding: 48px;
    background: #FFF;
    justify-content: space-between;
    gap: 16px;
}

.first-30days__item_left{
  width: 40%;
  background: #CAE0FF;
  border-radius: 4px;
}
.first-30days__number{
  font-family: 'Roboto', sans-serif;
  font-size: 2.25rem;
  padding: 2px 8px;
  border: 4px solid #FFF;
  width: fit-content;
  border-radius: 4px;
  color: #1E4377;
  
}
.first-30days__question{
  text-align: center;
  transform: translateX(0%) translateY(-30%);
  margin: 32px 0;
}
.first-30days__question h3 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 16px;
}


.first-30days__question-image{
  width: 9%;
  max-width: 50px;
  justify-self: anchor-center;
  margin: 0 auto;
}

.first-30days__answer-title h4 span{
  display: inline-block;
}

/*三角*/
.triangle{
  width: 0;
    height: 0;
    border-left: 30px solid #1E4377;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    margin: 16px;
    align-self: center;
    border-radius: 4px;
}

.first-30days__item_right{
  width: 60%;
  align-self: center;
}

.first-30days__answer-title{
  display: flex;
  align-items: center;
}
.first-30days__answer-image{
  width: 8%;
  max-width: 50px;
  min-width: 35px;
  margin-right: 8px;
}
.first-30days__answer-title h4{
  font-size: 2rem;
  margin: 0;
  color: #387CDD;
}
.first-30days__answer p{
  font-size: 1.15rem;
  line-height: 2rem;
}

.br-sp {
  display: none;
}


/* お客様の声セクション */
.customer-voice {
  padding: 80px 0;
  background: #fff;
}

.customer-voice__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 税務顧問ページ用お客様の声カード */
.tax-voice-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.tax-voice-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,67,119,0.08);
  padding: 32px 24px 24px 24px;
  box-sizing: border-box;
  text-align: center;
  transition: box-shadow 0.3s ease;
}



.voice-card__icon-wrapper {
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: #387CDD;
  margin: auto;
  margin-bottom: 16px;
}

.voice-masonry-card__icon {
  position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center 40%;
    border: none;
    border-radius: 50%;
    background: none;
}

/* メタ情報 */
.tax-voice-card__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tax-voice-card__age-gender {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.tax-voice-card__job {
  background: #387CDD;
  color: #fff;
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.voice-card__job_color_1 {
  background-color: #1E88E5;
}
.voice-card__job_color_2 {
background-color: #7E57C2;
}

.tax-voice-card__text {
  color: #222;
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: left;
}

/*青ボタン*/
.back__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1E4377;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 16px 32px 16px 64px;
  margin: 32px auto 0 auto;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(30, 67, 119, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  min-width: 200px;
  max-width: fit-content;
  width: auto;
}
.back__animate-item.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.back__more::after {
  content: '→';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 2px solid #fff;
  transition: transform 0.3s ease;
  margin-left: 32px;
}

/*.back__more:hover {
  background: #16325c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 67, 119, 0.3);
}*/
.back__more:hover::after {
  transform: translateX(8px);
  background: transparent;
  border-color: #fff;
}
/*青ボタンEND*/





/* 事業承継支援ページ用-------------------------------- */
.service-overview-bg-Bs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../../img/service/service_main05.jpeg) center / cover no-repeat;
}
.title-blueband-Bs{
  background: #4A7C59;
}
.title-blueband-Visa{
  background: #7209B7;
}
.title-blueband-Ma{
  background: #C73E1D;
}
.title-blueband-Financial{
  background: #F18F01;
}

/* VISA取得支援ページ用-------------------------------- */
.service-overview-bg-Visa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../../img/service/service_main06.jpeg) center / cover no-repeat;
}
.pricing__sub-visa{
  margin-bottom: 32px;
}

/*--料金表*/
table.price-table-visa th{
  width: 50%;
}
.price-table-visa .price-table-left{
  padding-left: 10%;
}
.price-table-visa .price-table-right{
  padding-right: 10%;
}

table.price-table-sub-visa {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
}
.price-table-sub-visa th {
  background: #D7E2F3;
  padding: 20px 16px;
  text-align: center;
  font-weight: bold;
  color: #1E4377;
  width: 50%;
}
.price-table-sub-visa td {
  text-align: center;
}
.price-table-sub-visa td span{
  display: inline-block;
}

.price-table-sub-visa .price-table-left{
  padding-left: 10%;
}
.price-table-sub-visa .price-table-right{
  padding-right: 10%;
}

@media (max-width: 600px) {
  .price-table-visa .price-table-left {
    padding-left: 8px;
}
.price-table-visa .price-table-right {
  padding-right: 8px;
}
.price-table-sub-visa .price-table-left {
  padding-left: 8px;
}
.price-table-sub-visa .price-table-right {
  padding-right: 8px;
}

}



/* M&A支援ページ用-------------------------------- */
.service-overview-bg-Ma {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../../img/service/service_main07.jpeg) center / cover no-repeat;
}
/*---料金表*/
.price-table-ma th{
  width: 50%;
} 
.price-table-ma .price-table-left{
  padding-left: 10%;
}
.price-table-ma .price-table-right{
  padding-right: 10%;
}
.price-table-ma__note{
  text-align: center;
}

.price-table-ma-other .price-table-left{
 width: 30%;
 padding-left: 10%;
}
.price-table-ma-other .price-table-center{
  width: 30%;
}
.price-table-ma-other .price-table-right{
  width: 40%;
  padding-right: 10%;
}
.price-table-ma-other td span{
  display: inline-block;
}
@media (max-width: 600px) {
  .price-table-ma .price-table-left{
    padding-left: 8px;
  }
  .price-table-ma .price-table-right{
    padding-right: 8px;
  }
  .price-table-ma-other .price-table-left{
    padding-left: 8px;
   }
   .price-table-ma-other .price-table-right{
     padding-right: 8px;
   }
}


/* モバイル対応 - お客様の声セクション */
@media (max-width: 768px) {
  .tax-voice-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 8px;
  }
  
  .tax-voice-card {
    padding: 24px 20px 20px 20px;
  }
  
  .tax-voice-card__icon {
    width: 60px;
    height: 60px;
  }
  
  .tax-voice-card__meta {
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .tax-voice-card__age-gender {
    font-size: 0.9rem;
  }
  
  .tax-voice-card__job {
    font-size: 0.8rem;
    padding: 3px 10px;
  }
  
  .tax-voice-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* よくある質問セクション */
.tax-faq-section {
  background: #F4F7FF;
  padding: 96px 0 80px 0;
  text-align: center;
}


.tax-faq-sub {
  color: #1E4377;
  font-size: 16px;
  margin-bottom: 48px;
}

.tax-faq-sub span{
  display: inline-block;
}

.tax-faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.tax-faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(30,67,119,0.06);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.tax-faq-item:hover {
  box-shadow: 0 4px 24px rgba(30,67,119,0.12);
}

.tax-faq-question {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.tax-faq-question:hover {
  background-color: #f8f9ff;
}

.tax-faq-q-icon {
  width: 40px;
  height: 40px;
  background: #1E4377;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
  margin-right: 16px;
}

.tax-faq-text {
  flex: 1;
  font-size: 16px;
  color: #1E4377;
  font-weight: 500;
  text-align: left;
}

.tax-faq-toggle {
  font-size: 24px;
  color: #1E4377;
  font-weight: bold;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.tax-faq-item.active .tax-faq-toggle {
  transform: none;
}

.tax-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #f8f9ff;
}

.tax-faq-item.active .tax-faq-answer {
  max-height: 300px;
  padding: 0 32px 24px 32px;
}

.tax-faq-answer-content {
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 1px solid #e0e6f0;
}

.tax-faq-a-icon {
  width: 32px;
  height: 32px;
  background: #E63946;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 16px;
  margin-top: 2px;
}

.tax-faq-answer-text {
  flex: 1;
  font-size: 15px;
  color: #1E4377;
  line-height: 1.8;
  text-align: left;
}

.customer-voice__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.voice-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.voice-card {
  background: #F8F9FA;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
}

.voice-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #E63946;
  font-family: serif;
}

.voice-card__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
  font-style: italic;
}

.voice-card__author {
  text-align: right;
}

.voice-card__company {
  font-weight: bold;
  color: #1E4377;
  margin: 0 0 4px 0;
}

.voice-card__name {
  color: #666;
  margin: 0;
}

/* FAQ セクション */
.faq {
  padding: 80px 0;
  background: #F4F7FF;
}

.faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-category {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.faq-category__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #1E4377 0%, #387CDD 100%);
  padding: 16px 24px;
  margin: -32px -32px 32px -32px;
  border-radius: 16px 16px 0 0;
  text-align: center;
}

/* アコーディオンスタイル */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-accordion__item {
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion__item:hover {
  border-color: #1E4377;
  box-shadow: 0 2px 8px rgba(30, 67, 119, 0.1);
}

.faq-accordion__question {
  width: 100%;
  background: #F8F9FA;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.faq-accordion__question:hover {
  background: #E8F2FF;
}

.faq-accordion__question[aria-expanded="true"] {
  background: #1E4377;
  color: #fff;
}

.faq-accordion__question[aria-expanded="true"] .faq-accordion__icon {
  color: #fff;
  transform: rotate(45deg);
}

.faq-accordion__question-text {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1E4377;
  flex: 1;
  margin-right: 16px;
  line-height: 1.4;
}

.faq-accordion__question[aria-expanded="true"] .faq-accordion__question-text {
  color: #fff;
}

.faq-accordion__icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1E4377;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(30, 67, 119, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #fff;
}

.faq-accordion__answer-content {
  padding: 0 24px 24px 24px;
  border-top: 1px solid #E9ECEF;
}

.faq-accordion__answer-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 20px 0 0 0;
}

/* CTA セクション */
.cta {
  padding: 80px 0;
  color: #fff;
  text-align: center;
  background-image: url(../../img/service/contact_banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background: linear-gradient(rgba(30, 67, 119, 0.6), rgba(30, 67, 119, .6)), url(../../img/service/contact_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta__title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.cta__title span{
  display: inline-block;
}

.cta__text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta__text span{
  display: inline-block;
}

.cta__button {
  display: inline-block;
  background: #E63946;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.cta__button:hover {
  background: #b92c38;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}

/*赤ボタン*/
.back__more_red {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #E63946;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 16px 32px 16px 64px;
  margin: 32px auto 0 auto;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(30, 67, 119, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  min-width: 200px;
  max-width: fit-content;
  width: auto;
}
.back__animate-item.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.back__more_red::after {
  content: '→';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 2px solid #fff;
  transition: transform 0.3s ease;
  margin-left: 32px;
}

/*.back__more:hover {
  background: #16325c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 67, 119, 0.3);
}*/
.back__more_red:hover::after {
  transform: translateX(8px);
  background: transparent;
  border-color: #fff;
}
/*赤ボタンEND*/


/* 他のサービス回遊エリア */
.other-services {
  padding: 100px 0;
  background: #F4F7FF;
  position: relative;
}

.other-services__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.other-services__subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #1E4377;
  margin: 16px 0 64px 0;
  line-height: 1.6;
}

.other-services__subtitle span{
  display: inline-block;
}

.other-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.other-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  background: #fff;
  min-height: 350px;
  display: block;
}

.other-service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.other-service-card__bgimg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.other-service-card:hover .other-service-card__bgimg {
  transform: scale(1.1);
}

.other-service-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: background 0.3s ease;
  z-index: 1;
}

.other-service-card:hover .other-service-card__overlay {
  background: rgba(0, 0, 0, 0.4);
}

.other-service-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  min-height: 350px;
}

.other-service-card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.other-service-card:hover .other-service-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.other-service-card__content h3 {
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
  margin: 0 0 12px 0;
  line-height: 1.3;
  transition: all 0.3s ease;
  height: 64px;
  align-content: center;
}

.other-service-card__content h3 span{
  display: inline-block;
}

.other-service-card:hover .other-service-card__content h3 {
  transform: translateY(-2px);
}

.other-service-card__en {
  display: inline-block;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 20px;
  padding: 6px 16px;
  margin: 0 0 20px 0;
  text-align: center;
  transition: all 0.3s ease;
}

.other-service-card__en--tax { background: #E63946; }
.other-service-card__en--accounting { background: #2E86AB; }
.other-service-card__en--cloud { background: #A23B72; }
.other-service-card__en--mas { background: #F18F01; }
.other-service-card__en--business { background: #4A7C59; }
.other-service-card__en--visa { background: #7209B7; }
.other-service-card__en--ma { background: #C73E1D; }

.other-service-card:hover .other-service-card__en {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.other-service-card__content p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 32px 0;
  transition: all 0.3s ease;
  height: 32px;
  align-content: center;
}

.other-service-card__content p span{
  display: inline-block;
}

.other-service-card:hover .other-service-card__content p {
  transform: translateY(-2px);
}

.other-service-card__arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #1E4377;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translate(60px, 60px);
  opacity: 0;
}

.other-service-card:hover .other-service-card__arrow {
  transform: translate(0, 0);
  opacity: 1;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.other-services__cta {
  text-align: center;
}

.other-services__link {
  display: inline-block;
  background: linear-gradient(135deg, #1E4377 0%, #387CDD 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(30, 67, 119, 0.3);
  position: relative;
  overflow: hidden;
}

.other-services__link::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: left 0.6s ease;
}

.other-services__link:hover::before {
  left: 100%;
}

.other-services__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 67, 119, 0.4);
}


.externallinks__icon {
  margin-right: 4px;
  max-width: 14px;
  align-content: center;
}
span.link-memo {
  color: #fff;
  position: absolute;
  bottom: 0;
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}


/* レスポンシブ対応 */
@media (max-width: 900px) {
  .tax-advisor-title-area {
    min-height: 180px;
  }
  
  .tax-advisor-title-whiteband {
    width: 95vw;
    min-height: 80px;
    transform: translateX(-25%);
    min-height: 180px;
  }
  
  .tax-advisor-title-blueband {
    width: 95vw;
    transform: translateX(25%);
  }
  
  .tax-advisor-title-bgmark {
    right: -22rem;
  }
  
  .tax-advisor-title-bgmark img {
    width: 45%;
  }
  
  .tax-advisor-title-texts {
    margin-left: 6vw;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  
  .tax-advisor-title-ja {
    font-size: 32px;
  }
  
  .tax-advisor-title-en {
    font-size: 18px;
  }
  
  .service-overview__content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    flex-wrap: wrap;
    flex-flow: column-reverse;
  }
  
  .service-overview__catchphrase {
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 28px 0;
  }
  .service-overview__text-area {
    width: auto;
}
  .service-overview__text {
    font-size: 1.1rem;
  }

  .service-overview__image {
    width: auto;
}
  .service-overview__image img {
    max-width: 500px;
  }

  /* 3つの姿勢 */
  .three-posture__grid {
    display: flex;
    flex-wrap: wrap;
}
  /* 3つの特徴 */
  .three-features {
    padding: 60px 0;
  }
  
  .three-features__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .feature-item {
    padding: 32px 24px;
  }
  
  .problem-solving-section {
    padding: 60px 0;
  }
  .problem-solving__lead {
    font-size: 1.05rem;
    margin: 0 auto 8px auto;
    padding: 0 8px;
  }
  .problem-categories {
    gap: 24px;
    margin-top: 16px;
  }
  .problem-category {
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .problem-category__title {
    font-size: 1.15rem;
    padding: 6px 12px;
    margin-bottom: 8px;
  }
  .problem-category__title-group {
    width: 70%;
}
  
  .problem-solving__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 8px;
    width: 100%;
  }
  
  .problem-item {
    padding: 24px 20px;
  }
  
  .problem-item__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  
  .problem-item__title {
    font-size: 1.2rem;
  }
  
  .problem-item__desc {
    font-size: 0.95rem;
  }
  .problem-item__deliverables {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
  
  .service-content__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    display: contents;
  }
  .service-detail-flex {
    gap: 16px;
}
  
  .service-detail-item,
  .option-detail-item {
    padding: 20px;
    margin-bottom: 16px;
    width: 100%;
  }
  
  .service-detail-title,
  .option-detail-title {
    font-size: 1.1rem;
  }
  
  .service-detail-desc,
  .option-detail-desc {
    font-size: 0.95rem;
  }

  .option-detail-flex {
    gap: 16px;
    flex-wrap: wrap;
}

.price-table-sub-container {
  flex-wrap: wrap;
}
table.price-table-sub {
  width: 100%;
}
.price-table td span{
  display: inline-block;
}
  
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .first-30days {
    padding: 60px 0;
  }
  
  .voice-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .subsection-title {
    font-size: 1rem;
  }

  .first-30days__item {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
}
  .first-30days__item_left {
    width: 100%;
}
.first-30days__item_right {
  width: 100%;
}
.triangle {
   transform: rotate(90deg);
}
.first-30days__answer-title {
  justify-content: center;
}

.first-30days__question {
  margin-top: 0;
}

}

@media (max-width: 600px) {
  .tax-advisor-title-blueband-text {
    font-size: 1rem;
    left: 3vw;
    padding-right: 48px;
    font-size: 0.9rem;
  }
  
  .tax-advisor-title-texts {
    margin-left: 7vw;
  }
  
  .tax-advisor-title-ja {
    font-size: 28px;
  }
  
  .tax-advisor-title-en {
    font-size: 16px;
  }
  
  .tax-advisor-title-bgmark {
    right: -16rem;
  }
  
  .tax-advisor-title-bgmark img {
    width: 55%;
    opacity: 0.5;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-overview__catchphrase {
    font-size: 1.6rem;
    margin: 0 0 24px 0;
  }
  
  .service-overview__text {
    font-size: 1rem;
    text-align: center;
  }
  
  .service-overview__image img {
    max-width: 360px;
  }
  
  .three-features {
    padding: 50px 0;
  }
  
  .three-features__grid {
    gap: 24px;
    margin-top: 32px;
  }
  
  .three-detail {
    padding: 0;
    padding-bottom: 80px;
}

  .feature-item {
    padding: 24px 20px;
  }
  
  .feature-number {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
  
  .feature-item__title {
    font-size: 1.2rem;
  }
  
  .feature-item__desc {
    font-size: 0.95rem;
  }
  
  .problem-solving__container {
    padding: 0 16px;
}

  .problem-solving-section {
    padding: 50px 0;
  }
  .problem-solving__lead {
    font-size: 1rem;
    margin: 0 auto 6px auto;
  }
  .problem-categories {
    gap: 20px;
  }
  .problem-category {
    padding: 16px;
  }

  .problem-category__title-group {
    width: 100%;
}


  .problem-category__title {
    font-size: 1.25rem;
    padding: 6px 10px;
  }
  
  .problem-solving__grid {
    margin-top: 8px;
    gap: 20px;
  }
  
  .problem-item {
    padding: 20px 16px;
  }
  
  .problem-item__icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .problem-item__title {
    font-size: 1.1rem;
  }
  
  .problem-item__desc {
    font-size: 0.9rem;
  }
  .problem-item__deliverables {
    font-size: 0.88rem;
  }
  
  a.problem-links {
    font-size: 0.9rem;
}

  .cta__title {
    font-size: 1.8rem;
  }
  
  .other-services {
    padding: 50px 0;
  }
  
  .other-services__grid {
    gap: 16px;
    margin-bottom: 40px;
  }
  
  .other-service-card {
    min-height: 280px;
  }
  
  .other-service-card__content {
    padding: 20px 16px;
    min-height: 280px;
  }
  
  .other-service-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }
  
  .other-service-card__content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .other-service-card__en {
    font-size: 0.85rem;
    padding: 3px 10px;
    margin-bottom: 12px;
  }
  
  .other-service-card__content p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  
  .other-services__subtitle {
    font-size: 1rem;
    margin: 8px 0 40px 0;
  }
  
  .other-services__link {
    font-size: 1rem;
    padding: 12px 28px;
  }
  
  .faq {
    padding: 50px 0;
  }
  
  .faq-categories {
    gap: 24px;
  }
  
  .faq-category {
    padding: 20px;
  }
  
  .faq-category__title {
    font-size: 1.2rem;
    padding: 10px 16px;
    margin: -20px -20px 20px -20px;
  }
  
  .faq-accordion__question {
    padding: 14px 16px;
  }
  
  .faq-accordion__question-text {
    font-size: 0.95rem;
    margin-right: 8px;
  }
  
  .faq-accordion__icon {
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
  }
  
  .faq-accordion__answer-content {
    padding: 0 16px 16px 16px;
  }
  
  .faq-accordion__answer-content p {
    font-size: 0.9rem;
    margin: 12px 0 0 0;
  }
  
  .cta__text {
    font-size: 1.1rem;
  }
  
  .cta__button {
    font-size: 1.1rem;
    padding: 16px 32px;
  }
  
  .voice-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .voice-card {
    padding: 24px;
  }
  

/* 料金セクション */
.pricing__category-title {
  font-size: 1.5rem;
}
.pricing__container {
  padding: 0px 16px;
}
.monthly_price {
  font-size: 1.1rem;
}
.settlement {
  font-size: 0.7rem;
  margin-right: 4px;
}
.settlement_price {
  font-size: 0.65rem;
}

  .pricing__table {
    font-size: 0.9rem;
  }
  
  .price-table th{
    padding: 12px 8px;
  }
  .price-table td {
    padding: 24px 8px;
  }
  
  .price-table td span{
    display: inline-block;
  }
  .price-table td .monthly{
    padding:0 16px
  }
  
  .other-services {
    padding: 60px 0;
  }
  
  .other-services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  
  .other-service-card {
    min-height: 300px;
  }
  
  .other-service-card__content {
    padding: 24px 20px;
    min-height: 300px;
  }
  
  .other-service-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0px;
  }
  
  .other-service-card__content h3 {
    font-size: 1.2rem;
  }
  
  .other-service-card__en {
    font-size: 0.9rem;
    padding: 4px 12px;
    margin-bottom: 16px;
  }
  
  .other-service-card__content p {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  
  .other-services__subtitle {
    font-size: 1rem;
    margin: 12px 0 48px 0;
  }
  
  .other-services__link {
    font-size: 1.1rem;
    padding: 14px 32px;
  }
  
  .faq {
    padding: 60px 0;
  }
  
  .faq-categories {
    gap: 32px;
  }
  
  .faq-category {
    padding: 24px;
  }
  
  .faq-category__title {
    font-size: 1.3rem;
    padding: 12px 20px;
    margin: -24px -24px 24px -24px;
  }
  
  .faq-accordion__question {
    padding: 16px 20px;
  }
  
  .faq-accordion__question-text {
    font-size: 1rem;
    margin-right: 12px;
  }
  
  .faq-accordion__icon {
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
  }
  
  .faq-accordion__answer-content {
    padding: 0 20px 20px 20px;
  }
  
  .faq-accordion__answer-content p {
    font-size: 0.95rem;
    margin: 16px 0 0 0;
  }

  .service-content {
    padding: 24px 0;
    padding-bottom: 80px;
}
.pricing {
  padding: 24px 0;
  padding-bottom: 80px;
}
.introduction-flow {
  padding: 0;
  padding-bottom: 80px;
}

/*フローセクション*/
.flow-steps {
  margin: 0 16px;
}
.flow-step__content p span{
  display: inline-block;
}

  /*30日間の歩み*/
  .first-30days__container {
    padding: 0 16px;
}
.first-30days {
  padding: 0px 0;
  padding-bottom: 64px;
}

.first-30days__lead {
  font-size: 1rem;
  line-height: 1.7;
}
.first-30days__item {
  padding: 16px;
}
.first-30days__question {
  margin: 16px 0;
}
.first-30days__number{
    font-size: 1.5rem;
}
.first-30days__question h3 {
  font-size: 1.1rem;
}

.first-30days__answer-title h4 {
  font-size: 1.5rem;
}
.first-30days__answer p {
  font-size: 1rem;
  line-height: 1.7rem;
  margin-top: 4px;
}
.triangle {
  margin: 8px;
}
.br-sp {
  display: block;
}

.customer-voice {
  padding: 24px 0;
  padding-bottom: 80px;
}
.tax-faq-section {
  padding: 24px 0 80px 0;
}

.tax-advisor-main {
  padding: 140px 0;
  padding-bottom: 0;
}

/*青ボタン*/
.back__more {
  font-size: 0.9rem;
 }
/*赤ボタン*/
.back__more_red {
 font-size: 0.9rem;
}

}

/*サービスセクション*/
.service-content__container {
  padding: 0 16px;
}
.service-detail-item, .option-detail-item {
  padding: 16px;
}

/* ========== Financial Consulting: Inline Pricing (moved from page) ========== */
.service-pricing-inline { margin-top: 24px; }
.service-pricing-inline .service-pricing-list { list-style: none; padding: 0; margin: 12px 0; display: grid; gap: 8px; }
.service-pricing-inline .service-pricing-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 12px 16px; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 10px; }
.service-pricing-inline .service-pricing-item__title { font-weight: 600; color: #111827; }
.service-pricing-inline .service-pricing-item__price { font-weight: 700; color: #2563eb; }
.service-pricing-inline .service-pricing-note { margin-top: 6px; font-size: 12px; color: #6b7280; }

/* Shogun no Hi price emphasis */
.special-program__title { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.shogun-price-badge { background: #E63946; color: #fff; padding: 4px 10px; border-radius: 9999px; font-weight: 700; font-size: 0.9rem; box-shadow: 0 4px 12px rgba(230,57,70,0.25); }
.shogun-price-inline { color: #E63946; font-weight: 800; background: rgba(230,57,70,0.08); padding: 0 6px; border-radius: 6px; }


/* 料金セクション追加スタイル（test.htmlスタイル） */
.pack-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.pack-card {
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 25px;
  position: relative;
  transition: all 0.3s ease;
  background: white;
}

.pack-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.pack-card.recommended {
  border-color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b6b;
  color: white;
  padding: 4px 15px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
}

.pack-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.pack-price {
  font-size: 2rem;
  color: #667eea;
  font-weight: bold;
  margin-bottom: 5px;
}

.pack-price span {
  font-size: 0.9rem;
  color: #666;
}

.pack-discount {
  background: #ff6b6b;
  color: white;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.pack-features {
  list-style: none;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.pack-features li {
  padding: 5px 0;
  color: #666;
}

.pack-features li::before {
  content: "✓ ";
  color: #667eea;
  font-weight: bold;
}

.pack-services-included {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.pack-services-included__title {
  color: #667eea;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.service-item {
  background: white;
  padding: 10px 15px;
  border-radius: 8px;
  border-left: 3px solid #667eea;
  font-size: 0.9rem;
}

.service-section {
  margin-bottom: 50px;
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
}

.service-title {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 8px;
  border-left: 3px solid #667eea;
}

.service-number {
  background: #667eea;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.options-section {
  margin-top: 20px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.options-title {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.simple-service {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.simple-price {
  font-size: 1.5rem;
  color: #667eea;
  font-weight: bold;
  margin: 15px 0;
}

.note-list {
  list-style: none;
  color: #666;
  font-size: 0.9rem;
  margin-top: 10px;
}

.note-list li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.note-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #999;
}

.price-highlight {
  color: #667eea;
  font-weight: bold;
}

.footer-notes {
  margin-top: 40px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

/* モバイル対応追加 */
@media (max-width: 768px) {
  .pack-cards {
    grid-template-columns: 1fr;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .pack-price {
    font-size: 1.8rem;
  }
  
  .service-section {
    padding: 20px;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
  
  .service-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .service-description {
    font-size: 0.9rem;
    padding: 12px 16px;
    margin-bottom: 20px;
  }
}

/* 担当会社セクション */
.company-info {
  padding: 80px 0;
  background: #f8f9fa;
}

.company-info__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.company-info__content {
  max-width: 800px;
  margin: 0 auto;
}

.company-info__name {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.company-info__description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.company-info__link {
  margin-top: 30px;
}

.company-link-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.company-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .company-info {
    padding: 60px 0;
  }
  
  .company-info__container {
    padding: 0 20px;
  }
  
  .company-info__name {
    font-size: 1.5rem;
  }
  
  .company-info__description {
    font-size: 1rem;
  }
  
  .company-link-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* スマートフォン対応 */
@media (max-width: 480px) {
  /* ビザ取得に必要なものセクション - スマートフォン */
  .visa-requirements {
    padding: 40px 0;
  }
  
  .visa-requirements__container {
    padding: 0 12px;
  }
  
  .visa-requirements__content {
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .visa-requirements__basic,
  .visa-requirements__business-scale {
    padding: 20px 16px;
    border-radius: 8px;
  }
  
  .visa-requirements__note {
    padding: 16px;
    font-size: 0.9rem;
  }
  
  .requirements-list li {
    padding: 10px 0;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }
  
  .subsection-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
}

/* 税務顧問ページ - サービス概要セクションのアニメーション */
.tax-advisor-page .service-overview__catchphrase:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .service-overview__catchphrase.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .service-overview__text:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .service-overview__text.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .service-overview__image:not(.animate) {
  opacity: 0;
  transform: translateX(50px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .service-overview__image.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .tax-advisor-page .service-overview__image:not(.animate) {
    transform: translateY(30px) scale(0.95);
  }
  
  .tax-advisor-page .service-overview__image.animate {
    transform: translateY(0) scale(1);
  }
}

/* レスポンシブ対応 - 課題解決セクション */
@media (max-width: 768px) {
  .tax-advisor-page .problem-category__title-group:not(.animate) {
    transform: translateY(30px);
  }
  
  .tax-advisor-page .problem-category__title-group.animate {
    transform: translateY(0);
  }
}

/* 税務顧問ページ - 課題解決セクションのアニメーション */
.tax-advisor-page .problem-solving-section .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .problem-solving-section .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .problem-solving__lead:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .problem-solving__lead.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .problem-category:not(.animate) {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .problem-category.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .problem-category__title-group:not(.animate) {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .problem-category__title-group.animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .problem-item:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .problem-item.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* レスポンシブ対応 - 課題解決セクション */
@media (max-width: 768px) {
  .tax-advisor-page .problem-category__title-group:not(.animate) {
    transform: translateY(30px);
  }
  
  .tax-advisor-page .problem-category__title-group.animate {
    transform: translateY(0);
  }
}

/* レスポンシブ対応 - 課題解決セクション */
@media (max-width: 768px) {
  .tax-advisor-page .problem-category__title-group:not(.animate) {
    transform: translateY(30px);
  }
  
  .tax-advisor-page .problem-category__title-group.animate {
    transform: translateY(0);
  }
}

/* 税務顧問ページ - 私たちの３つ特徴セクションのアニメーション */
.tax-advisor-page .three-detail .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .three-detail .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .detail-title:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .detail-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .posture-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .posture-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .features-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .features-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* レスポンシブ対応 - 私たちの３つ特徴セクション */
@media (max-width: 768px) {
  .tax-advisor-page .posture-item:not(.animate),
  .tax-advisor-page .features-item:not(.animate) {
    transform: translateY(30px) scale(0.98);
  }
  
  .tax-advisor-page .posture-item.animate,
  .tax-advisor-page .features-item.animate {
    transform: translateY(0) scale(1);
  }
}

/* 税務顧問ページ - サービス内容セクションのアニメーション */
.tax-advisor-page .service-content .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .service-content .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .subsection-title:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .subsection-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .service-detail-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .service-detail-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .option-detail-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .option-detail-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* レスポンシブ対応 - サービス内容セクション */
@media (max-width: 768px) {
  .tax-advisor-page .service-detail-item:not(.animate),
  .tax-advisor-page .option-detail-item:not(.animate) {
    transform: translateY(30px) scale(0.98);
  }
  
  .tax-advisor-page .service-detail-item.animate,
  .tax-advisor-page .option-detail-item.animate {
    transform: translateY(0) scale(1);
  }
}

/* 税務顧問ページ - 料金プランセクションのアニメーション */
.tax-advisor-page .pricing .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .pricing .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .pricing__category-title-container:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .pricing__category-title-container.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .pricing__table:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .pricing__table.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .pricing__sub-title:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .pricing__sub-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .price-table-sub:not(.animate) {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .price-table-sub.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* レスポンシブ対応 - 料金プランセクション */
@media (max-width: 768px) {
  .tax-advisor-page .pricing__category-title-container:not(.animate) {
    transform: translateY(30px);
  }
  
  .tax-advisor-page .pricing__category-title-container.animate {
    transform: translateY(0);
  }
  
  .tax-advisor-page .pricing__table:not(.animate),
  .tax-advisor-page .price-table-sub:not(.animate) {
    transform: translateY(30px) scale(0.98);
  }
  
  .tax-advisor-page .pricing__table.animate,
  .tax-advisor-page .price-table-sub.animate {
    transform: translateY(0) scale(1);
  }
}

/* 税務顧問ページ - 導入フローセクションのアニメーション */
.tax-advisor-page .introduction-flow .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .introduction-flow .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .flow-step:not(.animate) {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .flow-step.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* レスポンシブ対応 - 導入フローセクション */
@media (max-width: 768px) {
  .tax-advisor-page .flow-step:not(.animate) {
    transform: translateY(40px) scale(0.95);
  }
  
  .tax-advisor-page .flow-step.animate {
    transform: translateY(0) scale(1);
  }
}

/* 税務顧問ページ - 最初の30日体験記セクションのアニメーション */
.tax-advisor-page .first-30days .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .first-30days .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .first-30days__lead:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .first-30days__lead.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .first-30days__item:not(.animate) {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .first-30days__item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .first-30days__item_left:not(.animate) {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .first-30days__item_left.animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .triangle:not(.animate) {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .triangle.animate {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* 900px以下で三角を下向きに */
@media (max-width: 900px) {
  .tax-advisor-page .triangle:not(.animate) {
    transform: scale(0.5) rotate(90deg);
  }
  
  .tax-advisor-page .triangle.animate {
    transform: scale(1) rotate(90deg);
  }
}

.tax-advisor-page .first-30days__item_right:not(.animate) {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .first-30days__item_right.animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .first-30days__note:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .first-30days__note.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* レスポンシブ対応 - 最初の30日体験記セクション */
@media (max-width: 768px) {
  .tax-advisor-page .first-30days__item_left:not(.animate),
  .tax-advisor-page .first-30days__item_right:not(.animate) {
    transform: translateY(30px);
  }
  
  .tax-advisor-page .first-30days__item_left.animate,
  .tax-advisor-page .first-30days__item_right.animate {
    transform: translateY(0);
  }
}

/* 税務顧問ページ - お客様の声セクションのアニメーション */
.tax-advisor-page .customer-voice .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .customer-voice .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .tax-voice-card:not(.animate) {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .tax-voice-card.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .customer-voice .btn:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .customer-voice .btn.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* レスポンシブ対応 - お客様の声セクション */
@media (max-width: 768px) {
  .tax-advisor-page .tax-voice-card:not(.animate) {
    transform: translateY(40px) scale(0.95);
  }
  
  .tax-advisor-page .tax-voice-card.animate {
    transform: translateY(0) scale(1);
  }
}

/* 税務顧問ページ - よくある質問セクションのアニメーション */
.tax-advisor-page .tax-faq-section .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .tax-faq-section .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .tax-faq-sub:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .tax-faq-sub.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .tax-faq-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tax-advisor-page .tax-faq-item.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* レスポンシブ対応 - よくある質問セクション */
@media (max-width: 768px) {
  .tax-advisor-page .tax-faq-item:not(.animate) {
    transform: translateY(30px);
  }
  
  .tax-advisor-page .tax-faq-item.animate {
    transform: translateY(0);
  }
}

/* 事業承継ページ - サービス概要セクションのアニメーション */
.business-succession-page .service-overview__catchphrase:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .service-overview__catchphrase.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .service-overview__text:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .service-overview__text.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .service-overview__image:not(.animate) {
  opacity: 0;
  transform: translateX(50px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .service-overview__image.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* 事業承継ページ - 課題解決セクションのアニメーション */
.business-succession-page .problem-solving-section .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .problem-solving-section .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .problem-solving__lead:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .problem-solving__lead.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .problem-category:not(.animate) {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .problem-category.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .problem-category__title-group:not(.animate) {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .problem-category__title-group.animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .problem-item:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .problem-item.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* 事業承継ページ - 私たちの３つ特徴セクションのアニメーション */
.business-succession-page .three-detail .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .three-detail .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .detail-title:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .detail-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .posture-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .posture-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .features-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .features-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* 事業承継ページ - サービス内容セクションのアニメーション */
.business-succession-page .service-content .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .service-content .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .service-detail-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .service-detail-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* 事業承継ページ - サービス内容注意事項のアニメーション */
.business-succession-page .service-content__notes:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .service-content__notes.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* 事業承継ページ - 導入フローセクションのアニメーション */
.business-succession-page .introduction-flow .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .introduction-flow .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .flow-step:not(.animate) {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .flow-step.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* 事業承継ページ - 最初の30日体験記セクションのアニメーション */
.business-succession-page .first-30days .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .first-30days .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .first-30days__lead:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .first-30days__lead.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .first-30days__item:not(.animate) {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .first-30days__item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .first-30days__item_left:not(.animate) {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .first-30days__item_left.animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .triangle:not(.animate) {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .triangle.animate {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .first-30days__item_right:not(.animate) {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .first-30days__item_right.animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .first-30days__note:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.business-succession-page .first-30days__note.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* 900px以下で三角を下向きに（事業承継ページ） */
@media (max-width: 900px) {
  .business-succession-page .triangle:not(.animate) {
    transform: scale(0.5) rotate(90deg);
  }
  
  .business-succession-page .triangle.animate {
    transform: scale(1) rotate(90deg);
  }
}

/* レスポンシブ対応 - 事業承継ページ */
@media (max-width: 768px) {
  .business-succession-page .service-overview__image:not(.animate) {
    transform: translateY(30px) scale(0.95);
  }
  
  .business-succession-page .service-overview__image.animate {
    transform: translateY(0) scale(1);
  }
  
  .business-succession-page .problem-category__title-group:not(.animate) {
    transform: translateY(30px);
  }
  
  .business-succession-page .problem-category__title-group.animate {
    transform: translateY(0);
  }
  
  .business-succession-page .posture-item:not(.animate),
  .business-succession-page .features-item:not(.animate) {
    transform: translateY(30px) scale(0.98);
  }
  
  .business-succession-page .posture-item.animate,
  .business-succession-page .features-item.animate {
    transform: translateY(0) scale(1);
  }
  
  .business-succession-page .service-detail-item:not(.animate) {
    transform: translateY(30px) scale(0.98);
  }
  
  .business-succession-page .service-detail-item.animate {
    transform: translateY(0) scale(1);
  }
  
  .business-succession-page .flow-step:not(.animate) {
    transform: translateY(40px) scale(0.95);
  }
  
  .business-succession-page .flow-step.animate {
    transform: translateY(0) scale(1);
  }
  
  .business-succession-page .first-30days__item_left:not(.animate),
  .business-succession-page .first-30days__item_right:not(.animate) {
    transform: translateY(30px);
  }
  
  .business-succession-page .first-30days__item_left.animate,
  .business-succession-page .first-30days__item_right.animate {
    transform: translateY(0);
  }
}

/* ビザ支援ページ - サービス概要セクションのアニメーション */
.visa-support-page .service-overview__catchphrase:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .service-overview__catchphrase.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .service-overview__text:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .service-overview__text.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .service-overview__image:not(.animate) {
  opacity: 0;
  transform: scale(0.9) translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .service-overview__image.animate {
  opacity: 1;
  transform: scale(1) translateX(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ビザ支援ページ - 課題解決セクションのアニメーション */
.visa-support-page .problem-solving-section .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .problem-solving-section .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .problem-solving__lead:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .problem-solving__lead.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .problem-category:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .problem-category.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .problem-category__title-group:not(.animate) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .problem-category__title-group.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .problem-item:not(.animate) {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .problem-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ビザ支援ページ - 3つの特徴セクションのアニメーション */
.visa-support-page .three-detail .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .three-detail .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .detail-title:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .detail-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .posture-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .posture-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .features-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .features-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ビザ支援ページ - サービス内容セクションのアニメーション */
.visa-support-page .service-content .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .service-content .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .service-detail-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .service-detail-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ビザ支援ページ - ビザ要件セクションのアニメーション */
.visa-support-page .visa-requirements .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .visa-requirements .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .visa-requirements__basic:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .visa-requirements__basic.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .visa-requirements__business-scale:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .visa-requirements__business-scale.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .visa-requirements .subsection-title:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .visa-requirements .subsection-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .requirements-list:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .requirements-list.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ビザ支援ページ - 料金プランセクションのアニメーション */
.visa-support-page .pricing .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .pricing .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .pricing__category-title-container:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .pricing__category-title-container.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .pricing__table:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .pricing__table.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .pricing__sub-title:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .pricing__sub-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .price-table-sub-visa:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .price-table-sub-visa.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .pricing__sub p:not(.animate) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .pricing__sub p.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .pricing__note:not(.animate) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .pricing__note.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ビザ支援ページ - 最初の30日セクションのアニメーション */
.visa-support-page .first-30days .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .first-30days .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .first-30days__lead:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .first-30days__lead.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .first-30days__item:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .first-30days__item.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .first-30days__item_left:not(.animate) {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .first-30days__item_left.animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .first-30days__item_right:not(.animate) {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .first-30days__item_right.animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .triangle:not(.animate) {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .triangle.animate {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .first-30days__note:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .first-30days__note.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ビザ支援ページ - FAQセクションのアニメーション */
.visa-support-page .tax-faq-section .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .tax-faq-section .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .tax-faq-sub:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .tax-faq-sub.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .tax-faq-item:not(.animate) {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.visa-support-page .tax-faq-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* 900px以下での三角の回転対応（ビザ支援ページ） */
@media (max-width: 900px) {
  .visa-support-page .triangle:not(.animate) {
    transform: scale(0.5) rotate(90deg);
  }
  
  .visa-support-page .triangle.animate {
    transform: scale(1) rotate(90deg);
  }
}

/* レスポンシブ対応 - 最初の30日体験記セクション（ビザ支援ページ） */
@media (max-width: 768px) {
  .visa-support-page .first-30days__item_left:not(.animate),
  .visa-support-page .first-30days__item_right:not(.animate) {
    transform: translateY(30px);
  }
  
  .visa-support-page .first-30days__item_left.animate,
  .visa-support-page .first-30days__item_right.animate {
    transform: translateY(0);
  }
}

/* M&A支援ページ - サービス概要セクションのアニメーション */
.ma-support-page .service-overview__catchphrase:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .service-overview__catchphrase.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .service-overview__text:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .service-overview__text.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .service-overview__image:not(.animate) {
  opacity: 0;
  transform: scale(0.9) translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .service-overview__image.animate {
  opacity: 1;
  transform: scale(1) translateX(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* M&A支援ページ - 課題解決セクションのアニメーション */
.ma-support-page .problem-solving-section .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .problem-solving-section .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .problem-solving__lead:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .problem-solving__lead.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .problem-category:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .problem-category.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .problem-category__title-group:not(.animate) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .problem-category__title-group.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .problem-item:not(.animate) {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .problem-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* M&A支援ページ - 3つの特徴セクションのアニメーション */
.ma-support-page .three-detail .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .three-detail .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .detail-title:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .detail-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .features-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .features-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* M&A支援ページ - サービス内容セクションのアニメーション */
.ma-support-page .service-content .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .service-content .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .subsection-title:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .subsection-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .service-detail-item:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .service-detail-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* M&A支援ページ - 料金プランセクションのアニメーション */
.ma-support-page .pricing .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .pricing .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .pricing__category-title-container:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .pricing__category-title-container.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .pricing__table:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .pricing__table.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .price-table-ma__note:not(.animate) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .price-table-ma__note.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* M&A支援ページ - 導入フローセクションのアニメーション */
.ma-support-page .introduction-flow .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .introduction-flow .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .flow-step:not(.animate) {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .flow-step.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* M&A支援ページ - 最初の30日セクションのアニメーション */
.ma-support-page .first-30days .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .first-30days .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .first-30days__lead:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .first-30days__lead.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .first-30days__item:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .first-30days__item.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .first-30days__item_left:not(.animate) {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .first-30days__item_left.animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .first-30days__item_right:not(.animate) {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .first-30days__item_right.animate {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .triangle:not(.animate) {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .triangle.animate {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .first-30days__note:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .first-30days__note.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* M&A支援ページ - FAQセクションのアニメーション */
.ma-support-page .tax-faq-section .section-title:not(.animate) {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .tax-faq-section .section-title.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .tax-faq-sub:not(.animate) {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .tax-faq-sub.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .tax-faq-item:not(.animate) {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ma-support-page .tax-faq-item.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* 900px以下での三角の回転対応（M&A支援ページ） */
@media (max-width: 900px) {
  .ma-support-page .triangle:not(.animate) {
    transform: scale(0.5) rotate(90deg);
  }
  
  .ma-support-page .triangle.animate {
    transform: scale(1) rotate(90deg);
  }
}

/* レスポンシブ対応 - 最初の30日体験記セクション（M&A支援ページ） */
@media (max-width: 768px) {
  .ma-support-page .first-30days__item_left:not(.animate),
  .ma-support-page .first-30days__item_right:not(.animate) {
    transform: translateY(30px);
  }
  
  .ma-support-page .first-30days__item_left.animate,
  .ma-support-page .first-30days__item_right.animate {
    transform: translateY(0);
  }
}

/* =============================
   Financial Consulting (page)
   – Visual enhancements
   ============================= */
.financial-consulting-page .service-future .service-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.financial-consulting-page .service-future .service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F4F7FF;
  border: 1px solid #E1E8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}

.financial-consulting-page .service-future .service-card__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* グラフィカルなスケジュールタイムライン */
.service-roadmap {
  margin-top: 24px;
}

.roadmap-overview {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  background: #F8FAFC;
  padding: 16px;
  border-radius: 8px;
  border-left: 3px solid #1E4377;
}

/* タイムライングラフィック */
.roadmap-timeline-graphic {
  position: relative;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

/* プログレスライン */
.timeline-progress {
  position: absolute;
  left: 50px;
  top: 20px;
  bottom: 20px;
  width: 4px;
  z-index: 1;
}

.progress-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #E3F2FD 0%, #1976D2 50%, #4CAF50 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}

/* タイムラインアイテム */
.timeline-items {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  padding-left: 80px;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }
.timeline-item:nth-child(9) { animation-delay: 0.9s; }
.timeline-item:nth-child(10) { animation-delay: 1.0s; }

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

/* コンパクトアイテム */
.timeline-item.compact {
  min-height: 50px;
}

.timeline-item.compact .timeline-content {
  padding: 8px 12px;
}

.timeline-item.compact .timeline-content h4 {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.timeline-item.compact .timeline-content p {
  font-size: 0.75rem;
}

/* タイムラインマーカー */
.timeline-marker {
  position: absolute;
  left: -92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.timeline-marker.small {
  left: -88px;
}

.marker-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 3px solid #fff;
  transition: all 0.3s ease;
}

.timeline-marker.small .marker-icon {
  width: 32px;
  height: 32px;
}

/* フェーズ別カラー */
.marker-icon.contract { background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%); }
.marker-icon.preparation { background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%); }
.marker-icon.planning { background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%); }
.marker-icon.operation { background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%); }
.marker-icon.review { background: linear-gradient(135deg, #FF5722 0%, #D84315 100%); }
.marker-icon.future { background: linear-gradient(135deg, #607D8B 0%, #455A64 100%); }
.marker-icon.special { background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%); }
.marker-icon.completion { background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%); }

.marker-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.timeline-marker.small .marker-icon img {
  width: 14px;
  height: 14px;
}

.marker-month {
  background: #fff;
  color: #1E4377;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid #E1E8F5;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* タイムラインコンテンツ */
.timeline-content {
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(30, 67, 119, 0.08);
  border: 1px solid #E1E8F5;
  flex: 1;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 67, 119, 0.12);
}

.timeline-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E4377;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.timeline-content p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* ハイライト */
.timeline-item.highlight .timeline-content {
  background: linear-gradient(135deg, #FFF9C4 0%, #FFEB3B 10%, #FFF9C4 100%);
  border-color: #FFD54F;
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}

.timeline-item.highlight .timeline-content h4 {
  color: #F57F17;
}

/* 凡例 */
.roadmap-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  background: #F8FAFC;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #E1E8F5;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.legend-color.meetings {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.legend-color.budget {
  background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
}

/* ホバーエフェクト */
.timeline-item:hover .marker-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .roadmap-timeline-graphic {
    padding: 16px;
  }
  
  .timeline-progress {
    left: 40px;
  }
  
  .timeline-items {
    grid-template-columns: 1fr;
    padding-left: 70px;
    gap: 10px;
  }
  
  .timeline-marker {
    left: -82px;
  }
  
  .timeline-marker.small {
    left: -78px;
  }
  
  .marker-icon {
    width: 40px;
    height: 40px;
  }
  
  .timeline-marker.small .marker-icon {
    width: 28px;
    height: 28px;
  }
  
  .marker-icon img {
    width: 16px;
    height: 16px;
  }
  
  .timeline-marker.small .marker-icon img {
    width: 12px;
    height: 12px;
  }
  
  .timeline-content {
    padding: 10px 12px;
  }
  
  .timeline-content h4 {
    font-size: 0.85rem;
  }
  
  .timeline-content p {
    font-size: 0.75rem;
  }
  
  .roadmap-legend {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .timeline-progress {
    left: 30px;
  }
  
  .timeline-items {
    padding-left: 60px;
  }
  
  .timeline-marker {
    left: -72px;
  }
  
  .timeline-marker.small {
    left: -68px;
  }
  
  .marker-icon {
    width: 32px;
    height: 32px;
  }
  
  .timeline-marker.small .marker-icon {
    width: 24px;
    height: 24px;
  }
}

/* Utility: visually hidden (keep table for SR) */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
