@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@400;500&family=Poppins:wght@400;500;600;700&display=swap");
#header {
  transition: transform 0.1s;
}

#header.down {
  transform: translateY(100%);
}

main {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-common__title {
  font-size: 5rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  position: relative;
  font-family: "Poppins", san-serif;
}
@media screen and (max-width: 420px) {
  .section-common__title {
    font-size: 3.5rem;
  }
}
.section-common__title span {
  font-size: 2.6rem;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
}
@media screen and (max-width: 420px) {
  .section-common__title span {
    font-size: 1.7rem;
  }
}

.mv {
  padding: 200px 0 0;
  margin-bottom: 140px;
  position: relative;
}
@media screen and (max-width: 420px) {
  .mv {
    padding: 80px 0 0;
    margin-bottom: 40px;
  }
}
.mv::before {
  content: "";
  display: block;
  width: 788px;
  height: 488px;
  background: url("../img/top/mv-text.png") no-repeat center top/cover;
  position: absolute;
  bottom: 0;
  right: 40px;
  z-index: -1;
}
@media screen and (max-width: 420px) {
  .mv::before {
    width: 324px;
    height: 200px;
    right: 20px;
    bottom: 50px;
  }
}
.mv .mv-contaienr {
  max-width: 1230px;
  margin: 0 auto;
  position: relative;
  padding: 0 15px;
}
.mv .mv-contaienr h2 {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
@media screen and (max-width: 420px) {
  .mv .mv-contaienr h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
}
.mv p {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 420px) {
  .mv p {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.mv figure {
  width: 362px;
  margin-bottom: 40px;
}
@media screen and (max-width: 420px) {
  .mv figure {
    width: 255px;
    margin-bottom: 200px;
  }
}
.mv ul {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
@media screen and (max-width: 420px) {
  .mv ul {
    margin-bottom: 10px;
  }
}
.mv ul li {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #8996b1;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 420px) {
  .mv ul li {
    font-size: 1.4rem;
  }
}
.mv ul li::before {
  content: "";
  display: block;
  width: 15px;
  height: 14px;
  background: url("../img/top/icon-check-gray.svg") no-repeat center top/cover;
}
.mv .mv-btns {
  display: flex;
  gap: 14px;
}
.mv .mv-btns .common__btn {
  margin: 0;
}
.mv #lineAnim {
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 420px) {
  .mv #lineAnim {
    top: -9%;
  }
}

/* セクション */
.solution {
  padding: 70px 10px;
  background: #f6f7f9; /* ★直接指定: var(--bg) → #f7f9fc */
  width: 95%;
  margin: 0 auto 90px;
  border-radius: 40px;
  position: relative;
}
@media screen and (max-width: 420px) {
  .solution {
    width: 100%;
    padding: 30px 10px 60px;
    margin: 0 auto 70px;
  }
}
.solution::before {
  content: "";
  position: absolute;
  bottom: -20px;
  transform: translateX(-50%);
  left: 50%;
  width: 19px;
  height: 42px;
  background: url("../img/top/icon-arrow.svg") no-repeat center top/cover;
}

.solution-wrap {
  max-width: 1080px; /* ★直接指定: var(--maxw) → 1080px */
  margin-inline: auto;
}

/* 見出し */
.solution-head {
  text-align: center;
  margin-bottom: 32px;
}

.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 45px;
  margin-bottom: 12px;
}
@media screen and (max-width: 420px) {
  .solution-icon {
    width: 31px;
    height: 36px;
  }
}

.solution-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 420px) {
  .solution-title {
    font-size: 2rem;
  }
}

.solution-title .accent {
  color: #005ad2;
}

.solution-lead {
  color: #4d4d4d; /* ★直接指定: var(--muted) → #667085 */
  font-size: 1.6rem;
  margin-top: 10px;
  line-height: 1.8;
}
@media screen and (max-width: 420px) {
  .solution-lead {
    font-size: 1.5rem;
  }
}

/* グリッド */
.solution-grid {
  display: grid;
  gap: 40px; /* ★直接指定: var(--space) → 28px */
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 420px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* カード */
.solution-card {
  position: relative;
  text-align: center;
  padding-top: 30px;
  min-height: 210px;
  background: url("../img/top/solution-deco.png") no-repeat;
  background-position: top;
  background-size: 256px 210px;
}
@media screen and (max-width: 420px) {
  .solution-card {
    background-size: 147px 127px;
    min-height: 127px;
    padding-top: 20px;
  }
}

/* アイコン（ダミー） */
.card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}

.card-icon img {
  height: 33px;
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 420px) {
  .card-icon img {
    height: 30px;
  }
}

/* タイトル＆本文 */
.card-title {
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.3;
  margin: 2px 0 8px;
}
@media screen and (max-width: 420px) {
  .card-title {
    font-size: 1.7rem;
  }
}

.card-text {
  font-size: 1.5rem;
  color: #4d4d4d; /* ★直接指定 */
  line-height: 1.5333333333;
}
@media screen and (max-width: 420px) {
  .card-text {
    font-size: 1.4rem;
    text-align: left;
    padding: 0 10px;
  }
}

/* 引用風の見出し */
.quote {
  font-reason-settings: "palt";
}

/* セクション */
.reason {
  position: relative;
  margin-bottom: 80px;
  /* グリッド */
  /* カード */
  /* アイコン */
  /* 本文 */
}
@media screen and (max-width: 420px) {
  .reason {
    padding: 0 14px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 780px) {
	#mv_new .inner .txt .batch{
		width:66%;
	}
}

/*.reason h2 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 420px) {
  .reason h2 {
    font-size: 2rem;
  }
}
.reason h2::before {
  content: "";
  display: block;
  width: 56.7rem;
  height: 7.8rem;
  background: url("../img/top/title-reason.png") no-repeat center top/cover;
  margin: 0 auto;
}
@media screen and (max-width: 420px) {
  .reason h2::before {
    width: 320px;
    height: 50px;
  }
}*/
.reason .container {
  max-width: 1230px; /* ★ 直接指定 */
  margin: 0 auto;
}
.reason .reason-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ★ デフォは1列 */
  gap: 24px; /* px 指定 */
}
@media screen and (max-width: 420px) {
  .reason .reason-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
  }
}
.reason .reason-card {
  background: #ffffff; /* ★ 直接指定 */
  border-radius: 10px; /* px 指定 */
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.05); /* 影はrgba使用可 */
  padding: 18px 55px; /* px 指定 */
  display: flex;
  align-items: center;
  min-height: 220px;
  position: relative;
}
@media screen and (max-width: 420px) {
  .reason .reason-card {
    padding: 20px;
    min-height: auto;
  }
}
.reason .reason-card:first-child .reason-icon img {
  height: 120px;
}
@media screen and (max-width: 420px) {
  .reason .reason-card:first-child .reason-icon img {
    height: 66px;
  }
}
@media screen and (max-width: 420px) {
  .reason .reason-card:nth-child(2) .reason-icon {
    top: 17%;
  }
}
.reason .reason-card:nth-child(2) .reason-icon img {
  height: 65px;
}
@media screen and (max-width: 420px) {
  .reason .reason-card:nth-child(2) .reason-icon img {
    height: 44px;
  }
}
@media screen and (max-width: 420px) {
  .reason .reason-card:nth-child(3) .reason-icon {
    top: 16%;
  }
}
.reason .reason-card:nth-child(3) .reason-icon img {
  height: 65px;
}
@media screen and (max-width: 420px) {
  .reason .reason-card:nth-child(3) .reason-icon img {
    height: 42px;
  }
}
@media screen and (max-width: 420px) {
  .reason .reason-card:nth-child(4) .reason-icon {
    top: 14%;
  }
}
.reason .reason-card:nth-child(4) .reason-icon img {
  height: 88px;
}
@media screen and (max-width: 420px) {
  .reason .reason-card:nth-child(4) .reason-icon img {
    height: 56px;
  }
}
@media screen and (max-width: 420px) {
  .reason .reason-card:nth-child(5) .reason-icon {
    top: 14%;
  }
}
.reason .reason-card:nth-child(5) .reason-icon img {
  height: 94px;
}
@media screen and (max-width: 420px) {
  .reason .reason-card:nth-child(5) .reason-icon img {
    height: 60px;
  }
}
@media screen and (max-width: 420px) {
  .reason .reason-card:nth-child(6) .reason-icon {
    top: 13%;
  }
}
.reason .reason-card:nth-child(6) .reason-icon img {
  height: 100px;
}
@media screen and (max-width: 420px) {
  .reason .reason-card:nth-child(6) .reason-icon img {
    height: 60px;
  }
}
.reason .reason-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 40px;
}
@media screen and (max-width: 420px) {
  .reason .reason-icon {
    position: absolute;
    top: 8%;
    right: 15%;
    margin: 0;
    width: auto;
    height: auto;
  }
}
.reason .reason-icon img {
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.reason .reason-no {
  color: #005ad2; /* ★ アクセントを直接指定 */
  font-size: 1.4rem; /* px 指定 */
  font-weight: 700;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 420px) {
  .reason .reason-no {
    font-size: 1.2rem;
  }
}
.reason .reason-title {
  font-size: 25px; /* ★ px 指定 */
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 6px 0;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 420px) {
  .reason .reason-title {
    font-size: 1.8rem;
    /*height: 47px;*/
	  height:auto;
	  min-height:65px;
  }
}
.reason .reason-text {
  font-size: 1.5rem; /* ★ px 指定 */
  color: #4d4d4d; /* ★ 直接指定（補助テキスト） */
  margin: 0;
}
@media screen and (max-width: 420px) {
  .reason .reason-text {
    font-size: 1.4rem;
  }
}
.reason .bottom-text {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-top: 40px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 420px) {
  .reason .bottom-text {
    font-size: 2rem;
  }
}

/* セクション全体 */
.services {
  margin-bottom: 140px;
  position: relative;
  /* ★ネスト: グリッド設定を内包 & メディアクエリも内側に */
  /* 下部メッセージ */
}
@media screen and (max-width: 420px) {
  .services {
    padding: 0 14px;
    margin-bottom: 80px;
  }
}
.services__container {
  max-width: 1250px;
  margin: 0 auto;
}
.services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 42px;
}
.services__note {
  text-align: center;
  margin: 60px 0 0 0;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 420px) {
  .services__note {
    font-size: 2rem;
  }
}
.services__note .accent {
  color: #2f6fff;
}

