@charset "UTF-8";
/* @include m.tpc {

} */
/* ============common
=============================================== */
html {
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 1.1;
}

ul,
ol {
  list-style-type: none;
}

.flex {
  display: flex;
}

.wrapper {
  max-width: 1180px;
  margin: 0 auto;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.tpc-br {
  display: none;
}
@media (max-width: 1000px) {
  .tpc-br {
    display: block;
  }
}

.tab-br {
  display: none;
}
@media (max-width: 768px) {
  .tab-br {
    display: block;
  }
}

.sspc-br {
  display: none;
}
@media (max-width: 440px) {
  .sspc-br {
    display: block;
  }
}

@media (max-width: 440px) {
  .non-sspc-br {
    display: none;
  }
}

/* フォント */
/* ============index.css
=============================================== */
/* ============共通
============================================== */
.h2-area {
  /* セクション全体の背景を黒 */
  padding: 30px 0 50px;
  text-align: center;
}

.section-title {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  letter-spacing: 5px;
  font-weight: normal;
}

.section-title::before,
.section-title::after {
  content: "/";
  position: absolute;
  top: 0;
  color: #E3497A;
  /* 赤系カラーに調整（お好みで） */
  font-size: 20px;
}

.section-title::before {
  left: -35px;
}

.section-title::after {
  right: -35px;
}

/* ============header
=============================================== */
#header {
  background-image: url(../image/top-all.png);
  background-size: cover;
  padding: 20px 0;
}
@media (max-width: 440px) {
  #header {
    background-position: 9% 0%;
  }
}
#header .logo {
  width: 100px;
  margin-left: 20px;
}
#header .logo img {
  width: 100%;
}
#header .top-title {
  margin: 55px 10% 50px auto;
  width: 350px;
  padding: 40px 0;
}
@media (max-width: 1000px) {
  #header .top-title {
    margin: 55px 8% 50px auto;
  }
}
@media (max-width: 440px) {
  #header .top-title {
    margin: 130px auto 45px auto;
  }
}
#header .top-title .on-title {
  font-size: 16px;
  color: #fff;
  transform: rotate(-15deg);
  display: inline-block;
  top: 12px;
  left: -10px;
  text-shadow: 1px 1px 1px rgba(42, 42, 42, 0.7960784314);
}
#header .top-title .on-title span {
  color: #e3497a;
  font-size: 18px;
}
#header .top-title h1 {
  font-size: 32px;
  font-weight: bold;
  background-image: linear-gradient(7deg, #E3497A 0%, #E3497A 56%, #fff 65%, #E3497A 74%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
}
#header .top-title h2 {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 1px rgba(42, 42, 42, 0.7960784314);
}
#header .top-title h2 span {
  color: #E3497A;
}
@media (max-width: 440px) {
  #header .top-title h2 {
    margin-bottom: 75px;
  }
}
#header .top-title .line-text {
  padding: 60px 0 20px;
}
#header .top-title .line-text p {
  color: #fff;
  border-bottom: 2px solid #E3497A;
  text-shadow: 1px 1px 1px rgba(42, 42, 42, 0.7960784314);
}

/* ============section1
=============================================== */
#section1 {
  background-color: #030303;
  padding: 35px 0;
}
#section1 .sec1-inner {
  display: flex;
  width: 90%;
  margin: 0 auto;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
#section1 .sec1-inner .sec1-left {
  width: 41%;
  position: relative;
}
#section1 .sec1-inner .sec1-left .sec1-main-img {
  width: 100%;
}
#section1 .sec1-inner .sec1-left .absolute {
  width: 27%;
  top: -5px;
  left: -5px;
}
#section1 .sec1-inner .sec1-right {
  width: 43%;
  margin: 15px 0;
}
#section1 .sec1-inner .sec1-right p {
  color: #fff;
}
#section1 .sec1-inner .sec1-right .icon-list {
  list-style: none;
  padding: 0;
  margin: 15px auto;
}
#section1 .sec1-inner .sec1-right .icon-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 4px;
  color: #fff;
  border-bottom: 1px solid #E3497A;
}
#section1 .sec1-inner .sec1-right .icon-list li img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
@media (max-width: 768px) {
  #section1 .sec1-inner {
    flex-direction: column;
  }
  #section1 .sec1-inner .sec1-left,
