@charset "UTF-8";
/**
 * メディアクエリ
 * @param {string} $mode - max または min
 * @param {number} $width - 設定値
 */
/**
 * メディアクエリ PC
 * @param {number} [$width:$breakpoin] - 設定値
 */
/**
 * メディアクエリ SP
 * @param {number} [$width:$breakpoin] - 設定値
 */
/**
 * メディアクエリによるIE11ハック
 */
/**
 * VW計算
 * @param {string} $property  - プロパティ
 * @param {number} $value - 基準となる値
 * @param {number} $basewidth - 基準となるウィンドウ幅
 * @param {number} [$maxwidth:0] - 拡大を停止するウィンドウ幅
 * @param {number} [$minwidth:0] - 縮小を停止するウィンドウ幅
 */
@media screen and (min-width: 1025px) {
  .p50th-project .project-inner {
    padding-block: 60px 120px;
  }
}
@media screen and (max-width: 1024px) {
  .p50th-project .project-inner {
    padding-top: 21.3333333333vw;
    padding-bottom: 26.6666666667vw;
  }
}
.p50th-project .project-title {
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 1025px) {
  .p50th-project .project-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .p50th-project .project-title {
    font-size: 6.4vw;
  }
}
.p50th-project .project-panel {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
}
@media screen and (min-width: 1025px) {
  .p50th-project .project-panel {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .p50th-project .project-panel {
    margin-top: 8vw;
    padding-inline: 5.3333333333vw;
  }
}
@media screen and (min-width: 1025px) {
  .p50th-project .project-panel.project-panel-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .p50th-project .project-panel.project-panel-top .panel-image .tag {
    min-width: 195px;
  }
}
@media screen and (min-width: 1025px) {
  .p50th-project .project-panel.project-panel-bottom {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .p50th-project .project-panel.project-panel-bottom .panel-image .tag {
    min-width: 145px;
  }
}
.p50th-project .project-panel li {
  background-color: #fff;
  overflow: hidden;
  box-shadow: 3px 3px 18px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1025px) {
  .p50th-project .project-panel li {
    border-radius: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .p50th-project .project-panel li {
    border-radius: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .p50th-project .project-panel li:not(:first-child) {
    margin-top: 8vw;
  }
}
.p50th-project .project-panel .panel-image {
  position: relative;
}
.p50th-project .project-panel .panel-image .tag {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;
  background-color: #FFA700;
  color: #fff;
  font-weight: bold;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .p50th-project .project-panel .panel-image .tag {
    padding-block: 12px;
    padding-inline: 27px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .p50th-project .project-panel .panel-image .tag {
    min-width: 45.3333333333vw;
    padding-block: 2.4vw;
    padding-left: 4vw;
    padding-right: 2.6666666667vw;
  }
}
.p50th-project .project-panel .panel-image .tag::after {
  content: "";
  display: block;
  background-color: #FFA700;
  height: 100%;
  position: absolute;
  top: 0;
  transform: skewX(-30deg);
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .p50th-project .project-panel .panel-image .tag::after {
    width: 45px;
    right: -15px;
  }
}
@media screen and (max-width: 1024px) {
  .p50th-project .project-panel .panel-image .tag::after {
    width: 8vw;
    right: -2.1333333333vw;
  }
}
@media screen and (min-width: 1025px) {
  .p50th-project .project-panel .panel-detail {
    padding-block: 30px 40px;
    padding-inline: 40px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .p50th-project .project-panel .panel-detail {
    padding-inline: 5.3333333333vw;
    padding-top: 5.3333333333vw;
    padding-bottom: 10.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.p50th-project .project-panel .panel-detail p {
  line-height: 1.6;
}
.p50th-project .project-panel .panel-detail p strong {
  font-weight: bold;
}
.p50th-project .project-panel .panel-detail a {
  color: #0331FF;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .p50th-project .project-panel .panel-detail a:hover span {
    -webkit-animation: borderMotion 0.7s ease;
    animation: borderMotion 0.7s ease;
  }
}
.p50th-project .project-panel .panel-detail .panel-link {
  text-align: right;
}
@media screen and (min-width: 1025px) {
  .p50th-project .project-panel .panel-detail .panel-link {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .p50th-project .project-panel .panel-detail .panel-link {
    margin-top: 5.3333333333vw;
  }
}
.p50th-project .project-panel .panel-detail .panel-link-pdf span {
  padding-bottom: initial;
}
.p50th-project .project-panel .panel-detail .panel-link-pdf::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 16px;
  background: url("/50th/assets/img/project/icon-pdf.svg") no-repeat center/cover;
}
.p50th-project .project-panel .panel-link-motion span {
  display: inline-block;
  color: #0031FF;
  background-image: linear-gradient(#2F2FBE, #2F2FBE);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  padding-bottom: 5px;
  transition: background-size 0.4s ease;
}
@-webkit-keyframes borderMotion {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    background-position: bottom right;
  }
  50.1% {
    background-size: 0 1px;
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}
@keyframes borderMotion {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    background-position: bottom right;
  }
  50.1% {
    background-size: 0 1px;
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}