@charset "UTF-8";
.fv {
  height: auto;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .fv {
    height: auto;
  }
}

.fv__inner {
  padding-bottom: 38px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .fv__inner {
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }
}

.fv__slider {
  height: auto;
}
@media (max-width: 767px) {
  .fv__slider {
    height: auto;
  }
}

.fv__slide {
  background-color: #fff;
  padding-left: 12px;
  padding-right: 12px;
}
.fv__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__slide.slick-current + .fv__slide {
  transform: scale(0.9) translateY(28px);
  align-self: flex-end;
  transition: transform 0.5s;
}

.fv__slide:has(+ .fv__slide.slick-current) {
  transform: scale(0.9) translateY(28px);
  align-self: flex-end;
  transition: transform 0.5s;
}

.slideInner {
  height: auto;
  position: relative;
}
@media (max-width: 767px) {
  .slideInner {
    height: auto;
  }
}

.slide01 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fv__text {
  padding: 51px 53px 12px;
  color: #39251a;
  background-color: rgba(255, 255, 255, 0.76);
}
@media (max-width: 767px) {
  .fv__text {
    padding: 20px 20px 12px;
  }
}

.fv__text--main {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 58px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #39251a;
}
@media (max-width: 767px) {
  .fv__text--main {
    font-size: 32px;
  }
}

.fv__text--sub {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  text-align: justify;
}
@media (max-width: 767px) {
  .fv__text--sub {
    font-size: 14px;
  }
}

html[lang=en] .fv__text--sub {
  text-align: left;
}

.fv__nav {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .fv__nav {
    bottom: 1%;
  }
}

.slick-next,
.slick-prev {
  width: 50px !important;
  height: 50px !important;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid #fff !important;
  padding: 10px !important;
  border-radius: 8px !important;
}
@media screen and (max-width: 767px) {
  .slick-next,
  .slick-prev {
    width: 30px !important;
    height: 30px !important;
  }
}

.slick-next:hover,
.slick-prev:hover {
  opacity: 0.5;
}

.slick-next {
  right: 5% !important;
}

.slick-prev {
  left: 5% !important;
  transform: translate(0, -50%) rotate(180deg) !important;
}