#section1 .sec1-inner .sec1-right {
    width: 90%;
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
  }
  #section1 .sec1-inner .sec1-right p,
#section1 .sec1-inner .sec1-right .icon-list li {
    text-align: left;
    font-size: 15px;
  }
}
@media (max-width: 440px) {
  #section1 .sec1-inner {
    width: 94%;
  }
}

/* ============section2
=============================================== */
#section2 {
  background-color: #030303;
  padding: 35px 0;
}
#section2 .sec2-inner {
  width: 95%;
  margin: 0 auto;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
#section2 .sec2-inner .sec2-item {
  width: 29%;
  min-width: 300px;
  margin-bottom: 25px;
  padding: 0 10px;
}
#section2 .sec2-inner .sec2-item img {
  width: 100%;
}
#section2 .sec2-inner .sec2-item h3 {
  color: #fff;
  text-align: center;
  padding: 12px 0 6px;
  /* border-bottom: 1px solid #E3497A; */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}
#section2 .sec2-inner .sec2-item p {
  color: #fff;
  padding: 6px 0 12px;
  font-size: 15px;
}

/* ============section3
=============================================== */
#section3 {
  display: none;
  padding: 35px 0;
}
#section3 .h2-area .section-title {
  color: #000;
}
#section3 .sec3-inner {
  width: 90%;
  justify-content: space-evenly;
  margin: 0 auto 45px;
}
#section3 .sec3-inner .sec3-item {
  width: 27%;
}
#section3 .sec3-inner .sec3-item .absolute {
  width: 33%;
  bottom: -5px;
  right: -5px;
}

/* ============section4
=============================================== */
#section4 {
  position: relative;
  background: linear-gradient(to bottom, #3FBDC5, #1E5B5F);
  color: #fff;
  padding: 35px 0;
  overflow: hidden;
}
#section4 .h2-area {
  padding: 20px 0 0;
}
#section4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: url("../image/sec4-bg1.png") no-repeat;
  background-size: contain;
  z-index: 1;
}
#section4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -5px;
  width: 100px;
  height: 100px;
  background: url("../image/sec4-bg2.png") no-repeat;
  background-size: contain;
  z-index: 1;
}
#section4 .sec4-inner {
  width: 90%;
  margin: 0px auto 20px;
}
@media (max-width: 768px) {
  #section4 .sec4-inner {
    margin: 0 auto;
  }
}
#section4 .sec4-inner .sec4-item,
#section4 .sec4-inner .sec4-item2,
#section4 .sec4-inner .sec4-item3 {
  justify-content: space-evenly;
  margin: 45px auto;
  align-items: center;
}
#section4 .sec4-inner .sec4-item .sec4-text,
#section4 .sec4-inner .sec4-item2 .sec4-text,
#section4 .sec4-inner .sec4-item3 .sec4-text {
  width: 40%;
}
#section4 .sec4-inner .sec4-item .sec4-text h3,
#section4 .sec4-inner .sec4-item2 .sec4-text h3,
#section4 .sec4-inner .sec4-item3 .sec4-text h3 {
  font-size: 1.35rem;
  border-bottom: 2px solid #E3497A;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
#section4 .sec4-inner .sec4-item .sec4-img,
#section4 .sec4-inner .sec4-item2 .sec4-img,
#section4 .sec4-inner .sec4-item3 .sec4-img {
  width: 40%;
}
#section4 .sec4-inner .sec4-item {
  margin: 20px auto;
}
#section4 .sec4-inner .sec4-item2 {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  #section4 .sec4-inner .sec4-item,
#section4 .sec4-inner .sec4-item2,
#section4 .sec4-inner .sec4-item3 {
    flex-direction: column-reverse;
  }
  #section4 .sec4-inner .sec4-item .sec4-text,
#section4 .sec4-inner .sec4-item .sec4-img,
#section4 .sec4-inner .sec4-item2 .sec4-text,
#section4 .sec4-inner .sec4-item2 .sec4-img,
#section4 .sec4-inner .sec4-item3 .sec4-text,
#section4 .sec4-inner .sec4-item3 .sec4-img {
    padding-top: 25px;
    width: 91%;
    margin: 0 auto;
    line-height: 1.8rem;
  }
}

