@charset "UTF-8";
/****************************************
contents
*****************************************/
/* アニメーション▼▼
------------------------------------------------------------ */

@keyframes fadeIn{
  0% {
    opacity:0;
  }
  100%{
    opacity:1;
    
  }
}





/* タイトル▼▼
------------------------------------------------------------ */

.link--cont .main--title{
  background:url(../img/link_main.jpg) no-repeat 0 0;
}

@media (min-width:1600px){
.link--cont .main--title{
    background-size:100%;
  }
}




/* タイトル周り▼▼
------------------------------------------------------------ */
.link{
  padding-bottom:2.0vw;
}
.link .link__wrap{
  width:80%;
  margin:0 auto;
}
.link .link__wrap h3{
  position:relative;
  font-size:24px;
  font-size:2.4rem;
  line-height:1.8em;
  letter-spacing:0.06em;
  padding-bottom:1.0vw;
  font-weight:700;
  opacity:0;
}
.link .link__wrap.active h3{
  animation: anim__greeting 0.8s ease forwards;
}
.link .link__wrap a{
  color:#e75970;
}
.link .link__wrap p{
  position:relative;
  font-size:16px;
  font-size:1.6rem;
  line-height:1.8em;
  padding-bottom:2.0vw;
  letter-spacing:0.06em;
  opacity:0;
}
.link .link__wrap.active p{
  animation: anim__greeting 0.8s 0.3s ease forwards;
}
@keyframes anim__greeting{
  0% {
    left:-50px;
    opacity:0;
  }
  100%{
    left:0;
    opacity:1;
  }
}
@media (max-width:768px){
  .link{
    padding-bottom:15.0vw;
  }
  .link .link__wrap p{
  padding-bottom:3.0vw;
  }
}






.concept__button {
  position: relative;
  animation: anim__concept 0.8s 0.6s ease forwards;
    padding-bottom:10.0vw;
    text-align:right;
  opacity:0;
}
.link .link__wrap.active .concept__button{
  animation: anim__greeting 0.8s 0.6s ease forwards;
}

button.btn {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight:700;
  background-color: #e75970;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1.0rem 0rem;
  border: 2px solid #e75970;
  -webkit-transition: color 0.1s cubic-bezier(0.16, 0.08, 0.355, 1), background 0.1s cubic-bezier(0.16, 0.08, 0.355, 1);
  transition: color 0.1s cubic-bezier(0.16, 0.08, 0.355, 1), background 0.1s cubic-bezier(0.16, 0.08, 0.355, 1);
  display: inline-block;
  cursor: pointer;
  outline: none;
  vertical-align: middle;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
    width:300px;
}
button.btn a {
  color: #fff;
}
button.btn:hover {
  background: #e75970;
  border-color: #e75970;
  color: #fff;
}
button.btn-arrow {
  position: relative;
  -webkit-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}
button.btn-arrow span {
  display: inline-block;
  position: relative;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: transform;
}
button.btn-arrow:hover span {
  -webkit-transform: translate3d(-1rem, 0, 0);
  transform: translate3d(-1rem, 0, 0);
}
button.btn-arrow svg {
  position: absolute;
  width: 1.1em;
  right: 0px;
  right: 0rem;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: right, opacity;
}
button.btn-arrow svg * {
  stroke-width: 5;
  stroke-color: transparent;
}
button.btn-arrow:hover svg {
  opacity: 1;
  right: -2rem;
}

@media (max-width:768px){
  .concept__button{
    padding-bottom:15.0vw;
  }
  button.btn {
    width:100%;
  }
}