.slick-next::before,
.slick-prev::before {
  content: "" !important;
  font-family: "Noto Sans JP" !important;
  transform: rotate(45deg) !important;
  width: 80%;
  height: 80%;
  display: block;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .slick-next::before,
  .slick-prev::before {
    width: 80%;
    height: 80%;
    margin-right: auto;
    margin-left: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

@media screen and (max-width: 1200px) {
  .top-service {
    padding-right: 10%;
  }
}

.top-service {
  padding-top: 90px;
  padding-bottom: 120px;
  background: linear-gradient(to bottom, var(--color-main) 0%, var(--color-main) 60%, #fff 60%, #fff 100%);
}
@media (max-width: 767px) {
  .top-service {
    padding-top: 40px;
    padding-bottom: 60px;
    background: linear-gradient(to bottom, var(--color-main) 0%, var(--color-main) 42%, #fff 42%, #fff 100%);
  }
}

@media (max-width: 767px) {
  .top-service__listWrap {
    margin-right: calc(50% - 50vw);
    overflow-x: scroll;
  }
}

.top-service__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 32px;
}
@media (max-width: 767px) {
  .top-service__list {
    flex-wrap: nowrap;
    gap: 16px;
  }
}
.top-service__list::after {
  content: "";
  width: 18%;
  min-width: 212px;
  display: none;
}
@media screen and (max-width: 1200px) {
  .top-service__list::after {
    min-width: 160px;
    display: none;
  }
}

.top-service__item {
  min-width: 212px;
}
@media screen and (max-width: 1200px) {
  .top-service__item {
    min-width: 160px;
  }
}
@media (max-width: 767px) {
  .top-service__item {
    padding: 40px 4% 10px;
    flex: none;
    width: 212px;
  }
}

.top-service__itemInner a {
  padding: 40px 4% 30px;
  background-color: #fff;
  border: 1px solid var(--color-main);
  border-radius: 10px;
  width: 18%;
  min-width: 212px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.top-service__itemIcon img.gray {
  display: block;
}

.top-service__itemIcon img.white {
  display: none;
}

.top-service__itemInner a:hover {
  opacity: 1;
  background-color: var(--color-main-light);
}

.top-service__itemInner a:hover .top-service__itemIcon img.gray {
  display: none;
}

.top-service__itemInner a:hover .top-service__itemIcon img.white {
  display: block;
}

.top-service__itemInner a:hover .top-service__itemText {
  color: #fff;
}

.top-service__itemIcon {
  width: 115px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .top-service__itemIcon {
    width: 90px;
    height: 90px;
  }
}
.top-service__itemIcon img {
  height: 100%;
  width: auto;
}
.top-service__itemIcon img.hover-img {
  display: none;
}

.top-service__item a:hover {
  opacity: 1;
}
.top-service__item a:hover img.hover-img {
  display: block;
}

.top-service__itemText {
  max-width: 212px;
  min-height: 65px;
  display: flex;
  align-items: flex-end;
  margin-top: 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.55;
  text-align: center;
  color: #e56f23;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .top-service__itemText {
    font-size: min(20px, 1.6666666667vw);
  }
}
@media (max-width: 767px) {
  .top-service__itemText {
    font-size: 20px;
    min-height: 53px;
    margin-top: 16px;
  }
}

.--en .top-service__itemText {
  font-size: 14px;
  white-space: normal;
}

.top-service__itemNav {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .top-service__itemNav {
    margin-top: 6px;
  }
}

.top-service__itemNavLink {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--title-text-color);
  padding: 0.3em;
}
@media screen and (max-width: 1200px) {
  .top-service__itemNavLink {
    font-size: min(16px, 1.3333333333vw);
  }
}
@media (max-width: 767px) {
  .top-service__itemNavLink {
    font-size: 16px;
  }
}
.top-service__itemNavLink::after {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  background-image: url(../img/top2025/ico-arrow-orange.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.top-service__nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .top-service__nav {
    margin-top: 20px;
  }
}

.top-vision {
  position: relative;
}

.top-vision__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

.top-vision__title {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 58px;
  letter-spacing: 0.05em;
  line-height: 1.66;
  text-align: center;
  color: var(--title-text-color);
  text-decoration: underline;
  text-underline-offset: -54px;
  text-decoration-color: rgba(255, 255, 255, 0.6);
  text-decoration-thickness: 65px;
}
@media (max-width: 767px) {
  .top-vision__title {
    font-size: 32px;
    text-underline-offset: -20px;
    text-decoration-thickness: 28px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.top-vision__desc {
  width: 100%;
  height: 284px;
  padding-top: 26px;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .top-vision__desc {
    height: auto;
    text-align: justify;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  html[lang=en] .top-vision__descText {
    text-align: left;
  }
}

.top-vision__descText {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 2%;
  padding-right: 2%;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP";
  font-weight: 300;
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  color: var(--base-text-color);
  text-decoration: underline;
  text-underline-offset: -20px;
  text-decoration-color: rgba(255, 255, 255, 0.6);
  text-decoration-thickness: 24px;
}
@media (max-width: 767px) {
  .top-vision__descText {
    font-size: 16px;
    text-underline-offset: -16px;
    text-decoration-thickness: 20px;
    text-align: justify;
  }
}

@media (max-width: 767px) {
  html[lang=en] .top-vision__descText {
    text-align: left;
  }
}
.top-vision__desc--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  .top-vision__desc--bg {
    display: none;
  }
}

@media (max-width: 767px) {
  .top-vision__imageWrap {
    margin-top: 24px;
    margin-bottom: 72px;
    position: relative;
    height: 200px;
    overflow: clip;
  }
}

.top-vision__image {
  position: absolute;
  width: 120px;
  border-radius: 16px;
  overflow: clip;
}
@media (max-width: 767px) {
  .top-vision__image {
    display: block;
    border-radius: 8px;
  }
}
.top-vision__image.--1 {
  width: 181px;
  top: 66px;
  left: 10.1%;
  z-index: 2;
}
@media (max-width: 767px) {
  .top-vision__image.--1 {
    width: 90px;
    top: 12px;
    left: -2%;
  }
}
.top-vision__image.--2 {
  width: 248px;
  top: 0;
  right: 7.1%;
}
@media (max-width: 767px) {
  .top-vision__image.--2 {
    width: 124px;
  }
}
.top-vision__image.--3 {
  width: 294px;
  top: 177px;
  left: -2%;
  z-index: 1;
}
@media (max-width: 767px) {
  .top-vision__image.--3 {
    width: 147px;
    top: 70px;
    left: 10%;
  }
}

.top-vision__lineBgSp {
  display: none;
}
@media (max-width: 767px) {
  .top-vision__lineBgSp {
    display: block;
    height: 100px;
    overflow: clip;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.top-vision__lineBgSp img {
  width: auto;
  height: 100%;
}

.top-solution {
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .top-solution {
    padding-bottom: 72px;
  }
}

.top-solution__listWrap {
  margin-top: 80px;
  max-width: 1030px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .top-solution__listWrap {
    margin-top: 54px;
  }
}

.top-solution__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 120px;
  row-gap: 70px;
}
@media (max-width: 767px) {
  .top-solution__list {
    flex-direction: column;
    row-gap: 50px;
  }
}

.top-solution__item {
  width: 46%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 18px;
  row-gap: 8px;
  position: relative;
}
@media (max-width: 767px) {
  .top-solution__item {
    width: 100%;
  }
}
.top-solution__item .color {
  color: var(--color-main-light);
}
.top-solution__item .underline {
  text-decoration: underline;
  text-underline-offset: -6px;
  text-underline-position: under;
  text-decoration-color: #FFB817;
  text-decoration-thickness: 8px;
}

.badge {
  width: 139px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-main-light);
  border-radius: 100vh;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: "Inter";
  position: relative;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-75%);
}
@media (max-width: 767px) {
  .badge {
    width: 87px;
    height: 34px;
    font-size: 16px;
    left: 8%;
    letter-spacing: -0.02em;
  }
}
.badge::after {
  display: block;
  content: "";
  width: 22px;
  height: 14px;
  background-color: var(--color-main-light);
  position: absolute;
  top: calc(100% - 6px);
  right: 24%;
  -webkit-clip-path: polygon(0 0, 100% 0, 70% 100%);
          clip-path: polygon(0 0, 100% 0, 70% 100%);
}

.solutionImage {
  display: block;
  border-radius: 12px;
  overflow: clip;
}
.solutionImage img {
  aspect-ratio: 138/73;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .solutionImage {
    border-radius: 8px;
  }
}

.solutionTitle {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 26px;
  font-size: 22px;
  line-height: 1.54;
  text-align: center;
  color: var(--title-text-color);
}
@media (max-width: 767px) {
  .solutionTitle {
    font-size: 22px;
  }
}

.solutionDesc {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  color: var(--base-text-color);
}

.top-support {
  padding-bottom: 95px;
}
@media (max-width: 767px) {
  .top-support {
    padding-bottom: 60px;
  }
}

.top-support__listWrap {
  margin-top: 120px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .top-support__listWrap {
    margin-top: 79px;
  }
}

.top-support__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  row-gap: 100px;
}
@media (max-width: 767px) {
  .top-support__list {
    row-gap: 72px;
    flex-direction: column;
  }
}

.top-support__item {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-content: flex-start;
  align-items: center;
  width: 48%;
  background-color: #F59702;
  border-radius: 16px;
  border: 1px solid #F59702;
  position: relative;
  row-gap: 24px;
  row-gap: 18px;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .top-support__item {
    width: 100%;
    row-gap: 10px;
    border-radius: 8px;
  }
}
.top-support__item .num {
  font-family: Inter;
  font-weight: 600;
  font-size: 100px;
  font-size: 72px;
  line-height: 0.7;
  color: #F59722;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
}
@media (max-width: 767px) {
  .top-support__item .num {
    font-size: 56px;
  }
}
.top-support__item .supportTitle {
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 40px;
  font-size: 26px;
  line-height: 1.55;
  line-height: 1.4;
  text-align: justify;
  color: #fff;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .top-support__item .supportTitle {
    font-size: 21px;
  }
}
.top-support__item .supportDesc {
  margin-bottom: auto;
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
  color: #fff;
}
@media (max-width: 767px) {
  .top-support__item .supportDesc {
    font-size: 14px;
  }
}
.top-support__item .supportImage {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  overflow: clip;
  height: auto;
  width: 100%;
}
.top-support__item .supportImage img {
  aspect-ratio: 575/365;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .top-support__item .supportImage {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    height: auto;
  }
}

html[lang=en] .top-support__item .supportTitle {
  text-align: left;
}
html[lang=en] .top-support__item .supportDesc {
  text-align: left;
}

.top-group {
  word-break: break-all;
  padding-bottom: 154px;
}
@media (max-width: 767px) {
  .top-group {
    padding-bottom: 72px;
  }
}

.top-group__title {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 44px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #39251a;
}
@media (max-width: 767px) {
  .top-group__title {
    font-size: 28px;
  }
}

.group__listWrap {
  margin-top: 72px;
}
@media (max-width: 767px) {
  .group__listWrap {
    margin-top: 38px;
  }
}

.group__list {
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 48px;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.group__list::after {
  content: "";
  width: 18%;
  min-width: 180px;
}
@media (max-width: 767px) {
  .group__list {
    row-gap: 16px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}

.group__item {
  min-width: 180px;
  width: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  text-align: justify;
  text-align: left;
}
@media (max-width: 767px) {
  .group__item {
    width: 100%;
  }
}
.group__item > * {
  width: 100%;
}

html[lang=en] .group__item .group__itemLogo {
  text-align: left;
}

#n03-bakuteria.group__item .group__itemLogo {
  padding: 2%;
}

.group__itemImage {
  aspect-ratio: 217/150;
  max-height: 150px;
}
.group__itemImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.group__itemLogo {
  height: 68px;
  padding: 10% 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .group__itemLogo {
    height: 30px;
    padding: 10% 10%;
  }
}

.group__itemCopy {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #39251a;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .group__itemCopy {
    font-size: 12px;
  }
}

.group__itemIndustry {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 12px;
  line-height: 1.75;
  color: #39251a;
  font-feature-settings: "palt";
}
.group__itemIndustry::before {
  content: "ー";
  color: #E56F23;
}
@media (max-width: 767px) {
  .group__itemIndustry {
    font-size: 10px;
  }
}

.group__itemLink a {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 10px;
  line-height: 2.1;
  color: #39251a;
  opacity: 0.45;
  letter-spacing: 0;
}

.group__itemLogo {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #fff;
}

.group__itemLogo::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-main);
  background-color: #ffeee3;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  z-index: -1;
}