/* ============app-section
=============================================== */
#app-section {
  background-color: #f6f6f6;
  padding: 35px 0;
  /* ロゴを並べるエリア */
  /* 個別のロゴアイテム */
  /* ロゴ画像自体 */
  /* 事務所紹介テキストエリア */
  /* メインメッセージ (提携情報) */
  /* サブメッセージ (強み) */
  /* モバイル対応 */
}
#app-section .h2-area .section-title {
  color: #000;
}
#app-section .partner-logos {
  display: flex;
  justify-content: center; /* ロゴを中央に配置 */
  align-items: center;
  gap: 60px; /* ロゴ間のスペース */
  margin-top: 30px;
  margin-bottom: 30px; /* メッセージとの間のスペース */
}
#app-section .logo-item {
  width: 160px; /* ロゴ表示エリアの幅を固定 (必要に応じて調整) */
  height: auto;
  /* ロゴが目立ちすぎないよう、白背景で囲む場合は border や background を追加 */
}
#app-section .logo-item img {
  max-width: 100%;
  height: auto;
  /* ロゴの色が濃い場合は、少し透明度を下げても良い */
  /* opacity: 0.8; */
}
#app-section .partner-text {
  text-align: center;
  max-width: 800px; /* テキストの読みやすさのため幅を制限 */
  margin: 0 auto;
  padding: 20px 0;
}
#app-section .partner-text .main-message {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
#app-section .partner-text .sub-message {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 600px) {
  #app-section .partner-logos {
    gap: 35px;
    /* ロゴが小さい場合は、ここでの幅を調整 */
  }
  #app-section .logo-item {
    width: 110px;
  }
  #app-section .partner-text .main-message {
    font-size: 1.2rem;
  }
  #app-section .partner-text .sub-message {
    font-size: 1rem;
  }
}

/* ============section5
=============================================== */
#section5 {
  display: none;
  background-color: #030303;
  padding: 35px 10px;
}
#section5 h3 {
  color: #fff;
  text-align: center;
  padding: 10px 10px 45px;
}
@media (max-width: 440px) {
  #section5 h3 {
    font-size: 16px;
  }
}
#section5 .sec5-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
#section5 .sec5-inner .liver-item {
  flex: 1 1 calc(28% - 24px);
  max-width: calc(28% - 24px);
  min-width: 220px;
  margin: 20px auto;
  position: relative;
}
#section5 .sec5-inner .liver-item img {
  width: 100%;
  height: auto;
  display: block;
}
#section5 .sec5-inner .liver-item a {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 34%;
}
@media (max-width: 600px) {
  #section5 .sec5-inner .liver-item {
    flex: 1 1 calc(49% - 24px);
    max-width: calc(49% - 24px);
    min-width: 160px;
  }
}
@media (max-width: 440px) {
  #section5 .sec5-inner .liver-item {
    flex: 1 1 calc(49% - 24px);
    max-width: calc(49% - 24px);
    min-width: calc(49% - 24px);
  }
}
#section5 .coming-soon-slider {
  overflow: hidden;
  width: 100%;
  margin: 40px auto;
  position: relative;
}
#section5 .coming-soon-slider .slider-track {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scrollLoop 200s linear infinite;
          animation: scrollLoop 200s linear infinite;
}
#section5 .coming-soon-slider .slider-track::after {
  content: "";
  display: flex;
}
#section5 .coming-soon-slider .slider-track::after {
  content: attr(data-content);
}
#section5 .coming-soon-slider .slider-item {
  flex: 0 0 150px;
  margin: 0 10px;
}
#section5 .coming-soon-slider .slider-item img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 440px) {
  #section5 .coming-soon-slider .slider-item {
    flex: 0 0 90px;
  }
}
@-webkit-keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============section6
=============================================== */
#section6 {
  padding: 35px 0;
}
#section6 .h2-area .section-title {
  color: #000;
}
#section6 .sec6-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
#section6 .sec6-inner .sec6-item {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex: 1 1 calc(25% - 24px);
  max-width: calc(25% - 24px);
  min-width: 260px;
  text-align: center;
}
#section6 .sec6-inner .sec6-item img {
  width: 100%;
  height: auto;
}
#section6 .sec6-inner .sec6-item h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}
#section6 .sec6-inner .sec6-item p {
  padding: 0 10px 10px;
  font-size: 14px;
}
@media (max-width: 768px) {
  #section6 .sec6-inner .sec6-item {
    padding: 0 10px;
    flex: 1 1 calc(45% - 24px);
    max-width: calc(45% - 24px);
  }
}
@media (max-width: 440px) {
  #section6 .sec6-inner .sec6-item {
    flex: 1 1 75%;
    max-width: 70%;
    padding-bottom: 25px;
  }
}

