@charset "utf-8";
/* ==========================================================================
	MAIN
	========================================================================== */
#mv-bg {
  background: url("../images/index-images/main-bg.jpg") 50% 100% no-repeat;
  background-size: cover;
}
#mv {
  padding-top: 140px;
}
#mv .wrapper{
  background: url("../images/index-images/mv-bg.png") 50% 50% no-repeat;
  background-size: 100% auto;
}
#slider li{
  width: 100%;
}
#slider li img{
  width: 100%;
  height: auto;
}
/* ==========================================================================
	CONTENTS
	========================================================================== */
.news {
  position: relative;
  background-color: var(--color03);
  display: flex;
  justify-content: flex-end;
  padding: 20px 0 0 0;
  margin-bottom: 0;
}
.news::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: url("../images/index-images/news-img.png") 0 0 no-repeat;
  background-size: 100% 100%;
  left: 8%;
  top: 0;
  z-index: 1;
}
.news-wrapper {
  position: relative;
  width: 76%;
  background-color: #fff;
  right: 0;
  overflow: hidden;
  border-radius: 15px;
  z-index: 2;
}
.news .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
}
.news .box01 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26%;
  background-color: var(--color02);
  padding: 40px 0;
}
.news .box02 {
  display: flex;
  align-items: center;
  width: 74%;
  background-color: #fff;
  padding: 30px 0;
}
.news .box01 h2 {
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  text-align: center;
  margin-bottom: 20px;
}
.news .box01 h2 span {
  display: block;
  color: #fff;
  font-size: 50%;
}
.news .btn {
  width: 160px;
  margin: 0 auto;
}
.news .btn a {
  display: block;
  color: var(--color01);
  font-size: 90%;
  text-align: center;
  background-color: #fff;
  border-radius: 80px;
  padding: 2px 0;
}
.news .btn a:hover {
  background-color: var(--color04);
}
.newsContent {
  width: 100%;
}
.newsContent dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.newsContent dl dt, .newsContent dl dd {
  padding: 6px 0;
  display: block;
  text-align: left;
}
.newsContent dl dt {
  width: 25%;
  min-width: 10em;
  padding-left: 2em;
}
.newsContent dl dd {
  position: relative;
}
.newsContent dl dd a {
  color: #313131;
}
.newsContent dl dd a:hover {
  color: var(--color01);
}
.li-case {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -10px;
}
.li-case li {
  width: 50%;
  font-family: var(--font01);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  padding-left: 1.2em;
  text-indent: -1.2em;
  margin-bottom: 20px;
}
.li-case li:before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--color02);
  margin-right: 10px;
}

/* ==========================================================================
	PC 1025px -
	========================================================================== */
@media screen and (min-width: 1025px) {}
@media screen and (max-width: 1200px) { /*1200以下*/
}
/* ==========================================================================
	TABLET - 1024px
	========================================================================== */
@media screen and (max-width:1024px) {
.news::after {
  left: 3%;
}
.news-wrapper {
  width: 80%;
}

}
/* ==========================================================================
	SP - 640px
	========================================================================== */
@media screen and (max-width: 800px) {
  #mv {
    padding: 100px 0 0 0;
  }
  .news {
    display: block;
    padding: 50px 0 0 0;
    margin-bottom: 0;
  }
  .news::after {
    width: 100px;
    height: 100px;
    left: 2.5%;
    top: 0;
    z-index: 1;
  }
  .news-wrapper {
    position: relative;
    width: 90%;
    margin: 0 auto;
  }
  .news .box {
    display: block;
  }
  .news .box01 {
    display: block;
    width: 100%;
    padding: 15px 0;
  }
  .news .box02 {
    display: block;
    width: 100%;
    padding: 20px;
  }
  .news .box01 h2 {
    margin-bottom: 0;
  }
  .newsContent {
    width: 100%;
    margin-bottom: 20px;
  }
  .newsContent dl {
    display: block;
  }
  .newsContent dl dt, .newsContent dl dd {
    width: 100%;
    padding-left: 0;
  }
  .newsContent dl dt {
    padding-bottom: 5px;
  }
  .newsContent dl dd {
    padding-top: 0;
  }
  .newsContent dl dd:after {
    content: none;
  }
  .li-case {
    display: block;
    margin-bottom: -15px;
  }
  .li-case li {
    width: 100%;
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

}