@charset "utf-8";

/*全体*/
.content{
  padding: 0px 0 64px;
}
.pagevisual {
  background: url("../../img/mv_detail.webp") no-repeat #DEF3FC top;
  background-size: cover;
}

.main_text{
  display: flex;
  justify-content: center;
  color: #1D2959;
  font-size: 2rem;
  font-weight: bold;
  width: 90%;
  margin: auto;
  margin-top: 80px;
}
.link_list{
  max-width: 502px;
  width: 90%;
  margin: auto;
  border-top: 1px solid #1D2959;
  margin-top: 35px;
}
.link_list--box{
  border-bottom: 1px solid #1D2959;
  padding: 20px 65px 20px 20px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  position: relative;
  align-items: center;
  font-weight: bold;
  transition: .5s;
}
.link_list--box:hover{
  background: #0099CC;
  transition: .5s;
  opacity: 1;
  color: #fff;
}
.link_list--box::before {
  content: '';
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 3px #E60013;
  border-right: solid 3px #E60013;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  transition: .5s;
}
.link_list--box:hover:before{
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transition: .5s;
}
.link_list--box span{
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 767px),print {

 }

@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }
}

@media screen and (min-width: 767px),print {
  
}

@media screen and (max-width: 767px) {
/* スマホ閲覧時、横幅可変 */
  body {
    width: 100%;
  }
  .main_text{
    font-size: 1.8rem;
    margin-top: 50px;
  }
  

  .page-pankuzu{
    padding-bottom: 60px;
  }

  .link_list--box{
    flex-wrap: wrap;
    gap: 10px;
    padding: 25px 35px 25px 5%;
  }
  .link_list--box span{
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

/* 印刷用設定 */
@media print {

}
@page {
  size: A4;
  margin: 5px;
}
