/*------------------------------
variable
------------------------------*/
/*------------------------------
mixin
------------------------------*/
.main.photo_plan .sec-visual {
  min-height: 300px;
  background: url(img/photostudio/visual-photo.jpg) no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.main.photo_plan .sec-visual::after {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.main.photo_plan .sec-visual .sec-visual-title {
  position: relative;
  z-index: 1;
}
.main.photo_plan .plan_box {
  margin-bottom: 125px;
}
.main.photo_plan .plan_image {
  margin-bottom: 48px;
  display: flex;
  gap: 20px;
}
.main.photo_plan .plan_image .plan_image_left {
  width: 63.5%;
}
.main.photo_plan .plan_image .plan_image_left img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.main.photo_plan .plan_image .plan_image_right {
  width: 36.5%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main.photo_plan .plan_image .plan_image_right .plan_image_right_item {
  flex: 1;
}
.main.photo_plan .plan_image .plan_image_right .plan_image_right_item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.main.photo_plan .plan_head {
  margin-bottom: 35px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d2d1bf;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main.photo_plan .plan_head .plan_title01 {
  padding: 5px 0;
  font-size: 2rem;
  font-weight: bold;
}
.main.photo_plan .plan_head .photo_btn {
  width: fit-content;
  height: 54px;
  margin: 0 0 0 auto;
}
.main.photo_plan .plan_head .photo_btn a {
  height: 100%;
  padding: 0 20px;
  background: #aa8b31;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.main.photo_plan .plan_head .photo_btn a:hover {
  opacity: 0.7;
}
.main.photo_plan .plan_price {
  margin-bottom: 40px;
  color: #aa8b31;
  font-weight: bold;
}
.main.photo_plan .plan_price span {
  font-size: 1.875rem;
}
.main.photo_plan .plan_title02 {
  width: fit-content;
  margin: 30px 0 20px;
  padding: 5px 20px;
  background: #efe8db;
  color: #aa8b31;
  font-size: 0.875rem;
  font-weight: bold;
}
.main.photo_plan .plan_title03 {
  margin-bottom: 5px;
  color: #aa8b31;
  font-size: 1.25rem;
  font-weight: bold;
}
.main.photo_plan .plan_item:not(:last-of-type) {
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .main.photo_plan {
    margin: 0;
  }
  .main.photo_plan .sec-visual {
    min-height: 221px;
  }
  .main.photo_plan .plan_image .plan_image_left {
    width: 100%;
  }
  .main.photo_plan .plan_image .plan_image_right {
    width: 100%;
  }
  .main.photo_plan .plan_head {
    margin-bottom: 20px;
  }
  .main.photo_plan .plan_head .photo_btn {
    height: 45px;
  }
  .main.photo_plan .plan_head .photo_btn a {
    font-size: 1.125rem;
  }
  .main.photo_plan .plan_text {
    font-size: 1rem;
  }
  .main.photo_plan .plan_title02 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .main.photo_plan {
    margin: 0;
  }
  .main.photo_plan .plan_box {
    margin-bottom: 80px;
  }
  .main.photo_plan .plan_image {
    margin-bottom: 25px;
    gap: 15px;
    flex-direction: column;
  }
  .main.photo_plan .plan_image .plan_image_left img {
    height: auto;
  }
  .main.photo_plan .plan_image .plan_image_right {
    gap: 15px;
    flex-direction: row;
  }
  .main.photo_plan .plan_text {
    font-size: 1.125rem;
  }
  .main.photo_plan .plan_title02 {
    font-size: 1.125rem;
  }
}