@charset "UTF-8";
body,
html {
  font-family: Helvetica,"Sawarabi Gothic",Meiryo,"メイリオ","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN",YuGothic,"游ゴシック",Arial,sans-serif; 
  font-size: 62.5%;
  background-color: #f4f3f1;
}

body {
  text-rendering: optimizelegibility;
  height: 100%;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    padding: 10vw 0;
 }

 .container > div{
  display: grid;
  align-items: center;
  padding: 6vw ;
  grid-row-gap: 6vw;
  height: auto;
}

.left h1{
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.left h2{
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 8px;
}

.left p{
  font-size: 1.3rem;
  line-height: 1.7;
}

.left li{
  font-size: 1.3rem;
  line-height: 1.7;
}

  .center  img{
    width: 100%;
  }

  .right p{
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: bold;
  }


.center img{
  width: 100%;
}



/* デザインC(PC) */
@media screen and (min-width: 1025px) {
  

  .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    justify-items: stretch;
    align-items: stretch;
    padding: 0;
 }
  
  .container > div{
    display: grid;
    align-items: center;
    padding: 0 6vw;
    height: 100svh;
  
  }

.left h1{
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.left h2{
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 8px;
}

.left p{
  font-size: 1.3rem;
  line-height: 1.7;
}

.left li{
  font-size: 1.3rem;
  line-height: 1.7;
}

  .center  img{
    width: 100%;
  }

  .right p{
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: bold;
  }

  }



