.mv {
    width: stretch;
    height: auto;
}

.outline_item {
    margin-bottom: 8px;
}
.outline_title {
    display: inline-block;
    background-color: #ad0011;
    color: #fff;
    padding: 8px 16px;
    font-weight: bold;
    margin-right: 16px;
    width: 300px;
    text-align: center;
}
.outline_description {
    display: inline-block;
}
.outline_description--flex {
    margin-top: 8px;
}
@media (min-width: 768px) {
    .outline_description--flex {
        display: flex;
        margin-top: 8px;
        margin-left: 16px;
        column-gap: 24px;
    }
    .avatar {
        min-width: 340px;
    }
}
@media (max-width: 767px) {
    .outline_title {
        width: fit-content;
        min-width: 86px;
        margin-right: 8px;
    }
    .avatar {
        display: block;
        justify-self: center;
        margin-top: 8px;
    }
}

/* fixedbtn */
.fixed_btn {
  opacity:0;
  -webkit-transition:opacity .5s ease-out;
  transition:opacity .5s ease-out;
}
.fixed_btn.is_fixed {
  opacity:1;
  position:fixed;
  width:100%;
  left:0;
  bottom:0;
  z-index:10;
}
.fixed_btn {
  background-color: #fff; 
}
.fixed_btn .btn a {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
footer {
  margin-bottom: 88px;
}
.fixed_btn .container__under02 {
    justify-items: center;
    padding: 12px 0;
}
@media not screen and (min-width: 768px){
  .fixed_btn .container__under02 {
    display: flex;
    flex-direction: row;
    column-gap: 4px;
    letter-spacing: -.2px;
  }
  .fixed_btn .btn a {
    font-size: calc((14 / 16 * 1rem));
    padding: 0 12px 0 8px;
    row-gap: 2px;
    height: 50px;
    width: 240px;
  }
  .fixed_btn .btn a .small {
    font-size: calc((9 / 16 * 1rem));
  }
  .fixed_btn .btn a::after {
    right: 8px;
    width: 12px;
  }
    footer {
    margin-bottom: 74px;
    }
}
.btn a.type01 {
  color: #fff;
  background-color: #840018;
}
.btn a.type02 {
  color: #840018;
  background-color: #fff;
  border: solid 2px #840018;
}
.btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .btn {
    width: 100%;
    justify-items: center;
  }
  .btn a {
    font-size: calc((15 / 16 * 1rem));
    width: 100%;
    height: 58px;
    padding: 0 25px 0 12px;
  }
}
.btn a.type01::after {
  background: url(/assets/img/common/btn_arrow01.png) no-repeat;
  background-size: 100%;
}
.btn a.type02::after {
  background: url(/assets/img/common/btn_arrow02.png) no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 768px) {
  .btn a::after {
    margin-right: 28px;
  }
}
.btn a::after {
  content: "";
  width: 16px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -9px;
}
@media not screen and (min-width: 768px) {
  .btn a::after {
    right: 16px;
  }
  .btn small {
    font-size: calc((10 / 16 * 1rem));
  }
}
@media screen and (min-width: 768px) {
  .btn a {
    width: 360px;
    height: 64px;
  }
}
.btn p {
  text-align: center;
  line-height: 1;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .btn p {
    font-size: calc(14 / 16 * 1rem);
    margin-bottom: 8px;
  }
}
@media not screen and (min-width: 768px) {
  .btn p {
    font-size: calc((10 / 16 * 1rem));
    margin-bottom: 4px;
  }
}
.btn:hover {
    opacity: .7;
}