.group__itemLogo:hover::before {
  animation: slideIn 0.5s forwards cubic-bezier(0.63, 0.05, 0.12, 1);
}

.group__itemLogo.off::before {
  animation: slideOut 0.5s forwards cubic-bezier(0.63, 0.05, 0.12, 1);
}

@media screen and (max-width: 767px) {
  .group__item {
    display: grid;
    grid-template: "image logo" "image copy" "image industry" "image link"/124px 1fr;
    align-items: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 0px;
    min-height: 115px;
  }
  .group__itemImage {
    grid-area: image;
    aspect-ratio: 1/1;
    align-self: flex-start;
  }
  .group__itemImage img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .group__itemLogo {
    grid-area: logo;
  }
  .group__itemLogo img {
    width: 100%;
    height: 32px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .group__itemCopy {
    grid-area: copy;
  }
  .group__itemIndustry {
    grid-area: industry;
  }
  .group__itemLink {
    grid-area: link;
  }
}
.top-news {
  padding-bottom: 24px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(128, 128, 128, 0.06) 100%);
}
@media (max-width: 767px) {
  .top-news {
    background: #fff;
  }
}

.top-news__inner {
  max-width: 1176px;
  padding-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}
@media (max-width: 767px) {
  .top-news__inner {
    width: 88%;
  }
}

