@charset "UTF-8";

.mainvisual .tit{
  max-width: 865px;
}
@media screen and (max-width: 767px) {
  .mainvisual .tit{
    max-width: none;
    width: 60%;
  }
}

.conts{
  background: #f1eee5;
  color: #866659;
  padding: 125px 0 200px;
  position: relative;
  overflow-x: hidden;
}
.conts .inner{
  position: relative;
  max-width: 1094px;
  width: 90%;
  margin: 0 auto;
}
 .conts .ill{
  position: absolute;
  top: -5%;
  right: -22%;
  max-width: 360px;
  width: 40%;
}
.conts .inner .txt{
  text-align: center;
  margin: 120px 0 50px;
  font-size: clamp(15px,2.4vw,38px);
  line-height: 1.6;
}
.conts .inner a{
  display: flex;
  justify-content: center;
  border: solid 1px #fff;
  border-radius: 5px;
  padding: 20px 5px 45px;
  color: #fff;
  position: relative;
  text-decoration: none;
  max-width: 850px;
  width: 100%;
  font-size: clamp(14px,2vw,28px);
  line-height: 1.4;
  box-shadow: 2px 2px 3px rgba(0,0,0,.5);
  transition: .3s;
  text-align: center;
  margin: 0 auto;
}
.conts .inner a{
  background: linear-gradient(to bottom, #b85d5d 0%,#883229 100%);  
}
.conts .inner a:hover{
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.conts .inner a:after{
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 18px 15px 0px 15px;
}
@media screen and (max-width: 767px) {
  .conts{
    padding: 60px 0 50px;
  }
  .conts .inner .txt{
    margin: 60px 0 30px;
  }
  .conts .inner a{
    display: block;
    padding: 20px 5px;
  }
  .conts .inner a:after{
    bottom: 5px;
    border-width: 10px 7px 0px 7px;
  }
}