/* 各サービスカード */
.service {
  position: relative;
  padding: 0;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  width: 30.4%;
  /* アイコン枠 */
  /* タイトル */
  /* 説明文 */
}
@media screen and (max-width: 420px) {
  .service {
    width: 100%;
    max-width: 305px;
  }
}
.service__icon{
  position: relative;
  z-index: 1;
  width: 220px;
  margin: 0 auto;
}
@media screen and (max-width: 420px) {
	.service__icon{
		width:180px;	
	}
}
.service:nth-child(2) .service__icon {
  position: relative;
  z-index: 1;
  width: 163px;
  margin: 0 auto;
}
@media screen and (max-width: 420px) {
  .service:nth-child(2) .service__icon {
    width: 150px;
  }
}
.service:nth-child(3) .service__icon {
  width: 170px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 420px) {
  .service:nth-child(3) .service__icon {
    width: 130px;
    margin: 0 auto;
  }
}
.service:nth-child(4) .service__icon {
  width: 190px;
}
@media screen and (max-width: 420px) {
  .service:nth-child(4) .service__icon {
    width: 153px;
  }
}
.service:nth-child(5) .service__icon {
  width: 150px;
  margin: -10px auto 0;
}
@media screen and (max-width: 420px) {
  .service:nth-child(5) .service__icon {
    width: 120px;
    margin: 0 auto;
  }
}
.service:nth-child(6) .service__icon {
  width: 213px;
}
@media screen and (max-width: 420px) {
  .service:nth-child(6) .service__icon {
    width: 170px;
  }
}
.service__circle {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: #f2f4f6;
  z-index: -1;
}
@media screen and (max-width: 420px) {
  .service__circle {
    width: 305px;
    height: 305px;
  }
}