.top-news__title {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 44px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #39251a;
}
@media (max-width: 767px) {
  .top-news__title {
    font-size: 28px;
  }
}

.top-news__listWrap {
  margin-top: 64px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2%;
  padding-right: 2%;
}
@media (max-width: 767px) {
  .top-news__listWrap {
    margin-top: 40px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.top-news__item {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #BCBCBC;
}
@media (max-width: 767px) {
  .top-news__item {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.top-news__itemInner {
  display: grid;
  grid-template: "date title title" "desc desc link"/8.6% 1fr auto;
  align-items: center;
  row-gap: 4px;
}
@media (max-width: 767px) {
  .top-news__itemInner {
    row-gap: 0px;
    grid-template: "date" "title" "desc" "link";
  }
}
.top-news__itemInner p,
.top-news__itemInner h3 {
  margin-bottom: 0;
}

.newsDate {
  grid-area: date;
  font-family: Inter;
  font-weight: bold;
  font-size: 12px;
  text-align: left;
  color: #39251a;
}

.newsTitle {
  grid-area: title;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 18px;
  text-align: left;
  color: #e56f23;
}

.newsTitle a {
  color: #e56f23;
}
.newsTitle a:hover {
  text-decoration: underline;
  opacity: 1;
}

.newsDesc {
  padding-right: 5%;
  grid-area: desc;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  color: #39251a;
}
@media (max-width: 767px) {
  .newsDesc {
    padding-right: 0;
  }
}

.newsLink {
  grid-area: link;
  align-self: flex-end;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 16px;
  line-height: 28.8px;
  text-align: left;
  color: #39251a;
}
.newsLink::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url(../img/top2025/ico-arrow-orange.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.top-news__nav {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.top-news__navLink {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
  color: #e56f23;
  border-bottom: 1px solid #e56f23;
  padding-bottom: 0.5em;
}

.slick-dots li button:before {
  font-size: 10px !important;
  color: #e56f23 !important;
}

.slick-dots li.slick-active button:before {
  font-size: 16px !important;
  color: #e56f23 !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 40px !important;
}

.slick-dots {
  bottom: -30px !important;
}/*# sourceMappingURL=front-page.css.map */