/* ============section7
=============================================== */
#section7 .flex {
  display: flex;
  flex-wrap: wrap;
}
#section7 .flex img {
  width: 50%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#section7 .flex .sec7-right {
  width: 50%;
  background: linear-gradient(135deg, #3FBDC5, #1E5B5F);
  color: #fff;
  text-shadow: 1px 1px 1px rgba(42, 42, 42, 0.7960784314);
  display: flex;
  align-items: center;
}
#section7 .flex .sec7-right .sec7-text-area {
  padding-left: 40px;
  margin: 10% auto;
}
#section7 .flex .sec7-right .sec7-text-area p {
  padding: 10px 0 4px;
  font-size: 14px;
}
#section7 .flex .sec7-right .sec7-text-area h2 {
  padding: 4px 0;
  font-size: 24px;
}
#section7 .flex .sec7-right .sec7-text-area h2 .h2-span {
  font-size: 20px;
}
#section7 .flex .sec7-right .sec7-text-area h3 {
  padding: 4px 0 40px;
  font-size: 16px;
}
#section7 .flex .sec7-right .sec7-text-area .line-btn {
  border-bottom: 1px solid #E3497A;
  margin-left: 10px;
}
#section7 .flex .sec7-right .sec7-text-area .line-btn a {
  color: #fff;
  padding: 15px 0 10px;
  display: inline-block;
}
@media (max-width: 768px) {
  #section7 .flex {
    flex-direction: column;
  }
  #section7 .flex img {
    width: 100%;
  }
  #section7 .flex .sec7-right {
    width: 100%;
    padding: 30px 20px;
  }
  #section7 .flex .sec7-right .sec7-text-area {
    padding-left: 0;
    margin: 0 auto;
  }
  #section7 .flex .sec7-right .sec7-text-area p,
#section7 .flex .sec7-right .sec7-text-area h2,
#section7 .flex .sec7-right .sec7-text-area h3 {
    padding: 8px 0;
  }
  #section7 .flex .sec7-right .sec7-text-area .line-btn {
    margin: 20px auto 0;
  }
}

/* ============section8
=============================================== */
#section8 {
  padding: 40px 0 60px;
  max-width: 700px;
  margin: 0 auto;
  font-family: sans-serif;
  color: #333;
}
#section8 .h2-area .section-title {
  color: #000;
}
#section8 .faq-item {
  border-bottom: 1px solid #E3497A;
  padding: 10px 20px;
}
@media (max-width: 1000px) {
  #section8 .faq-item {
    width: 96%;
    margin: 0 auto;
    padding: 10px 30px;
  }
}
@media (max-width: 440px) {
  #section8 .faq-item {
    padding: 10px 13px;
    font-size: 14px;
  }
}
#section8 .faq-question {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #333;
}
#section8 .faq-question .arrow {
  color: #E3497A;
  transition: transform 0.3s;
}
#section8 .faq-question.active .arrow {
  transform: rotate(180deg);
}
@media (max-width: 440px) {
  #section8 .faq-question {
    font-size: 15px;
  }
}
#section8 .faq-answer {
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.6;
  display: none;
  color: #555;
}

