/* --------------------------
 * loading
-------------------------- */
.loading {
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  transition: 0.75s ease all;
}
.loading.start figure {
  opacity: 1;
}
.loading.active {
  opacity: 0;
}
.loading figure {
  opacity: 0;
  transition: 0.75s ease all;
  width: 150px;
}
@media screen and (max-width: 1440px) {
  .loading figure {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .loading figure {
    width: 100px;
  }
}

/* --------------------------
 * mainVisual
-------------------------- */
.mainVisual {
  width: 100%;
  height: calc(100vh - 120px);
  position: relative;
}
@media screen and (max-width: 1536px) {
  .mainVisual {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual {
    padding-bottom: 180px;
  }
}
.mainVisual.active .mainVisual__inner .mainVisual__inner__item img {
  transform: scale(1);
}
.mainVisual__inner {
  position: relative;
  width: 100%;
  height: calc(100vh - 280px);
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 1536px) {
  .mainVisual__inner {
    height: calc(100vh - 220px);
  }
}
@media screen and (max-width: 1440px) {
  .mainVisual__inner {
    height: calc(100vh - 220px);
  }
}
@media screen and (max-width: 1024px) {
  .mainVisual__inner {
    height: calc(100vh - 200px);
  }
}
@media screen and (max-width: 960px) {
  .mainVisual__inner {
    height: calc(100svh - 200px);
  }
}
@media screen and (max-width: 767px) {
  .mainVisual__inner {
    height: calc(100svh - 330px);
  }
}
.mainVisual__inner::before {
  content: "";
  width: 100%;
  height: 50%;
  display: block;
  background-image: linear-gradient(0deg, rgba(39, 101, 99, 0.8), rgba(39, 101, 99, 0));
  position: absolute;
  left: 0;
  bottom: 0;
  mix-blend-mode: multiply;
  z-index: 9;
}
.mainVisual__inner h2 {
  position: absolute;
  left: 50px;
  bottom: 35px;
  z-index: 99;
}
@media screen and (max-width: 960px) {
  .mainVisual__inner h2 {
    left: 25px;
    bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual__inner h2 {
    left: 20px;
    bottom: 28px;
  }
}
.mainVisual__inner h2 p {
  display: block;
  font-size: 4.8vw;
  line-height: 1;
  margin-top: 15px;
  font-weight: 500;
  color: #FFFFFF;
}
@media screen and (max-width: 960px) {
  .mainVisual__inner h2 p {
    font-size: 7.4vw;
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual__inner h2 p {
    font-size: 13vw;
    margin-top: 10px;
  }
}
.mainVisual__inner .entry {
  width: 720px;
  height: 90px;
  position: absolute;
  bottom: 35px;
  right: 50px;
  z-index: 99;
}
@media screen and (max-width: 1536px) {
  .mainVisual__inner .entry {
    width: 610px;
    right: 35px;
  }
}
@media screen and (max-width: 960px) {
  .mainVisual__inner .entry {
    width: 300px;
    height: 145px;
    right: 25px;
    bottom: 50px;
  }
  .mainVisual__inner .entry ul {
    width: 300px;
    display: block;
  }
  .mainVisual__inner .entry ul li {
    width: 100%;
    margin-top: 5px;
  }
  .mainVisual__inner .entry ul li:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual__inner .entry {
    width: calc(100% - 32px);
    height: 145px;
    right: 16px;
    bottom: -470px;
  }
  .mainVisual__inner .entry ul {
    width: auto;
    display: block;
  }
}
.mainVisual__inner__item {
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  width: 20%;
}
@media screen and (max-width: 960px) {
  .mainVisual__inner__item {
    width: 25%;
  }
}
@media screen and (max-width: 960px) {
  .mainVisual__inner__item:nth-child(5) {
    display: none;
  }
}
.mainVisual__inner__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: 1.5s ease all;
}
.mainVisual .logoSlide {
  height: 100px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
}
.mainVisual .logoSlide .logoSlide__wrap {
  display: flex;
  overflow: hidden;
  height: 60px;
  width: 100%;
  align-items: center;
}
.mainVisual .logoSlide .logoSlide__wrap .logoSlide__list {
  display: flex;
  list-style: none;
  gap: 0 20px;
  padding-right: 20px;
}
.mainVisual .logoSlide .logoSlide__wrap .logoSlide__list__left {
  animation: logoSlideAnim 50s infinite linear 0.5s both;
}
.mainVisual .logoSlide .logoSlide__wrap .logoSlide__list .logoSlide__item {
  width: 11.1111111111vw;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .mainVisual .logoSlide .logoSlide__wrap .logoSlide__list .logoSlide__item {
    width: 20vw;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual .logoSlide .logoSlide__wrap .logoSlide__list .logoSlide__item {
    width: 40vw;
  }
}
@media screen and (max-width: 960px) {
  .mainVisual .logoSlide .logoSlide__wrap .logoSlide__list .logoSlide__item:nth-child(6) {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .mainVisual .logoSlide .logoSlide__wrap .logoSlide__list .logoSlide__item:nth-child(7) {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .mainVisual .logoSlide .logoSlide__wrap .logoSlide__list .logoSlide__item:nth-child(8) {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .mainVisual .logoSlide .logoSlide__wrap .logoSlide__list .logoSlide__item:nth-child(9) {
    display: none;
  }
}
.mainVisual .logoSlide .logoSlide__wrap .logoSlide__list .logoSlide__item img {
  width: 100%;
  height: auto;
}

@keyframes logoSlideAnim {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* --------------------------
 * intro
-------------------------- */
.intro {
  margin: 100px 0 0;
}
@media screen and (max-width: 1024px) {
  .intro {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .intro {
    margin-top: 75px;
  }
}
.intro__inner {
  margin-left: calc(50% - 640px);
  position: relative;
}
@media screen and (max-width: 1680px) {
  .intro__inner {
    margin-left: calc(50% - 580px);
  }
}
@media screen and (max-width: 1440px) {
  .intro__inner {
    margin-left: calc(50% - 480px);
  }
}
@media screen and (max-width: 1024px) {
  .intro__inner {
    padding: 0;
    margin: 0 50px 100px;
  }
}
@media screen and (max-width: 767px) {
  .intro__inner {
    margin: 0 16px 50px;
  }
}
.intro__inner .mainImg {
  width: 85%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  border-radius: 50px 0 0 50px;
}
@media screen and (max-width: 1440px) {
  .intro__inner .mainImg {
    border-radius: 30px 0 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .intro__inner .mainImg {
    width: 100%;
    height: auto;
    border-radius: 10px;
    aspect-ratio: 16/8;
    position: relative;
    right: inherit;
    top: inherit;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .intro__inner .mainImg {
    border-radius: 0px;
    aspect-ratio: 16/9;
    margin: 0 -16px;
    width: auto;
  }
}
.intro__inner .mainImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro__inner .desc {
  position: relative;
  width: 550px;
  padding: 150px 0 100px;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .intro__inner .desc {
    width: 480px;
    padding: 120px 0 80px;
  }
}
@media screen and (max-width: 1024px) {
  .intro__inner .desc {
    margin: 0 auto;
    padding: 50px 0px 0;
    width: 800px;
  }
}
@media screen and (max-width: 960px) {
  .intro__inner .desc {
    margin: 0;
    padding: 50px 50px 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .intro__inner .desc {
    padding: 32px 0px 0;
  }
}
.intro__inner .desc .catch {
  margin-bottom: 35px;
}
.intro__inner .desc .catch p {
  font-size: 8rem;
  line-height: 1;
  color: #09BAB5;
  font-weight: 600;
}
@media screen and (max-width: 1440px) {
  .intro__inner .desc .catch p {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .intro__inner .desc .catch p {
    font-size: 4.2rem;
  }
}
.intro__inner .desc .catch p:nth-child(1) {
  margin-left: -75px;
}
@media screen and (max-width: 1024px) {
  .intro__inner .desc .catch p:nth-child(1) {
    margin-left: -50px;
  }
}
@media screen and (max-width: 767px) {
  .intro__inner .desc .catch p:nth-child(1) {
    margin-left: 0;
  }
}
.intro__inner .desc .name {
  font-size: 1.4rem;
  padding-left: 15px;
  position: relative;
  line-height: 1;
  margin-bottom: 20px;
  color: #718685;
}
@media screen and (max-width: 1440px) {
  .intro__inner .desc .name {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .intro__inner .desc .name {
    margin-bottom: 10px;
  }
}
.intro__inner .desc .name::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50em;
  background-color: #09BAB5;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
}
.intro__inner .desc h2 {
  font-size: 2.7rem;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1;
}
@media screen and (max-width: 1440px) {
  .intro__inner .desc h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .intro__inner .desc h2 {
    line-height: 1.6;
  }
}
.intro__inner .desc .tx {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
  margin-bottom: 50px;
}
@media screen and (max-width: 1440px) {
  .intro__inner .desc .tx {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .intro__inner .desc .tx {
    margin-bottom: 25px;
  }
}
.intro__inner .desc .btn {
  float: right;
}

/* --------------------------
 * latestList
-------------------------- */
.latestList {
  border-radius: 50px;
  min-height: 1000px;
  padding-top: 200px;
  margin-top: -100px;
  z-index: -1;
  margin-bottom: -100px;
}
@media screen and (max-width: 1024px) {
  .latestList {
    margin-top: 0px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 960px) {
  .latestList {
    margin-top: 0px;
    padding-top: 50px;
    border-radius: 20px;
  }
}
.latestList .container {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 75px;
}
@media screen and (max-width: 1024px) {
  .latestList .container {
    padding: 50px;
  }
}
@media screen and (max-width: 960px) {
  .latestList .container {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .latestList .container {
    padding: 32px 16px;
    border-radius: 10px;
  }
}

/* --------------------------
 * latestList
-------------------------- */
.interval {
  aspect-ratio: 16/8;
  display: block;
  overflow: hidden;
  z-index: -1;
  position: relative;
  bottom: -50px;
}
@media screen and (max-width: 1024px) {
  .interval {
    aspect-ratio: 16/12;
  }
}
@media screen and (max-width: 767px) {
  .interval {
    aspect-ratio: 1/1.5;
  }
}
.interval__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.interval__inner p {
  text-align: center;
  line-height: 1.2;
  display: inline-block;
  font-size: 4.2rem;
  font-weight: 600;
  color: #FFFFFF;
  z-index: 9;
  margin-bottom: 75px;
}
@media screen and (max-width: 1440px) {
  .interval__inner p {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .interval__inner p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .interval__inner p {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}
.interval img.bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.interval .logoloop {
  position: absolute;
  left: 0;
  bottom: 150px;
  z-index: 9;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .interval .logoloop {
    bottom: 1200px;
  }
}

/* --------------------------
 * latestList
-------------------------- */
.popular {
  margin-top: -100px;
  background-color: #FFFFFF;
  padding: 150px 0;
  border-radius: 50px 50px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .popular {
    padding: 50px 0;
    border-radius: 20px 20px 0 0;
  }
}
.popular img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular .flexWrap {
  flex-wrap: wrap;
  margin: 100px -25px 50px;
}
@media screen and (max-width: 767px) {
  .popular .flexWrap {
    margin: 35px -8px 35px;
  }
}
.popular .flexWrap .item {
  padding: 25px;
}
@media screen and (max-width: 1024px) {
  .popular .flexWrap .item {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .popular .flexWrap .item {
    width: 50%;
    padding: 8px;
  }
}
.popular .btn {
  margin: 0 auto;
}

/* --------------------------
 * value
-------------------------- */
.value {
  margin: 0px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .value {
    padding: 0 50px 50px;
  }
}
@media screen and (max-width: 767px) {
  .value {
    padding: 0 16px 0px;
  }
}
.value__inner {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .value__inner {
    display: block;
    flex-wrap: inherit;
    margin-right: 0;
  }
}
.value__inner .mainImg {
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 30px 30px 0;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 1440px) {
  .value__inner .mainImg {
    aspect-ratio: 7/6;
  }
}
@media screen and (max-width: 1024px) {
  .value__inner .mainImg {
    width: 100%;
    height: auto;
    aspect-ratio: 16/8;
    position: relative;
    right: inherit;
    top: inherit;
    margin-bottom: 0px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .value__inner .mainImg {
    border-radius: 0px;
    aspect-ratio: 16/9;
    margin: 0 -16px;
    width: auto;
  }
}
.value__inner .mainImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.value__inner .desc {
  position: relative;
  width: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .value__inner .desc {
    width: 800px;
    margin: 0 auto;
    display: block;
    align-items: inherit;
    justify-content: inherit;
  }
}
@media screen and (max-width: 960px) {
  .value__inner .desc {
    margin: 0;
    padding: 0px 50px 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .value__inner .desc {
    padding: 32px 0px 0;
  }
}
.value__inner .desc__inner {
  width: 60%;
}
@media screen and (max-width: 1440px) {
  .value__inner .desc__inner {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .value__inner .desc__inner {
    width: auto;
  }
}
.value__inner .desc .catch {
  margin-top: 50px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .value__inner .desc .catch {
    margin-top: 0px;
  }
}
.value__inner .desc .catch p {
  font-size: 7.2rem;
  line-height: 1;
  color: #09BAB5;
  font-weight: 600;
}
@media screen and (max-width: 1680px) {
  .value__inner .desc .catch p {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1536px) {
  .value__inner .desc .catch p {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 1440px) {
  .value__inner .desc .catch p {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .value__inner .desc .catch p {
    font-size: 3.6rem;
  }
}
.value__inner .desc .name {
  font-size: 1.4rem;
  padding-left: 15px;
  position: relative;
  line-height: 1;
  margin-bottom: 20px;
  color: #718685;
}
@media screen and (max-width: 1440px) {
  .value__inner .desc .name {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .value__inner .desc .name {
    margin-bottom: 10px;
  }
}
.value__inner .desc .name::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50em;
  background-color: #09BAB5;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
}
.value__inner .desc h2 {
  font-size: 2.7rem;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1;
}
@media screen and (max-width: 1440px) {
  .value__inner .desc h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .value__inner .desc h2 {
    line-height: 1.6;
  }
}
.value__inner .desc .tx {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
  margin-bottom: 50px;
}
@media screen and (max-width: 1440px) {
  .value__inner .desc .tx {
    font-size: 1.5rem;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .value__inner .desc .tx {
    margin-bottom: 25px;
  }
}
.value__inner .desc .btn {
  float: right;
}

/* --------------------------
 * other
-------------------------- */
.other {
  margin: 0px 25px 45px;
  background-color: #F6F6F6;
  border-radius: 0 0 10px 10px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .other {
    margin: 50px 20px 50px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .other {
    margin: 50px 16px 50px;
    border-radius: 5px;
  }
}
.other .container {
  padding-top: 100px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .other .container {
    padding: 35px 0px 50px;
  }
}
.other .container .flexWrap {
  gap: 2px;
  align-items: stretch;
}
@media screen and (max-width: 1440px) {
  .other .container .flexWrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .other .container .flexWrap {
    flex-wrap: inherit;
    display: block;
    align-items: inherit;
    gap: inherit;
  }
}
.other .container .flexWrap .item {
  width: 25%;
}
@media screen and (max-width: 1440px) {
  .other .container .flexWrap .item {
    width: calc(50% - 2px);
  }
}
@media screen and (max-width: 767px) {
  .other .container .flexWrap .item {
    width: 100%;
    margin-bottom: 5px;
  }
}
.other .container .flexWrap .item a {
  background-color: #FFFFFF;
  padding: 40px;
  display: block;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 1440px) {
  .other .container .flexWrap .item a {
    padding: 35px;
  }
}
@media screen and (max-width: 767px) {
  .other .container .flexWrap .item a {
    padding: 25px;
  }
}
.other .container .flexWrap .item a:hover {
  background-color: #E6F8F8;
}
.other .container .flexWrap .item a::before {
  content: "";
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background-color: #09BAB5;
}
.other .container .flexWrap .item a .imgArea {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
}
@media screen and (max-width: 1440px) {
  .other .container .flexWrap .item a .imgArea {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .other .container .flexWrap .item a .imgArea {
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
  }
}
.other .container .flexWrap .item a .imgArea img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.other .container .flexWrap .item a h2 {
  text-align: center;
  font-weight: 500;
  font-size: 2.1rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .other .container .flexWrap .item a h2 {
    font-size: 1.8rem;
  }
}
.other .container .flexWrap .item a .ttnorms {
  font-size: 1.2rem;
  color: #09BAB5;
  line-height: 1;
  margin-bottom: 35px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 1440px) {
  .other .container .flexWrap .item a .ttnorms {
    margin-bottom: 25px;
  }
}
.other .container .flexWrap .item a .tx {
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .other .container .flexWrap .item a .tx {
    font-size: 1.4rem;
  }
}
.other .entry {
  position: relative;
  width: 610px;
  height: 90px;
  margin: 0 auto;
  bottom: -45px;
}
@media screen and (max-width: 767px) {
  .other .entry {
    width: auto;
    padding: 0 16px 50px;
    height: auto;
    bottom: 0;
  }
}
.other .entry ul li .fukidashi {
  width: 64px;
  left: 30px;
}

/* --------------------------
 * news
-------------------------- */
.news {
  padding: 100px 0 0px;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 0px 0 0px;
  }
}
.news .container .flexWrap {
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .news .container .flexWrap {
    flex-wrap: inherit;
    display: block;
  }
}
.news .container .flexWrap .item {
  height: 100%;
  position: relative;
}
.news .container .flexWrap .item:nth-child(1) {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .news .container .flexWrap .item:nth-child(1) {
    width: 100%;
    margin-bottom: 50px;
    position: relative;
  }
}
.news .container .flexWrap .item:nth-child(1) .tx {
  width: 64%;
  margin: 60px 0 30px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.1;
}
@media screen and (max-width: 1440px) {
  .news .container .flexWrap .item:nth-child(1) .tx {
    width: 75%;
    line-height: 2;
  }
}
@media screen and (max-width: 1024px) {
  .news .container .flexWrap .item:nth-child(1) .tx {
    width: 55%;
    margin: 25px 0;
  }
}
@media screen and (max-width: 767px) {
  .news .container .flexWrap .item:nth-child(1) .tx {
    width: 100%;
  }
}
.news .container .flexWrap .item:nth-child(2) {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .news .container .flexWrap .item:nth-child(2) {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .news .container .flexWrap .item:nth-child(2) .postList {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .news .container .flexWrap .item:nth-child(2) .postList {
    margin: 0 -16px 50px;
  }
}
.news .container .flexWrap .item:nth-child(2) .postList ul {
  border-bottom: 1px solid #dddddd;
}
.news .container .flexWrap .item:nth-child(2) .postList ul li {
  border-top: 1px solid #dddddd;
}
.news .container .flexWrap .item:nth-child(2) .postList ul li a {
  padding: 25px 20px;
  padding-right: 50px;
  position: relative;
  display: block;
}
@media screen and (max-width: 1440px) {
  .news .container .flexWrap .item:nth-child(2) .postList ul li a {
    padding: 20px 15px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .news .container .flexWrap .item:nth-child(2) .postList ul li a {
    padding: 15px 40px 15px 15px;
  }
}
.news .container .flexWrap .item:nth-child(2) .postList ul li a:hover h3 {
  color: #276563;
}
.news .container .flexWrap .item:nth-child(2) .postList ul li a .date {
  font-size: 1.4rem;
  font-weight: 400;
  color: #718685;
  margin-right: 15px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .news .container .flexWrap .item:nth-child(2) .postList ul li a .date {
    font-size: 1.3rem;
  }
}
.news .container .flexWrap .item:nth-child(2) .postList ul li a .cat {
  font-size: 1.3rem;
  font-weight: 500;
  color: #09BAB5;
}
@media screen and (max-width: 767px) {
  .news .container .flexWrap .item:nth-child(2) .postList ul li a .cat {
    font-size: 1.2rem;
  }
}
.news .container .flexWrap .item:nth-child(2) .postList ul li a h3 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 5px;
}
@media screen and (max-width: 1024px) {
  .news .container .flexWrap .item:nth-child(2) .postList ul li a h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .news .container .flexWrap .item:nth-child(2) .postList ul li a h3 {
    line-height: 1.4;
    font-size: 1.4rem;
  }
}
.news .container .flexWrap .item:nth-child(2) .postList ul li a img {
  width: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
}/*# sourceMappingURL=index.css.map */