@charset "UTF-8";
.keyvisual {
  margin-bottom: 5rem;
}

.home-about,
.home-base,
.home-info {
  overflow-y: hidden;
  /* messageのshadow隠し */
  margin: 0 3vw clamp(4rem, 6vw, 5rem);
}

.home-about {
  background-image: url("../img/pic_about_01.jpg");
  background-size: cover;
}

.home-base {
  background-image: url("../img/pic_base_01.jpg");
  background-size: cover;
}

.triangle {
  position: relative;
  overflow: hidden;
}
.triangle::before {
  position: absolute;
  top: 0;
  left: -6rem;
  display: block;
  content: "";
  width: 8em;
  height: 3em;
  background-color: #007bff;
  transform: rotate(-45deg);
}

.message {
  padding: 7vw 3vw;
  background-color: rgba(255, 255, 255, 0.8666666667);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1333333333);
  max-width: clamp(300px, 65vw, 800px);
  margin-right: auto;
  margin-left: auto;
}
.message h2 {
  font-weight: normal;
  font-size: clamp(16px, 3.4vw, 3rem);
  font-family: serif;
  margin-bottom: 2rem;
}
.message p {
  line-height: 2;
  font-size: clamp(0.9rem, 1.4vw, 1.4rem);
  text-shadow: 0 0 10px white;
  color: #482d1f;
}
.message .symbol {
  text-align: center;
  margin-bottom: 2rem;
}
.message .symbol img {
  width: clamp(1.8rem, 4.3vw, 3.4rem);
  height: auto;
  display: inline-block;
}
.message .btn {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.message .btn-message {
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  border-color: black;
  font-size: clamp(0.9rem, 1.6vw, 1.4rem);
  font-weight: normal;
  width: clamp(240px, 60vw, 350px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}
.message .btn-message .arrow {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  transition: all 0.3s ease;
}
.message .btn-message:hover {
  opacity: 0.9;
}
.message .btn-message:hover .arrow {
  margin-left: 0.4rem;
  margin-right: 0;
  transition: all 0.3s ease;
}

.dl-info,
.ul-partner {
  display: flex;
}

.scroll-info {
  max-height: 14em;
  overflow-y: scroll;
}

@media screen and (max-width: 767px) {
  .scroll-info {
    max-height: 70vh;
    padding: 0;
  }
  .dl-info {
    display: block;
  }
}
.dl-info {
  border-top: 1px dashed #cccccc;
}
.dl-info dt {
  padding: 1rem;
  padding-left: 2rem;
  margin-right: 0.5rem;
  position: relative;
}
.dl-info dt::before {
  position: absolute;
  top: 1.5rem;
  left: 0rem;
  display: inline-block;
  content: "";
  width: 1rem;
  height: 0.2rem;
  background-color: #ef8633;
}
.dl-info dd {
  padding: 1rem;
}
.dl-info:last-of-type {
  border-bottom: 1px dashed #cccccc;
}

.home-info .h2-info,
.home-info .h2-partner,
.home-partner .h2-info,
.home-partner .h2-partner {
  margin-top: 2rem;
  text-align: center;
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
}

.home-partner {
  background-color: #f1f1f1;
  padding: 3vw 0;
}
.home-partner li {
  margin-right: 3rem;
}
.home-partner li:last-of-type {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .home-partner {
    text-align: center;
  }
  .home-partner li {
    margin-right: 1.5rem;
  }
}/*# sourceMappingURL=home.css.map */