/* ============section9
=============================================== */
#section9 {
  background-color: #000;
  position: relative;
  padding: 40px 0 0;
  overflow: hidden;
}
@media (max-width: 1000px) {
  #section9 {
    padding: 40px 0 0;
  }
}
#section9::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: url("../image/sec9-bg1.png") no-repeat;
  background-size: contain;
  z-index: 1;
}
#section9::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -5px;
  width: 100px;
  height: 100px;
  background: url("../image/sec9-bg2.png") no-repeat;
  background-size: contain;
  z-index: 1;
}
#section9 .sec9-inner {
  width: 90%;
  margin: 0 auto;
  justify-content: center;
  padding: 0 20px;
}
@media (max-width: 1000px) {
  #section9 .sec9-inner {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  #section9 .sec9-inner {
    flex-direction: column;
  }
}
#section9 .sec9-inner .sec9-text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 46%;
  color: #fff;
  padding: 0 20px;
}
@media (max-width: 1000px) {
  #section9 .sec9-inner .sec9-text-area {
    width: 70%;
    padding: 0 5px;
  }
}
@media (max-width: 768px) {
  #section9 .sec9-inner .sec9-text-area {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 440px) {
  #section9 .sec9-inner .sec9-text-area {
    padding: 0;
    width: 87%;
  }
}
#section9 .sec9-inner .sec9-text-area p {
  line-height: 1.7;
  padding-bottom: 25px;
  letter-spacing: 1.3px;
}
@media (max-width: 1000px) {
  #section9 .sec9-inner .sec9-text-area p {
    line-height: 1.4;
    letter-spacing: 1.1px;
    font-size: 15px;
  }
}
@media (max-width: 440px) {
  #section9 .sec9-inner .sec9-text-area p {
    line-height: 1.3;
    font-size: 14px;
  }
}
#section9 .sec9-inner .sec9-text-area a {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}
#section9 .sec9-inner img {
  width: 23%;
  height: auto;
}
@media (max-width: 768px) {
  #section9 .sec9-inner img {
    width: 35%;
    margin: 0 20% 0 auto;
  }
}

/* ============footer
=============================================== */
footer .footer-area {
  justify-content: center;
  padding: 20px;
}
footer .footer-area img {
  width: 15%;
  min-width: 100px;
}
footer .copy {
  display: flex;
  justify-content: center;
  padding: 20px 0 5px;
}

/* 下からふわっ fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s ease;
}

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

/* 右からシュッ slide-in-right */
/* .slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.2s ease;
    max-width: 100%;
    box-sizing: border-box;
  }
  .slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
  } */
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  margin-left: 30px;
  transition: all 0.9s ease;
}

.slide-in-right.animated {
  opacity: 1;
  margin-left: 0;
  transform: translateX(0);
}

/* キラッと光る shine */
.shine {
  position: relative;
  overflow: hidden;
}

.shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
  transform: skewX(-20deg);
}

.shine.animated::before {
  -webkit-animation: shine 1.5s ease-in-out forwards;
          animation: shine 1.5s ease-in-out forwards;
}

@-webkit-keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
/* 線が左から出てくる underline-animate */
.underline-animate {
  background: linear-gradient(transparent 50%, #FBBF24 50%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 1s ease;
}

.underline-animate.animated {
  background-size: 100% 100%;
}

/*  文章が1行ずつ浮かび上がる text-float */
.text-float {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease;
}

.text-float.animated {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .fade-up {
    transform: translateY(20px);
    transition: all 1.1s ease;
  }
  .slide-in-right {
    transform: translateX(6px);
    transition: all 1.2s ease;
  }
  .text-float {
    transform: translateY(15px);
    transition: all 0.9s ease;
  }
  .shine::before {
    width: 80%;
  }
  .underline-animate {
    background-size: 0% 100%;
  }
}
/* ==================================== */
/* スクロールアニメーション用 アンダーラインCSS */
/* ==================================== */
/* 1. アニメーションを適用する要素の基本スタイル */
.js-underline-trigger {
  /* 擬似要素を配置するために position: relative が必須 */
  position: relative;
  /* アニメーション中は透明にしておく */
  opacity: 0;
  /* スムーズに出現させるためのトランジション */
  transition: opacity 1.2s ease-out;
  display: inline-block; /* 擬似要素がテキストの下にぴったり合うように調整 */
}

/* 2. アンダーラインの定義（初期状態：非表示） */
.js-underline-trigger::after {
  content: "";
  position: absolute;
  bottom: -2px; /* テキストからの距離 */
  left: 0;
  width: 0; /* 初期状態では幅をゼロにして隠しておく */
  height: 1px; /* アンダーラインの太さ */
  background-color: #E3497A; /* アンダーラインの色 (適宜変更してください) */
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* 幅が広がるアニメーション */
}

/* 3. アニメーション実行時（is-activeが付与された状態） */
.js-underline-trigger.is-active {
  opacity: 1; /* フェードインで出現 */
}

.js-underline-trigger.is-active::after {
  width: 100%; /* 幅を100%にしてアンダーラインを表示 */
}
/*# sourceMappingURL=style.css.map */