@charset "UTF-8";
/* CSS Document */


@media screen and (max-width:768px) {
  .header .top_description {
    display: none;
  }

  .br-sp {
    display: block;
  }
}


/* KV */
.kv {
  background-image: url("../img/top/kv.jpg");
  height: 500px;
  background-position: center;
  position: relative;
}

.kv_text {
  color: #fff;
  text-align: right;
  padding-right: 35px;
  max-width: 1040px;
  margin: 0 auto;
}

.kv h2 {
  font-size: 2.9rem;
  color: #fff;
  padding: 180px 0px 10px 0;
  text-align: right;
  font-weight: 500;
}

.kv_description {
  font-size: 2.9rem;
  line-height: 4.0rem;
}

.main_button_text {
  padding: 22px 20px;
  background-color: #F8A028;
  color: #fff;
  font-size: 2.4rem;
  width: 350px;
  height: 70px;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  margin-top: 30px;
  transition: background-color 1s, color 1s;
}

.main_button_text:hover {
  background-color: #fff;
  color: #F8A028;
}

.main-button {
  margin-top: 50px;
}

.content-width {
  max-width: 1040px;
  margin: 0 auto;
}

@media screen and (max-width:768px) {
  .kv {
    background-image: url("../img/top/kv_sp.jpg");
    background-position: left bottom;
    height: 500px;
  }

  .kv h2 {
    padding: 30px 0px 260px 20px;
    text-align: left;
    line-height: 3.0rem;
    font-size: 2.0rem;
  }

  .kv_description {
    display: none;
  }

  .main_button_text {
    font-size: 2.0rem;
  }

  .main-button {
    margin-top: 90px;
  }
}


.news,
.topics,
.about,
.kokunai,
.kaigai,
.bazaar {
  padding: 10px 20px;
}


/* section */
.section_title::after {
  margin-left: 20px;
  border-top: 1px solid #707070;
  content: "";
  flex-grow: 1;
}

.section_title {
  font-size: 2.2rem;
  text-align: left;
  display: flex;
  align-items: center;
  /* 垂直中心 */
}


/* news */
.news {
  margin-top: 80px;
}

.news_1,
.news_2 {
  padding-top: 40px;
  text-align: left;
  padding-left: 40px;
  font-size: 2.0rem;
  line-height: 3.0rem;
}

.news__item {
  padding-top: 40px;
  text-align: left;
  padding-left: 40px;
  font-size: 2.0rem;
  line-height: 3.0rem;
}
.news__item + .news__item {
  padding-top: 20px;
}
.news__item:last-of-type {
  margin-bottom: 20px;
}


date {
  padding: 0 40px 0 0;
}

.news_2 {
  padding-top: 20px;
  margin-bottom: 20px;
}


.topics {
  margin-top: 40px;
}

.button {
  text-align: right;
  margin-bottom: 40px;
  margin-top: 20px;
}

.section_button_text {
  color: #fff;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  font-size: 2.0rem;
  width: 300px;
  height: 64px;
  background-color: #54A8B3;
  text-align: center;
  transition: background-color 1s, color 1s;
}

.section_button_text:hover {
  background-color: #fff;
  color: #54A8B3;
}

/* about */
.about {
  margin-top: 40px;
}

.about_content-wrapper {
  display: flex;
  padding-top: 40px;
  align-items: flex-start;
}

img.section_img {
  padding-right: 40px;
  width: 289px;
}

.about_description {
  font-size: 1.6rem;
  line-height: 3.5rem;
  text-align: left;
}

@media screen and (max-width:768px) {
  .section_button_text {
    padding: 8px;
    font-size: 1.6rem;
    width: 200px;
    height: 40px;
  }

  .about_content-wrapper {
    flex-direction: column;
  }

  .about_description {
    padding-top: 20px;
  }
}


.fadeIn {
  animation-duration: 2s;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}