.service__title {
  margin: 10px 0 12px;
  font-size: 2.3rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #121826;
  text-align: center;
  line-height: 1.347826087;
}
@media screen and (max-width: 420px) {
  .service__title {
    font-size: 1.8rem;
  }
}
.service__text {
  color: #4d4d4d;
  font-size: 1.5rem;
  padding: 0 48px;
  margin-bottom: 32px;
  line-height: 1.5333333333;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 420px) {
  .service__text {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 0 30px;
  }
}
.service .common__btn {
  margin: auto auto 0;
}

.cs {
  margin-bottom: 180px;
  /* グリッド */
  /* 左：テキスト */
  /* 右：画像＋バッジ */
  /* CTA ボタン */
}
@media screen and (max-width: 420px) {
  .cs {
    margin-bottom: 130px;
    padding: 0 14px;
  }
}
.cs__card {
  background: #ffffff; /* ★ 白カード */
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  padding: 60px 20px;
  margin: 0 auto;
  width: 96%;
  position: relative;
}
@media screen and (max-width: 420px) {
  .cs__card {
    padding: 40px 18px;
    width: 100%;
  }
}
.cs__grid {
  display: flex;
  gap: 24px;
  max-width: 1170px;
  margin: 0 auto 54px;
}
@media screen and (max-width: 420px) {
  .cs__grid {
    flex-direction: column-reverse;
    margin: 0 auto 20px;
  }
}
.cs__grid.reverse {
  flex-direction: row-reverse;
}
.cs__grid.reverse .cs__text {
  margin: 0 0 0 36px;
}
@media screen and (max-width: 420px) {
  .cs__grid.reverse .cs__text {
    margin: 0;
  }
}
.cs__grid.reverse .cs__media {
  margin-left: 30px;
}
@media screen and (max-width: 420px) {
  .cs__grid.reverse .cs__media {
    margin: 0;
  }
}
@media screen and (max-width: 420px) {
  .cs__grid.reverse {
    flex-direction: column-reverse;
  }
}
.cs__grid:last-child {
  margin: -100px auto 0;
  align-items: flex-end;
}
@media screen and (max-width: 420px) {
  .cs__grid:last-child {
    align-items: flex-start;
    margin: 0;
  }
}
.cs__grid:last-child .cs__content {
  margin: 0 0 50px 30px;
}
@media screen and (max-width: 420px) {
  .cs__grid:last-child .cs__content {
    margin: 0;
  }
}
.cs__text {
  position: relative;
  margin-right: 70px;
}
@media screen and (max-width: 420px) {
  .cs__text {
    margin: 0;
  }
}
.cs__quoteMark {
  position: absolute;
  left: -6px;
  top: -36px;
  font-size: 10rem; /* ★ 大きな引用符 */
  line-height: 1;
  margin-bottom: 20px;
  color: #d0d5dd;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media screen and (max-width: 420px) {
  .cs__quoteMark {
    font-size: 7rem;
    top: -6px;
    left: -6px;
  }
}
.cs__content {
  margin-left: 30px;
}
@media screen and (max-width: 420px) {
  .cs__content {
    margin: 0;
  }
}
.cs__title {
  margin: 20px 0 10px 0;
  font-size: 3rem; /* ★ 見出し（青） */
  line-height: 1.6;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #005ad2;
  line-height: 1.5333333333;
}
@media screen and (max-width: 420px) {
  .cs__title {
    font-size: 2rem;
    margin: 0 0 12px;
    padding-left: 30px;
  }
}
.cs__company {
  margin: 0 0 14px 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 420px) {
  .cs__company {
    font-size: 1.3rem;
  }
}
.cs__company span {
  font-size: 2rem;
}
@media screen and (max-width: 420px) {
  .cs__company span {
    font-size: 1.6rem;
  }
}
.cs__subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px 0;
  font-size: 2.3rem; /* ★ 小見出し */
  font-weight: 500;
  color: #67779a; /* ★ 直指定の青 */
}
@media screen and (max-width: 420px) {
  .cs__subtitle {
    font-size: 1.7rem;
  }
}
.cs__subtitle::before {
  content: "";
  display: block;
  width: 20px;
  height: 18px;
  background: url("../img/top/icon-check.svg") no-repeat center top/cover;
  flex-shrink: 0;
}
.cs__body {
  margin: 0;
  color: #4d4d4d;
  line-height: 1.6875;
  letter-spacing: 0.04em;
}
.cs__media {
  position: relative;
  margin: 0;
  width: 45%;
  flex-shrink: 0;
}
@media screen and (max-width: 420px) {
  .cs__media {
    width: 100%;
  }
}
.cs__ctaWrap {
  text-align: center;
}
.cs__ctaWrap .common__btn::before {
  display: none;
}
.cs__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.06s ease, background 0.2s ease;
  width: 277px;
  height: 63px;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -30px;
}
@media screen and (max-width: 420px) {
  .cs__cta {
    width: 222px;
    height: 50px;
  }
}
.cs__plus {
  font-size: 1.2rem;
  line-height: 1;
}
.cs__btn-text {
  position: relative;
  z-index: 10;
}

