body{
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.program{
  min-height: calc(100vh - 110px);
  background-color: peachpuff;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 40px;
  padding: 0 20px;
  color: darkblue;
  font-weight: bold;
  line-height: 1.8;
  position: relative;             
}

.program h1{
  background: white;
  padding: 12px 20px;
  border-radius: 20px;
  display: inline-block;
  font-size: 32px;
  margin-bottom: 30px;
}

.titleboad{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 400px;
  margin: 0;
  z-index: 1;
}

.titleboad img{
  width: 400px;
  height: auto;
  display: block;
}

.pro{
  margin-bottom: 40px;
}

.pro h2,
.pro h3,
.pro h4{
  font-size: 20px;
  margin-bottom: 10px;
}

.program p{
  font-size: 16px;
  margin-bottom: 15px;
  text-indent: 1em;
  line-height: 2;
}

@media (max-width: 1024px){
  .program{
    min-height: calc(100vh - 50px);
    height: auto;
    padding: 20px;
    margin: 50px auto 40px;
    display: flex;
    flex-direction: column;
  }

  .program h1{
    font-size: 24px;
    align-self: flex-start;
    display: inline-block;
    width: auto;
  }

  .titleboad{
    position: static;
    width: 100%;
    margin: 30px auto 0;
    text-align: center;
    order: 99;
  }

  .titleboad img{  
    width: 200px;
    height: auto;
    margin: 0 auto;
  }

  .pro{
    margin-bottom: 30px;
  }

  .pro h2,
  .pro h3,
  .pro h4{
    font-size: 18px;
    margin-bottom: 5px; 
  }

  .program p{
    font-size: 14px;
    line-height: 2;
  }
}