@charset "UTF-8";
.photoArea {
	display: block;
	max-width: 1090px;
	width: 100%;
	margin: 0px auto 0px auto;
	padding: 80px 0px 80px 0px;
	background: url("../images/common/player_bg.png") no-repeat 50% 50%;
}
@media only screen and (max-width: 768px) {
  .photoArea {
    padding: 0 0 20px;
  }
}
.photoArea .heading__main {
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .photoArea .heading__main {
    padding: 30px 0;
  }
}
.photoArea ul {
  display: flex;
  width: 980px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px auto 0px auto;
	list-style:none;
}
.photoArea ul li {
  width: 30%;
  margin-bottom: 30px;
}
.photoArea ul li figure img {
  width: 100%;
}
.photoArea ul li p {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .photoArea ul {
    width: 90%;
    margin: 0 5%;
  }
  .photoArea ul li {
    margin-bottom: 4%;
    width: 48%;
  }
}
.photoArea .btn_more {
	margin: auto;
	text-align: center;
}
.photoArea .btn_more p {
  font-size: 2rem;
  font-weight: bold;
  color: #e6002d;
  line-height: 1;
  margin: 20px auto 0;
  padding: 10px 100px;
  border: 1px solid #e6002d;
  border-radius: 5px;
  display: inline-flex;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
}
.photoArea .btn_more p:hover {
  background: #e6002d;
  color: #fff;
}
.photoArea .btn_more p:hover:before, .photoArea .btn_more p:hover:after {
  background-color: #fff;
}
.photoArea .btn_more p:before {
  content: '';
  position: absolute;
  top: 10px;
  right: 35px;
  width: 2px;
  height: 20px;
  background: #e6002d;
  border-radius: inherit;
  transform: rotate(90deg);
  transition: 0.3s ease-in-out;
}
.photoArea .btn_more p:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 35px;
  width: 2px;
  height: 20px;
  background: #e6002d;
  border-radius: inherit;
  transition: 0.3s ease-in-out;
}
.photoArea .btn_more p.active:after {
  transform: rotate(90deg);
}
@media only screen and (max-width: 768px) {
  .photoArea .btn_more p {
    font-size: 7vw;
    padding: 10px 19%;
  }
  .photoArea .btn_more p:before, .photoArea .btn_more p:after {
    top: 18px;
    right: 25px;
    height: 18px;
  }
}