.hide-open {
  display: none;
}

.cs__card.is-open .hide-open {
  display: block;
}

.message {
  position: relative;
  margin-bottom: 300px;
}
@media screen and (max-width: 420px) {
  .message {
    margin-bottom: 80px;
  }
  .message::before {
    content: "";
    display: block;
    border-radius: 24px 0 0 24px;
    position: absolute;
    top: -30px;
    right: 0;
    z-index: -1;
    width: 96%;
    height: 280px;
    background: #f8ffce;
    background: linear-gradient(90deg, rgb(248, 255, 206) 30%, rgb(204, 241, 255) 100%);
  }
}
.message .container {
  max-width: 1170px;
  margin: 0 auto;
}
.message .title-wrap {
  position: relative;
  padding: 64px 0 64px 120px;
  border-radius: 24px 0 0 24px;
  margin-right: calc(50% - 50vw);
  margin-bottom: 30px;
  z-index: 10;
}
@media screen and (max-width: 420px) {
  .message .title-wrap {
    padding: 40px 0 0 40px;
    margin-bottom: 80px;
    z-index: 13;
  }
}
.message .title-wrap::before {
  content: "";
  display: block;
  border-radius: 24px 0 0 24px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #f8ffce;
  background: linear-gradient(90deg, rgb(248, 255, 206) 30%, rgb(204, 241, 255) 100%);
}
@media screen and (max-width: 420px) {
  .message .title-wrap::before {
    display: none;
  }
}
.message .title-wrap .section-common__title {
  text-align: left;
  margin: 0 0 30px;
}
.message .title-wrap p {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 420px) {
  .message .title-wrap p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.message h3 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-left: 200px;
  position: relative;
  z-index: 12;
}
@media screen and (max-width: 420px) {
  .message h3 {
    margin: 0;
    font-size: 1.8rem;
    padding-left: 40px;
  }
}
.message h3::after {
  content: "";
  display: block;
  width: 68%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: -16px;
}
@media screen and (max-width: 420px) {
  .message h3::after {
    width: 200px;
    left: 40px;
  }
}
.message figure {
  width: 548px;
  position: absolute;
  right: 0;
  top: 10%;
  z-index: 11;
}
@media screen and (max-width: 420px) {
  .message figure {
    width: 200px;
    top: 0;
  }
}
.message figure .common__btn {
  width: 277px;
  margin-top: -30px;
}
@media screen and (max-width: 420px) {
  .message figure .common__btn {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  .message .common__btn {
    width: 277px;
    margin: 100px auto 0;
  }
}

.ps {
  background: #f6f7f9;
  margin-bottom: 120px;
  padding: 100px 0 80px;
  position: relative;
  /* 矢印（丸ボタン） */
  /* コンテナの外側に少しはみ出す配置 */
  /* ===== カード ===== */
}
@media screen and (max-width: 420px) {
  .ps {
    padding: 70px 0 40px;
  }
}
.ps__container {
  max-width: 1460px;
  margin: 0 auto;
}
.ps .swiper-container {
  position: relative;
}
.ps .swiper {
  max-width: 1250px;
  padding-bottom: 20px;
}
@media screen and (max-width: 420px) {
  .ps .swiper {
    max-width: 305px;
  }
}
.ps .swiper-wrapper {
  height: auto;
}
.ps .swiper-button-prev,
.ps .swiper-button-next {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #1a1a1a;
  transition: background 0.2s ease;
  color: #1a1a1a; /* ★ 矢印色 */
}
@media screen and (max-width: 420px) {
  .ps .swiper-button-prev,
.ps .swiper-button-next {
    width: 45px;
    height: 45px;
  }
}
.ps .swiper-button-prev:hover,
.ps .swiper-button-next:hover {
  background: #ffffff;
}
.ps .swiper-button-prev::after,
.ps .swiper-button-next::after {
  font-size: 20px; /* デフォ矢印のサイズ */
}
.ps .swiper-button-prev {
  left: 10px;
  top: 40%;
}
@media screen and (max-width: 420px) {
  .ps .swiper-button-prev {
    left: 10px;
    top: 35%;
  }
}
.ps .swiper-button-next {
  right: 10px;
  top: 40%;
}
@media screen and (max-width: 420px) {
  .ps .swiper-button-next {
    right: 10px;
    top: 35%;
  }
}
.ps .swiper-slide {
  background: #ffffff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.ps .ps-card {
  overflow: hidden;
  display: block;
  /* カテゴリーピル */
}
.ps .ps-card__media {
  background: #ffffff;
}
.ps .ps-card__media img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.ps .ps-card__body {
  padding: 24px 24px 80px;
}
.ps .ps-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.ps .ps-card .ps-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  border-radius: 999px;
  background: #005ad2;
  position: relative;
  padding: 2px 20px 2px;
  /* 必要なら色分け可 */
}
.ps .ps-card .ps-chip::before {
  content: "";
  display: block;
  width: 47px;
  height: 47px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 420px) {
  .ps .ps-card .ps-chip::before {
    width: 37px;
    height: 37px;
  }
}
.ps .ps-card .ps-chip.blog-cat {
  padding: 2px 20px 2px 48px;
}
@media screen and (max-width: 420px) {
  .ps .ps-card .ps-chip.blog-cat {
    padding: 2px 20px 2px 38px;
  }
}
.ps .ps-card .ps-chip.blog-cat::before {
  background: url("../img/top/icon-blog.svg") no-repeat center center/cover;
}
.ps .ps-card .ps-chip.seminar-cat {
  padding: 2px 20px 2px 48px;
}
@media screen and (max-width: 420px) {
  .ps .ps-card .ps-chip.seminar-cat {
    padding: 2px 20px 2px 38px;
  }
}
.ps .ps-card .ps-chip.seminar-cat::before {
  background: url("../img/top/icon-seminar.svg") no-repeat center center/cover;
}
.ps .ps-card .ps-chip.download-cat {
  padding: 2px 20px 2px 48px;
}
@media screen and (max-width: 420px) {
  .ps .ps-card .ps-chip.download-cat {
    padding: 2px 20px 2px 38px;
  }
}
.ps .ps-card .ps-chip.download-cat::before {
  background: url("../img/top/icon-siryo.svg") no-repeat center center/cover;
}
.ps .ps-card .ps-date {
  font-size: 1.2rem;
  color: #6e7da0;
}
.ps .ps-card__title {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
@media screen and (max-width: 420px) {
  .ps .ps-card__title {
    font-size: 1.6rem;
  }
}
.ps .ps-card__excerpt {
  margin: 0 0 24px 0;
  font-size: 1.5rem;
  color: #4d4d4d;
}
@media screen and (max-width: 420px) {
  .ps .ps-card__excerpt {
    font-size: 1.4rem;
    line-height: 1.5714285714;
  }
}
.ps .ps-card .common__btn {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 30px;
  width: 270px;
}
@media screen and (max-width: 420px) {
  .ps .ps-card .common__btn {
    width: 222px;
  }
}
.ps .ps__footer {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -30px;
}

.content {
  width: 100%;
  /* height: 100vh; */
  background-color: #ddd;
}

#lineAnim.start #mask path {
  -webkit-animation: line 4s forwards;
  animation: line 4s forwards;
}
@media screen and (max-width: 420px) {
  #lineAnim.start #mask path {
    -webkit-animation: line-sp-reverse 8s forwards reverse;
    animation: line-sp-reverse 8s forwards reverse;
  }
}
#lineAnim.start #LINE path {
  -webkit-animation: line 4s forwards;
  animation: line 4s forwards;
}
@media screen and (max-width: 420px) {
  #lineAnim.start #LINE path {
    -webkit-animation: line-sp-reverse 8s forwards;
    animation: line-sp-reverse 8s forwards;
  }
}
#lineAnim #mask path {
  fill: none;
  stroke: transparent;
  stroke-width: 3;
  stroke-dasharray: 2000px;
  stroke-dashoffset: 2000px;
}
@media screen and (max-width: 420px) {
  #lineAnim #mask path {
    stroke-dasharray: 2000px;
    stroke-dashoffset: 2000px;
  }
}

