@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

#voice {
  margin-top: -20px;
}
#voice .wrapper_1300 {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}

.img01 {
  max-width: 400px;
  margin: 20px auto;
}

.img04 {
  max-width: 350px;
  margin: 0 auto 20px;
}

.flexArea {
  display: flex;
  justify-content: space-between;
  max-width: 860px;
  margin: 0 auto 60px;
  flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .flexArea {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 520px) {
  .flexArea {
    flex-direction: column;
  }
}
.flexArea .item {
  display: block;
  width: calc(50% - 15px);
  margin-bottom: 30px;
}
@media screen and (max-width: 520px) {
  .flexArea .item {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.btnArea {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 820px) {
  .btnArea {
    margin-bottom: 45px;
    max-width: 315px;
  }
}
.btnArea a {
  display: block;
  width: calc(33% - 15px);
  margin-bottom: 30px;
}
@media screen and (max-width: 520px) {
  .btnArea a {
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.title {
  padding: 15px 30px;
  background-color: #3f858e;
}
@media screen and (max-width: 520px) {
  .title img {
    max-width: 70px;
  }
}

.yellow {
  background-color: #9b8c50;
}
@media screen and (max-width: 520px) {
  .yellow img {
    max-width: 100px;
  }
}

.red {
  background-color: #a85a3f;
}
@media screen and (max-width: 520px) {
  .red img {
    max-width: 130px;
  }
}

.voiceArea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 60px auto;
}
@media screen and (max-width: 520px) {
  .voiceArea {
    margin-bottom: 40px;
  }
}
.voiceArea .voiceItem {
  width: calc(33% - 20px);
  margin-bottom: 40px;
}
@media screen and (max-width: 520px) {
  .voiceArea .voiceItem {
    width: calc(50% - 10px);
  }
}
.voiceArea .dummy {
  margin: 0;
}

.slick-slider {
  margin: 40px 0 180px !important;
}

.slick-slide {
  display: block;
  box-sizing: border-box;
}
.slick-slide img {
  padding: 0 10px;
}

.slick-arrow {
  font-size: 0;
}

.slick-dots {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 90;
  bottom: -45px;
  display: none;
}
.slick-dots li {
  display: inline-block;
  margin: 0 7px;
}
.slick-dots li button {
  position: relative;
  text-indent: -9999px;
}
.slick-dots li button:before {
  content: "●";
  color: #333;
  text-indent: 0px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 14px;
}
.slick-dots li.slick-active button:before {
  color: #9b8c50;
}

.slider02 .slick-dots li.slick-active button:before {
  color: #a85a3f;
}

.slick-prev,
.slick-next {
  position: absolute;
  bottom: -100px;
  left: 35%;
  top: auto;
  width: 40px;
  height: 40px;
  transform: none;
  z-index: 10;
  background: none;
  border: none;
}
.slick-prev:before,
.slick-next:before {
  font-size: 0;
}

.slick-next {
  left: 54%;
}

.slick-prev img,
.slick-next img {
  width: 40px; /* サイズ調整 */
}

a:hover {
  filter: brightness(120%) saturate(160%);
  transition: 0.5s;
}

.wrapper02 {
  width: 95%;
}

.fadein {
  visibility: hidden;
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-fill-mode: both;
  animation-duration: 1s;
  visibility: visible !important;
  opacity: 0;
  filter: blur(10px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}