.movie-container {
  padding: 110px 45px 60px;
}
.movie-container__title {
  max-width: 300px;
  margin: 0 auto;
  position: relative;
}
.movie-container__title img {
  width: 80%;
}
.movie-container__title h2 {
  font-size: 4.0rem;
  font-family: Cormorant Garamond;
  color: #9CA2A8;
  font-weight: 300;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media(min-width: 960px) {
  .movie-container {
   padding-top: 150px;
  }
  .movie-container__title {
    margin: 0 0 0 45px;
    text-align: left;
    max-width: 400px;
  }
  .movie-container__title h2 {
    font-size: 5.0rem;
    left: 45%;
  }
}
/*↓ムービーの設定↓*/
.hide-area {
  display: none;
}
/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, .modaal-close:before {
  background: #ccc;
}
.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #666;
}
/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}
/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}
.section-list {
  display: flex;
  max-width: 460px;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-between;
}
.section-list p img {
  width: 100%;
  margin-top: 30px;
}
@media(min-width:960px) {
  .section-list {
    max-width: 930px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: space-between;
  }
  .section-list p {
    width: 48%;
  }
}
.section-plan {
  background-color: #F4F3F2;
  max-width: 650px;
  padding: 20px 0 160px;
  margin: 0 auto 20px;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.section-plan__photo img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.sub-title {
  padding: 30px 0 0;
  font-size: 1.4rem;
}
.section-plan h3 {
  font-size: 2.4rem;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 100;
  padding: 25px 0;
}
.container {
  max-width: 400px;
  margin: 0 auto;
}
.cost {
  padding: 15px 0;
  text-align: left;
}
.cost h4 {
  padding: 5px 20px;
  margin-left: 20px;
  border: solid 0.5px #707070;
  height: 35px;
  font-weight: 100;
  width: 90px;
}
.cost p {
  padding: 20px 0 0 50px;
}
.caution {
  padding: 0 15px 15px;
  text-align: left;
}
.caution__content {
  display: flex;
}
.caution__content02 {
  display: flex;
  padding-top: 30px;
}
.caution ul {
  padding-left: 20px;
}
.caution ul li {
  list-style-position: outside;
  list-style-type: "◆";
  padding-top: 10px;
  padding-bottom: 10px;
}
.plan-button {
  text-align: right;
  margin-top: 40px;
  position: relative;
}
.btnarrow4 {
  padding: 20px 25px;
  border: solid 0.5px #707070;
  border-radius: 100px;
  width: 180px;
  margin-top: 20px;
  margin-left: auto;
  font-family: Cormorant Garamond;
  text-decoration: none;
  color: #5A5E62;
  text-align: left;
  display: inline-block;
  outline: none;
  position: relative;
}
/*矢印と下線の形状*/
.btnarrow4::before {
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: 10px;
  left: 15%;
  /*下線の形状*/
  width: 70%;
  height: 0.5px;
  background: #333;
  /*アニメーションの指定*/
  transition: all .3s;
}
.btnarrow4::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 14px;
  right: 25px;
  /*矢印の形状*/
  width: 15px;
  height: 0.5px;
  background: #333;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}
/*hoverした際の移動*/
.btnarrow4:hover::before {
  left: 20%;
}
.btnarrow4:hover::after {
  right: 8%;
}
@media(min-width:960px){
  .section-plan{
    max-width: 960px;
    padding-bottom: 100px;
  }
  .container {
    display: flex;
    gap: 5%;
    max-width:960px;
  }
  .section-plan__photo {
    padding: 50px 0 0 50px ;
  }
  .section-plan__photo img {
    width: 400px;
    height: 400px;
  }
  .section-plan__text {
    padding-top: 50px;
    width: 45%;
    margin: 0 auto;
  }
}
.modaal-close {
  right: 60px;
}
.modaal-close:after, .modaal-close:before {
  width: 2px;
  height: 35px;
}
.modaal-close:hover {
  background-color: transparent;
}
@media(max-width: 480px){
 .modaal-close {
   top: 160px;
   right: 50px;
} 
}