/* LINEグループのパスにもアニメーションを適用 */
#lineAnim #LINE path {
  fill: none;
  stroke-dasharray: 2000px;
  stroke-dashoffset: 2000px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media screen and (max-width: 420px) {
  #lineAnim #LINE path {
    stroke-dasharray: 3000px;
    stroke-dashoffset: 3000px;
  }
}

@-webkit-keyframes line {
  0% {
    stroke-dashoffset: -2000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes line {
  0% {
    stroke-dashoffset: -2000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
svg {
  width: 100%;
}

@-webkit-keyframes line-sp-reverse {
  0% {
    stroke-dashoffset: 3000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes line-sp-reverse {
  0% {
    stroke-dashoffset: 3000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.line-anim03 {
  width: 150%;
  height: 536px;
  position: absolute;
  bottom: -112%;
  z-index: -1;
  left: -78%;
}
@media screen and (max-width: 420px) {
  .line-anim03 {
    height: 290px;
    width: 116%;
    left: -56%;
    bottom: -22%;
  }
}

.line-anim04 {
  width: 100%;
  height: 230px;
  position: absolute;
  z-index: -1;
  bottom: -27%;
  left: 27%;
}
@media screen and (max-width: 420px) {
  .line-anim04 {
    bottom: -10%;
    left: 24%;
  }
}

.line-anim05 {
  width: 100%;
  height: 375px;
  position: absolute;
  z-index: -1;
  bottom: -120%;
  right: 14%;
}
@media screen and (max-width: 420px) {
  .line-anim05 {
    width: 150%;
    position: absolute;
    z-index: -1;
    bottom: -28%;
    right: -25%;
  }
}

.line-anim #lineAnim03 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150%;
  /* LINEグループのパスにもアニメーションを適用 */
}
@media screen and (max-width: 420px) {
  .line-anim #lineAnim03 {
    width: 160%;
  }
}
.line-anim #lineAnim03 svg {
  width: 100%;
}
.line-anim #lineAnim03 #mask path {
  fill: none;
  stroke: transparent;
  stroke-width: 3;
  stroke-dasharray: 5000px;
  stroke-dashoffset: 5000px;
}
.line-anim #lineAnim03 #LINE path {
  fill: none;
  stroke-dasharray: 5000px;
  stroke-dashoffset: 5000px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.line-anim #lineAnim04 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* LINEグループのパスにもアニメーションを適用 */
}
.line-anim #lineAnim04 svg {
  width: 100%;
}
.line-anim #lineAnim04 #mask path {
  fill: none;
  stroke: transparent;
  stroke-width: 3;
  stroke-dasharray: 3000px;
  stroke-dashoffset: 3000px;
}
.line-anim #lineAnim04 #LINE path {
  fill: none;
  stroke-dasharray: 3000px;
  stroke-dashoffset: 3000px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.line-anim #lineAnim05 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.line-anim #lineAnim05 svg {
  width: 100%;
}
.line-anim #lineAnim05 #mask path {
  fill: none;
  stroke: transparent;
  stroke-width: 3;
  stroke-dasharray: 3000px;
  stroke-dashoffset: 3000px;
}
.line-anim #lineAnim05 #LINE path {
  fill: none;
  stroke-dasharray: 3000px;
  stroke-dashoffset: 3000px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.line-anim.show #lineAnim03 {
  /* LINEグループのパスにもアニメーションを適用 */
}
.line-anim.show #lineAnim03 #mask path {
  -webkit-animation: line3 10s forwards;
  animation: line3 10s forwards;
}
@media screen and (max-width: 420px) {
  .line-anim.show #lineAnim03 #mask path {
    -webkit-animation: line3 14s forwards;
    animation: line3 14s forwards;
  }
}
.line-anim.show #lineAnim03 #LINE path {
  -webkit-animation: line3 10s forwards;
  animation: line3 10s forwards;
}
@media screen and (max-width: 420px) {
  .line-anim.show #lineAnim03 #LINE path {
    -webkit-animation: line3 14s forwards;
    animation: line3 14s forwards;
  }
}
.line-anim.show #lineAnim04 #mask path {
  -webkit-animation: line4 10s forwards;
  animation: line4 10s forwards;
}
.line-anim.show #lineAnim04 #LINE path {
  -webkit-animation: line4 10s forwards;
  animation: line4 10s forwards;
}
.line-anim.show #lineAnim05 #mask path {
  -webkit-animation: line5 10s forwards;
  animation: line5 10s forwards;
}
.line-anim.show #lineAnim05 #LINE path {
  -webkit-animation: line5 10s forwards;
  animation: line5 10s forwards;
}

