@charset "UTF-8";
#mainvis {
  position: relative;
}
#mainvis .breadcrumbs {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  padding: 0.5em 30px;
  margin: 0;
  text-align: right;
  border-radius: 0;
  color: #fff;
  width: 60%;
  position: absolute;
  right: 0;
  bottom: 0;
}
#mainvis .breadcrumbs a, #mainvis .breadcrumbs .active {
  color: #fff;
}
@media screen and (max-width: 767px) {
  #mainvis .breadcrumbs {
    display: none;
  }
}

/*プロフィール*/
.flex {
  justify-content: space-between;
}
.flex .col-xs-6 {
  flex: 0 0 48%;
  box-sizing: border-box;
}

.sText {
  font-size: 90%;
}

.prof {
  color: #47210d;
  padding: 15px 20px 10px;
  text-align: center;
  margin: 10px 0;
}
.prof span.namae {
  font-size: 1.5em;
}
@media screen and (max-width: 767px) {
  .prof {
    font-size: 85%;
    padding: 15px 10px 10px;
    letter-spacing: 0.05em;
  }
}

.prof2 {
  border-left: 1px solid #ddd;
}

/*トーク*/
#talking {
  padding: 60px 20px;
  background: rgba(83, 165, 221, 0.3);
  overflow: hidden;
}
#talking ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#talking ul li {
  width: 48%;
  /*overflow: hidden;*/
  border-radius: 10px;
  background: #fff;
  float: right;
  clear: both;
  padding: 15px;
  margin-bottom: 30px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  color: #47210d;
  position: relative;
  text-align: left;
}
#talking ul li::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 10px solid #fff;
}
#talking ul li:nth-child(even) {
  float: left;
}
#talking ul li img {
  width: 100px;
  height: auto;
  float: right;
  margin-left: 15px;
}
#talking ul li:nth-child(even) img {
  float: left;
  margin-right: 15px;
  margin-left: 0;
}
#talking ul li strong {
  display: block;
  color: rgb(83, 165, 221);
}

/* ====================================== */
/* ====================================== */
/* col-sm- 991px 以下 */
@media screen and (max-width: 991px) {
  #talking {
    padding: 15px 20px;
  }
  #talking ul li {
    width: 60%;
  }
}
/* col-xs- 767px 以下 */
@media screen and (max-width: 767px) {
  #talking ul li {
    width: 85%;
    font-size: 90%;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
  #talking ul li img {
    width: 60px;
    height: auto;
  }
}