@charset "UTF-8";
.mv {
  height: 100vh;
  background: url("../images/mv1.webp") center top/cover;
}
.mv .inner {
  height: 100%;
  padding: 0;
  width: 100%;
  max-width: unset;
  place-content: center;
  position: relative;
}
.mv .inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
@media all and (max-width: 767px) {
  .mv {
    background: url("../images/mv1-sp.webp") center top/cover;
  }
}

.top-h1 {
  text-align: center;
  position: relative;
  z-index: 3;
}
.top-h1 h1 {
  font-family: "Zen Old Mincho", sans-serif;
  font-size: clamp(14px, calc(0.2614379085vw + 12.9803921569px), 18px);
  font-weight: 400;
  color: white;
}
.top-h1 .eg {
  font-size: clamp(30px, calc(2.614379085vw + 19.8039215686px), 70px);
  color: white;
  font-family: Inter, sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

.top1 .inner {
  position: relative;
  place-content: center;
  text-align: center;
  padding: 0 60px;
}
@media all and (max-width: 1080px) {
  .top1 .inner {
    width: 150%;
    position: relative;
    left: -25%;
  }
}
.top1 .circles {
  margin-left: -4%;
}
.top1 .circles svg {
  margin: 0 auto;
}
.top1 .circles .line_right {
  position: relative;
  left: 100px !important;
  stroke-width: 150px;
  stroke-dasharray: 792px;
  stroke-dashoffset: 792px; /* 素直にプラスの数値で隠す */
}
.top1 .circles .line_right.act {
  animation: drawLineRight 0.3s linear forwards;
}
@keyframes drawLineRight {
  0% {
    stroke-dashoffset: 792px; /* 上に引っ込んだ状態からスタート */
  }
  100% {
    stroke-dashoffset: 0px; /* 下に向かって綺麗に伸びる */
  }
}
.top1 .circles .circle_main {
  position: relative;
  top: -10px;
  /* 円周の長さ */
  stroke-dasharray: 3569px;
  stroke-dashoffset: 3569px;
  /* 角度を 0deg にすることで、HTMLの rotate(90) と合わさり「3時の位置」がスタートになります */
  transform: rotate(0deg);
  transform-origin: 720.5px 793px;
}
.top1 .circles .circle_main.act {
  animation: drawCircleMain 0.6s linear forwards;
}
@keyframes drawCircleMain {
  0% {
    stroke-dashoffset: 3569px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}
.top1 .circles .line_left {
  stroke-dasharray: 2364px;
  stroke-dashoffset: 2364px;
}
.top1 .circles .line_left.act {
  animation: drawLineLeft 0.6s ease-out forwards;
}
@keyframes drawLineLeft {
  0% {
    stroke-dashoffset: 2364px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}
.top1 .circles {
  /* ① 右の線（上から下へ伸ばす） */
}
.top1 .circles .line_right2 {
  stroke-dasharray: 218px;
  stroke-dashoffset: -218px; /* マイナスにすることで上から下へ */
}
.top1 .circles .line_right2.act {
  animation: drawLineRight12 0.3s linear forwards;
}
@keyframes drawLineRight12 {
  0% {
    stroke-dashoffset: -197px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}
.top1 .circles {
  /* ② 中央の円（右中央＝3時の位置から時計回りに開始） */
}
.top1 .circles .circle_main2 {
  stroke-dasharray: 983px;
  stroke-dashoffset: 983px; /* マイナスではなく、通常のプラスの数値で隠す */
  /* 【解決策】パス単体ではなく、SVGのパーツ全体を「横方向」にひっくり返します。
     これにより、3時の位置をキープしたまま、反時計回りが「時計回り」に100%化けます。 */
  transform: scaleX(1);
  transform-origin: 199px 216.5px; /* 円の正確な中心点 */
}
.top1 .circles .circle_main2.act {
  animation: drawCircleMain12 0.6s linear forwards;
}
@keyframes drawCircleMain12 {
  0% {
    stroke-dashoffset: 983px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}
.top1 .circles {
  /* ③ 左の線（右から左へ伸ばす） */
  /* ③ 左の線（右から左へ向かって伸ばす） */
}
.top1 .circles .line_left2 {
  stroke-dasharray: 216px;
  stroke-dashoffset: -216px; /* 最初にマイナス値で完全に隠しておく */
}
.top1 .circles .line_left2.act {
  animation: drawLineLeft12 0.6s ease-out forwards;
}
@keyframes drawLineLeft12 {
  0% {
    stroke-dashoffset: -216px; /* 非表示状態からスタート */
  }
  100% {
    stroke-dashoffset: 0px; /* 0pxに向かって描画（結果として右から左へ伸びる） */
  }
}
@media all and (max-width: 1530px) {
  .top1 .circles svg {
    width: calc(100% - 120px);
  }
}
@media all and (max-width: 767px) {
  .top1 .circles {
    position: absolute;
    left: 0;
    top: 0;
    margin-left: -3%;
  }
  .top1 .circles svg {
    width: 100%;
  }
}
.top1 .cont {
  width: 100%;
  height: 100%;
  aspect-ratio: 1358/1902;
  margin: 0 auto;
  place-content: center;
  top: 0;
  left: 0;
  position: absolute;
}
.top1 .cont .ic {
  height: 150px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -75px;
  margin-left: -75px;
  z-index: 1;
}
.top1 .cont h2 {
  writing-mode: vertical-rl;
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(18px, calc(0.9150326797vw + 14.431372549px), 32px);
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}
.top1 .cont h2 i {
  color: #990011;
  font-weight: bold;
  font-size: clamp(18px, calc(1.045751634vw + 13.9215686275px), 34px);
}
.top1 .subs {
  margin-top: 20px;
}
.top1 .s1 {
  font-size: clamp(16px, calc(0.1307189542vw + 15.4901960784px), 18px);
  color: #948282;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.top1 .s2 {
  font-size: clamp(16px, calc(0.2614379085vw + 14.9803921569px), 20px);
  color: #990011;
  font-weight: bold;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}
.top1 .txt {
  margin: 30px auto 0 auto;
  text-align: left;
  max-width: 780px;
  width: 41%;
}
.top1 .in {
  margin-top: -22%;
  z-index: 2;
  position: relative;
}
.top1 a {
  margin-top: 40px;
}
.top1 .pcn {
  display: none;
}
.top1 .cir-sp {
  display: none;
}
@media all and (max-width: 1280px) {
  .top1 svg {
    margin-left: -3%;
  }
  .top1 .txt {
    margin: 20px auto 0 auto;
    font-size: 14px;
    width: 46%;
  }
}
@media all and (max-width: 767px) {
  .top1 a {
    margin-top: 30px;
  }
  .top1 .spn {
    display: none;
  }
  .top1 .inner {
    width: 100%;
    position: relative;
    left: 0;
    padding: 0 20px;
  }
  .top1 .cont {
    position: relative;
    aspect-ratio: unset;
  }
  .top1 .cont .ic {
    height: 80px;
    top: 11%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    z-index: 1;
    display: none;
  }
  .top1 .cont h2 {
    font-size: 22px;
  }
  .top1 .cont h2 i {
    font-size: 24px;
  }
  .top1 .cont h2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 7%;
    left: 1%;
    place-content: center;
  }
  .top1 .cont h2 em {
    display: inline-block;
    text-align: left;
    position: relative;
    top: 50%;
    margin-top: -110px;
    line-height: 1.4;
    background: url("../images/l3.webp") center center no-repeat;
    background-size: 60px auto;
  }
  .top1 .in {
    margin-top: 0;
  }
  .top1 .subs {
    margin-top: 20px;
  }
  .top1 .txt {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .top1 .pcn {
    display: block;
  }
  .top1 .cir-sp {
    display: block;
  }
  .top1 .cir-spw {
    position: relative;
    left: -20px;
    width: calc(100% + 40px);
  }
  .top1 .cir-spw svg {
    width: 100%;
    margin-left: 0;
  }
}

.top-v2 {
  padding: 180px 0;
  box-sizing: border-box;
  position: relative;
}
.top-v2 .line-top1 {
  position: absolute;
  top: 0;
  left: 15%;
  margin-left: -80px;
  width: 160px;
  height: 280%;
  background: linear-gradient(to top, #CE001A 0%, #730000 70%, #730000 100%);
  transform: scale(1, 0);
  transform-origin: top;
}
.top-v2 .line-top1.trigger {
  opacity: 1;
  animation: drawLineRight00 0.6s 0.5 linear forwards;
}
@keyframes drawLineRight00 {
  0% {
    opacity: 1;
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
.top-v2 .inner {
  position: relative;
  place-content: center;
  text-align: center;
  padding: 0 60px;
}
@media all and (max-width: 1080px) {
  .top-v2 .inner {
    width: 150%;
    position: relative;
    left: -25%;
  }
}
.top-v2 .circles {
  margin-left: -4%;
}
.top-v2 .circles svg {
  margin: 0 auto;
}
.top-v2 .circles #line_right {
  position: relative;
  left: 100px !important;
  stroke-width: 150px;
  stroke-dasharray: 792px;
  stroke-dashoffset: 792px; /* 素直にプラスの数値で隠す */
}
.top-v2 .circles #line_right.act {
  animation: drawLineRight 0.3s linear forwards;
}
@keyframes drawLineRight {
  0% {
    stroke-dashoffset: 792px; /* 上に引っ込んだ状態からスタート */
  }
  100% {
    stroke-dashoffset: 0px; /* 下に向かって綺麗に伸びる */
  }
}
.top-v2 .circles #circle_main {
  position: relative;
  top: -10px;
  /* 円周の長さ */
  stroke-dasharray: 3569px;
  stroke-dashoffset: 3569px;
  /* 角度を 0deg にすることで、HTMLの rotate(90) と合わさり「3時の位置」がスタートになります */
  transform: rotate(0deg);
  transform-origin: 720.5px 793px;
}
.top-v2 .circles #circle_main.act {
  animation: drawCircleMain 0.6s linear forwards;
}
@keyframes drawCircleMain {
  0% {
    stroke-dashoffset: 3569px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}
.top-v2 .circles #line_left {
  stroke-dasharray: 2364px;
  stroke-dashoffset: 2364px;
}
.top-v2 .circles #line_left.act {
  animation: drawLineLeft 0.6s ease-out forwards;
}
@keyframes drawLineLeft {
  0% {
    stroke-dashoffset: 2364px;
  }
  100% {
    stroke-dashoffset: 0px;
  }
}
@media all and (max-width: 1530px) {
  .top-v2 .circles svg {
    width: calc(100% - 120px);
  }
}
.top-v2 .cont {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  place-content: center;
  top: 0;
  left: 0;
  position: relative;
  z-index: 2;
}
.top-v2 .cont .ic {
  width: 100%;
  height: calc(100% - 40px);
  top: -40px;
  left: 0;
  aspect-ratio: 1/1;
  position: absolute;
  text-align: center;
  place-content: center;
  z-index: -1;
  pointer-events: none;
}
.top-v2 .cont .ic svg {
  display: inline-block;
  height: 90%;
  width: auto;
  opacity: 0.05;
}
.top-v2 .cont h2 {
  writing-mode: vertical-rl;
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(18px, calc(0.9150326797vw + 14.431372549px), 32px);
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}
.top-v2 .cont h2 i {
  color: #990011;
  font-weight: bold;
  font-size: clamp(18px, calc(1.045751634vw + 13.9215686275px), 34px);
}
.top-v2 .subs {
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.top-v2 .s1 {
  font-size: clamp(16px, calc(0.1307189542vw + 15.4901960784px), 18px);
  color: #948282;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.top-v2 .s2 {
  font-size: clamp(16px, calc(0.2614379085vw + 14.9803921569px), 20px);
  color: #990011;
  font-weight: bold;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}
.top-v2 .txt {
  margin: 30px auto 0 auto;
  text-align: left;
  max-width: 780px;
  width: 41%;
}
.top-v2 .in {
  z-index: 2;
  position: relative;
}
.top-v2 a {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 1280px) {
  .top-v2 svg {
    margin-left: 0;
  }
  .top-v2 .txt {
    margin: 20px auto 0 auto;
    font-size: 14px;
    width: 46%;
  }
}
@media all and (max-width: 1000px) {
  .top-v2 {
    padding: 30px 0;
  }
  .top-v2 .line-top1 {
    margin-left: -60px;
    width: 120px;
  }
  .top-v2 .cont .ic {
    top: 15%;
    height: 70%;
  }
}
@media all and (max-width: 767px) {
  .top-v2 a {
    margin-top: 30px;
  }
  .top-v2 .spn {
    display: none;
  }
  .top-v2 .inner {
    width: 100%;
    position: relative;
    left: 0;
    padding: 0 20px;
  }
  .top-v2 .cont {
    position: relative;
    aspect-ratio: unset;
  }
  .top-v2 .cont .ic {
    top: 40%;
    height: 20%;
  }
  .top-v2 .cont .ic svg {
    margin-left: 0;
  }
  .top-v2 .in {
    margin-top: 80px;
  }
  .top-v2 .txt {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .top-v2 .line-top1 {
    margin-left: -30px;
    width: 40px;
    height: 250%;
  }
}

.top2 {
  position: relative;
  z-index: 3;
  padding: 0 0 0 0;
  box-sizing: border-box;
  margin-top: -22%;
}
.top2 .c-2 {
  margin: 40px 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
  position: relative;
  z-index: 4;
}
.top2 .c-2 .img {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(163, 163, 163, 0.25);
}
.top2 .c-2 .img img {
  transition: all 0.3s ease;
}
.top2 .c-2 a {
  display: block;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.top2 .c-2 a .tp {
  padding: 30px 20px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top2 .c-2 a .img {
  overflow: hidden;
}
.top2 .c-2 a .img img {
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.top2 .c-2 a .care {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: white;
  border-radius: 3px;
  background: #858484;
  padding: 3px 10px;
  box-sizing: border-box;
}
.top2 .c-2 a .cr1 {
  color: #6E6868;
  font-size: 14px;
}
.top2 .c-2 a .name {
  color: #8C8C8C;
  font-weight: bold;
  font-size: 18px;
  margin-left: 24px;
}
.top2 .c-2 a h3 {
  font-weight: bold;
  font-size: 24px;
  position: relative;
  place-content: center;
  height: 64px;
  margin-top: 32px;
  padding: 0 20px;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.top2 .c-2 a h3 img {
  width: 64px;
  position: absolute;
  right: 20px;
  top: 0;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.top2 .c-2 a:hover .img img {
  transform: scale(1.02);
}
.top2 .c-2 a:hover h3 {
  color: #999;
}
.top2 .c-2 a:hover h3 img {
  right: 10px;
}
.top2 .inner2 {
  position: relative;
}
.top2 .line-r {
  width: 80%;
  position: absolute;
  top: 38%;
  left: 10%;
  height: 8vw;
  max-height: 150px;
  transform: scale(0, 1);
  transform-origin: left;
  background: linear-gradient(to right, #CE001A 0%, #730000 100%);
  z-index: 3;
}
.top2 .line-r.trigger {
  opacity: 1;
  animation: drawLineRight2 0.6s 0.5s linear forwards;
}
@keyframes drawLineRight2 {
  0% {
    opacity: 1;
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.top2 .line-b {
  position: absolute;
  top: 23%;
  right: 10%;
  height: 130%;
  width: 8vw;
  max-width: 150px;
  transform: scale(1, 0);
  transform-origin: top;
  background: linear-gradient(to top, #CE001A 0%, #730000 100%);
  z-index: 3;
}
.top2 .line-b.trigger {
  opacity: 1;
  animation: drawLineRight3 0.6s 1s linear forwards;
}
@keyframes drawLineRight3 {
  0% {
    opacity: 1;
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
@media all and (max-width: 1080px) {
  .top2 {
    margin-top: -36%;
  }
  .top2 .c-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 60px 0;
  }
  .top2 .c-2 .img {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(163, 163, 163, 0.25);
  }
  .top2 .c-2 .img img {
    transition: all 0.3s ease;
  }
  .top2 .c-2 a {
    display: block;
  }
  .top2 .c-2 a .tp {
    padding: 30px 20px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .top2 .c-2 a .care {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: white;
    border-radius: 3px;
    background: #858484;
    padding: 3px 10px;
    box-sizing: border-box;
  }
  .top2 .c-2 a .cr1 {
    color: #6E6868;
    font-size: 14px;
  }
  .top2 .c-2 a .name {
    color: #8C8C8C;
    font-weight: bold;
    font-size: 18px;
    margin-left: 24px;
  }
  .top2 .c-2 a h3 {
    font-weight: bold;
    font-size: 24px;
    position: relative;
    place-content: center;
    height: 64px;
    margin-top: 32px;
    padding: 0 20px;
  }
  .top2 .c-2 a h3 img {
    width: 64px;
    position: absolute;
    right: 20px;
    top: 0;
  }
  .top2 .line-r {
    display: none;
  }
  .top2 .line-b {
    right: 29%;
    height: 110%;
  }
  .top2 .line-b.trigger {
    opacity: 1;
    animation: drawLineRight3 1.5s 0.7s forwards;
  }
}
@media all and (max-width: 1000px) {
  .top2 .line-b {
    right: 50%;
    margin-right: -4vw;
    height: 140%;
  }
}
@media all and (max-width: 767px) {
  .top2 {
    padding: 80px 0 0 0;
    margin-top: 0;
  }
  .top2 .c-2 {
    margin: 30px 0 0 0;
  }
  .top2 .c-2 .img {
    border-radius: 5px;
  }
  .top2 .c-2 a .tp {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-top: 20px;
  }
  .top2 .c-2 a .care {
    font-size: 11px;
    padding: 1px 6px;
    order: 1;
    display: inline-block;
    width: 150px;
    text-align: center;
  }
  .top2 .c-2 a .names {
    order: 2;
  }
  .top2 .c-2 a .cr1 {
    font-size: 12px;
  }
  .top2 .c-2 a .name {
    font-weight: bold;
    font-size: 16px;
    margin-left: 24px;
  }
  .top2 .c-2 a h3 {
    font-size: 20px;
    height: unset;
    margin-top: 0;
    padding: 0 0;
  }
  .top2 .c-2 a h3 i {
    display: block;
    width: 32px;
    margin: 10px 0 0 auto;
  }
  .top2 .c-2 a h3 img {
    position: relative;
    width: 32px;
    right: 0;
    top: 0;
  }
  .top2 .line-b {
    width: 40px;
    height: 155%;
    right: 50%;
    margin-right: -20px;
  }
}

.top-22 {
  margin-top: 0;
}
.top-22 .inner2 {
  position: relative;
}
.top-22 .inner2:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to bottom, #F7F7F7 0, #FCFBF9 50%, #FCFBF9 100%);
  z-index: 2;
}
@media all and (max-width: 1500px) {
  .top-22 .inner2:before {
    top: 30%;
  }
}
.top-22 .c-2 {
  position: relative;
  z-index: 4;
}

.top3 {
  padding-top: 200px;
  position: relative;
  z-index: 5;
}
.top3 .inner {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
  position: relative;
}
.top3 .inner a {
  margin: 40px 0 0 0;
}
.top3 .inner h3 {
  margin: 40px 0 30px 0;
  font-size: clamp(16px, calc(0.2614379085vw + 14.9803921569px), 20px);
}
.top3 .l {
  padding-left: clamp(40px, 21.88vw - 240px, 180px);
  margin: 0 auto;
  box-sizing: border-box;
}
@media all and (max-width: 1280px) {
  .top3 .l {
    padding-left: clamp(30px, 1.95vw + 15px, 40px);
  }
}
@media all and (max-width: 767px) {
  .top3 .l {
    padding-left: 20px;
  }
}
.top3 .l .in {
  max-width: 570px;
  padding-top: 70px;
}
.top3 .r {
  aspect-ratio: 958/704;
  background: #F7F7F7;
  position: relative;
  z-index: 3;
}
.top3 .r .in {
  width: 100%;
  height: 100%;
  background: url("../images/top3.webp") center center/cover;
}
.top3 .line-btm {
  position: absolute;
  top: 23%;
  left: 50%;
  margin-left: -4vw;
  height: 130%;
  width: 8vw;
  max-width: 150px;
  transform-origin: top;
  background: linear-gradient(to top, #CE001A 0%, #730000 100%);
  border-radius: 100px 0 0 0;
  z-index: 1;
  opacity: 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.top3 .line-btm.trigger {
  opacity: 1;
  animation: drawLineRight4 0.6s linear forwards;
}
@keyframes drawLineRight4 {
  0% {
    opacity: 0;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  100% {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@media all and (max-width: 1000px) {
  .top3 {
    padding-top: 100px;
  }
  .top3 .inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 80px 0;
  }
  .top3 .l .in {
    max-width: 95%;
    margin: 0 auto;
  }
  .top3 .r {
    aspect-ratio: unset;
    height: 500px;
  }
  .top3 .line-btm {
    top: 66%;
    left: 50%;
    height: 80%;
  }
  .top3 .line-btm.trigger {
    opacity: 1;
    animation: drawLineRight4 1s linear forwards;
  }
}
@media all and (max-width: 767px) {
  .top3 {
    padding-top: 0;
  }
  .top3 .inner {
    gap: 60px 0;
  }
  .top3 .inner a {
    margin: 40px auto 0 auto;
  }
  .top3 .inner h3 {
    margin: 20px 0 10px 0;
  }
  .top3 .l {
    padding: 0 20px;
  }
  .top3 .l .in {
    max-width: 100%;
  }
  .top3 .r {
    height: 300px;
  }
  .top3 .line-btm {
    top: 86%;
    left: 50%;
    width: 40px;
    margin-left: -20px;
    height: 40%;
  }
}

.top4 {
  position: relative;
  aspect-ratio: 1920/600;
  margin-top: 240px;
  overflow: hidden;
  z-index: 5;
}
.top4 .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* 高さ500pxより大きめにして、動く余白を作る */
  background-image: url("../images/top4.webp"); /* ここに好きな画像 */
  background-size: cover;
  background-position: center;
  z-index: 1; /* テキストの後ろに配置 */
}
@media all and (max-width: 1000px) {
  .top4 {
    aspect-ratio: 1920/800;
  }
}
@media all and (max-width: 767px) {
  .top4 {
    aspect-ratio: 400/300;
    margin-top: 80px;
  }
}

.news {
  margin: 180px auto;
}
.news .inner {
  padding: 0;
  max-width: 1280px;
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.news .eg {
  font-family: Inter, sans-serif;
  font-size: clamp(24px, calc(0.522875817vw + 21.9607843137px), 32px);
  font-weight: 700;
  margin-bottom: 20px;
}
.news .eg:first-letter {
  color: #D01126;
}
.news .l {
  width: 27%;
}
.news .l a {
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  background: url("../images/btn-arw.webp") center right 5px no-repeat;
  background-size: 34px auto;
  padding: 5px 50px 5px 0;
  box-sizing: border-box;
  transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.news .l a:hover {
  color: #999;
  background: url("../images/btn-arw.webp") center right no-repeat;
  background-size: 34px auto;
}
.news .r {
  width: 71%;
}
.news .line {
  box-sizing: border-box;
  border-bottom: 1px solid #CCCCCC;
}
.news .line a {
  padding: 32px 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 84px 130px 1fr;
  gap: clamp(20px, calc(1.3071895425vw + 14.9019607843px), 40px) clamp(30px, calc(1.9607843137vw + 22.3529411765px), 60px);
  font-family: Inter, sans-serif;
  transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.news .line a:hover .txx {
  text-decoration: underline;
}
.news .line .ymd {
  font-size: 14px;
}
.news .line .ct {
  height: 27px;
  color: white;
  border-radius: 3px;
  font-size: 14px;
  background: #000;
  text-align: center;
  place-content: center;
  line-height: 1;
}
@media all and (max-width: 1000px) {
  .news {
    margin: 90px auto;
  }
  .news .inner {
    display: block;
  }
  .news .l {
    width: 100%;
    margin-bottom: 40px;
  }
  .news .r {
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  .news {
    margin: 80px auto;
  }
  .news .eg {
    margin-bottom: 0;
    line-height: 1;
  }
  .news .l {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .news .l a {
    font-size: 12px;
    background: url("../images/btn-arw.webp") center right 5px no-repeat;
    background-size: 24px auto;
    padding: 5px 36px 5px 0;
  }
  .news .line a {
    padding: 16px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .news .line .ymd {
    font-size: 12px;
  }
  .news .line .ct {
    width: 100px;
    height: 27px;
    font-size: 12px;
    font-weight: bold;
  }
  .news .line .txx {
    width: 100%;
  }
}

.src-tx-all {
  position: absolute;
  font-family: Inter, sans-serif;
  font-size: 110px;
  color: white;
  font-weight: bold;
  line-height: 1;
  bottom: -13px;
  left: 0;
  z-index: 2;
}
@media all and (max-width: 1000px) {
  .src-tx-all {
    font-size: 70px;
  }
}
@media all and (max-width: 767px) {
  .src-tx-all {
    font-size: 56px;
    bottom: -8px;
  }
}

.src-wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.scr-txt {
  flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 20px;
}

.scr-txt:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}

.scr-txt:nth-child(even) {
  animation: loop2 50s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/*# sourceMappingURL=top.css.map */