@-webkit-keyframes line3 {
  0% {
    stroke-dashoffset: 5000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes line3 {
  0% {
    stroke-dashoffset: 5000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes line4 {
  0% {
    stroke-dashoffset: 3000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes line4 {
  0% {
    stroke-dashoffset: 3000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes line5 {
  0% {
    stroke-dashoffset: 3000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes line5 {
  0% {
    stroke-dashoffset: 3000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.mv-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 10000;
  /* メインコンテンツ */
}
.mv-animation .mv-animation__inner {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 47%;
}
@media screen and (max-width: 420px) {
  .mv-animation .mv-animation__inner {
    top: 46%;
  }
}
.mv-animation .curtain {
  background-color: #fff;
  border-radius: 50%;
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, 100%) scale(0.8);
  transition: transform 1s cubic-bezier(0.43, 0.05, 0.17, 1), border-radius 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
  width: 40%;
  -webkit-animation: curtainUp 3s cubic-bezier(0.43, 0.05, 0.17, 1) forwards;
  animation: curtainUp 3s cubic-bezier(0.43, 0.05, 0.17, 1) forwards;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
@media screen and (max-width: 420px) {
  .mv-animation .curtain {
    width: 80%;
  }
}
.mv-animation .line-container {
  width: 68px;
  height: 68px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 420px) {
  .mv-animation .line-container {
    width: 48px;
    height: 48px;
  }
}
.mv-animation .line-container::before {
  content: "";
  display: block;
  width: 13px;
  height: 20px;
  background: #005aaa;
  position: absolute;
  top: 1px;
  left: 45px;
  z-index: 10;
  transform: rotate(-45deg);
  opacity: 0;
  -webkit-animation: fade-in 0s ease 0.8s forwards;
  animation: fade-in 0s ease 0.8s forwards;
}
@media screen and (max-width: 420px) {
  .mv-animation .line-container::before {
    width: 9px;
    height: 12px;
    top: -22px;
    left: 33px;
  }
}
.mv-animation .line {
  display: block;
  width: 0;
  height: 13px;
  background: #005aaa;
  transform: rotate(45deg);
  transform-origin: left center;
  -webkit-animation: expand-width 0.5s ease-in-out forwards;
  animation: expand-width 0.5s ease-in-out forwards;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  position: absolute;
  top: -25px;
  left: 22px;
  z-index: 0;
}
@media screen and (max-width: 420px) {
  .mv-animation .line {
    -webkit-animation: expand-width-sp 0.5s ease-in-out forwards;
    animation: expand-width-sp 0.5s ease-in-out forwards;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    height: 9px;
    top: -42px;
    left: 16px;
  }
}
.mv-animation .line:nth-child(1) {
  z-index: 0;
}
.mv-animation .line:nth-child(2) {
  top: -8px;
  left: 5px;
  z-index: 2;
}
@media screen and (max-width: 420px) {
  .mv-animation .line:nth-child(2) {
    top: -30px;
    left: 4px;
  }
}
.mv-animation .line:nth-child(3) {
  transform: rotate(135deg);
  background: #55c1ff;
  top: -25px;
  left: 48px;
  z-index: 1;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
@media screen and (max-width: 420px) {
  .mv-animation .line:nth-child(3) {
    top: -41px;
    left: 34px;
  }
}
.mv-animation .line:nth-child(4) {
  background: #55c1ff;
  transform: rotate(135deg);
  top: -8px;
  left: 64px;
  z-index: 4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
@media screen and (max-width: 420px) {
  .mv-animation .line:nth-child(4) {
    top: -30px;
    left: 46px;
  }
}
.mv-animation .animation__text {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-top: -16px;
  /* 各文字の表示タイミングをずらす */
}
@media screen and (max-width: 420px) {
  .mv-animation .animation__text {
    gap: 2px;
    margin-top: -35px;
  }
}
.mv-animation .animation__text img {
  display: inline-block;
  flex-shrink: 0;
  height: 25px;
  width: auto;
  opacity: 0;
  -webkit-animation: fadeIn 0.2s forwards;
  animation: fadeIn 0.2s forwards;
}
@media screen and (max-width: 420px) {
  .mv-animation .animation__text img {
    height: 18px;
  }
}
.mv-animation .animation__text img:first-child {
  height: 33px;
}
@media screen and (max-width: 420px) {
  .mv-animation .animation__text img:first-child {
    height: 24px;
  }
}
.mv-animation .animation__text img:nth-child(6) {
  height: 36px;
  margin-bottom: -9px;
}
@media screen and (max-width: 420px) {
  .mv-animation .animation__text img:nth-child(6) {
    height: 25px;
    margin-bottom: -6px;
  }
}
.mv-animation .animation__text img:nth-child(1) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.mv-animation .animation__text img:nth-child(2) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.mv-animation .animation__text img:nth-child(3) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.mv-animation .animation__text img:nth-child(4) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.mv-animation .animation__text img:nth-child(5) {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}
.mv-animation .animation__text img:nth-child(6) {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}
.mv-animation .animation__text img:nth-child(7) {
  -webkit-animation-delay: 2.6s;
  animation-delay: 2.6s;
}
.mv-animation .main-contents {
  opacity: 0;
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}
.mv-animation .main-contents.show-main-content {
  opacity: 1;
}

/* アニメーション定義 */
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes expand-width {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
@keyframes expand-width {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
@-webkit-keyframes expand-width-sp {
  from {
    width: 0;
  }
  to {
    width: 43px;
  }
}
@keyframes expand-width-sp {
  from {
    width: 0;
  }
  to {
    width: 43px;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes curtainUp {
  from {
    transform: translate(-50%, 100%) scale(0.8);
  }
  to {
    transform: translate(-50%, 0) scale(1);
  }
}
@keyframes curtainUp {
  from {
    transform: translate(-50%, 100%) scale(0.8);
  }
  to {
    transform: translate(-50%, 0) scale(1);
  }
}
/*# sourceMappingURL=top.css.map */