  .bg-switcher {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    /*padding-top: 40%;*/
    background-position: center center; 
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .bg-title {
    position: absolute;
    bottom:1em;
    /*left:1em;*/
    color: #fff;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    font-size: 2.5rem;
    padding: 0 1em;
    text-shadow: 0 0 10px #555;
  }
  
 .bg-p {
    position: absolute;
    top:1rem;
    right:1rem;
    color: #333;
    line-height: 1.5;
    text-align: center;
    text-shadow: 1px 1px 1px #fff;
    font-size: 1rem;
  }


  /*画面幅768px以下の設定
-----------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:768px){

.bg-switcher {height: 300px;}

.bg-title {font-size: 1.6rem; line-height: 1.2;}

.bg-p {
    top:0.3rem;
    right:0.3rem;
    font-size: 0.9rem;
  }


}