
body{
    animation: bgchange 20s ease infinite;/*変化の時間を変更したい場合は20sの部分を好きな時間に変更*/
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
  }
  
  @keyframes bgchange{
        0%   {background:#ffe6e1;}/*変化させたい色*/
        25%  {background:#fdcb9e;}/*変化させたい色*/
        50%  {background:#fdcbc1;}/*変化させたい色*/
        75%  {background:#ffff8c;}/*変化させたい色*/
        90%  {background:#b2dffb;}/*変化させたい色*/
        100% {background:#ffe6e1;}/*変化させたい色*/
   }



/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:1%;
  right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
  position: absolute;
  left:-20px;
  bottom:10px;
    /*テキストの形状*/
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #000;
    transform: skewX(-31deg);
}

.scrolldown4:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  right:0;
    /*矢印の形状*/
  width:1px;
  height: 50px;
  background:#000;
}

/*========= レイアウトのためのCSS ===============*/

.img_h{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color:#eee;
  text-shadow: 0 0 15px #666;
  text-align: center;
  width: 50%;
}

#header{
  width:100%;
  height: 100vh;
  position: relative;
} 

#header:before{
  content: '';
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height: 100vh;
  /*背景画像設定*/
  background-size:cover;
}

#container{
  position: relative;
  z-index:1;
  padding:300px 0 200px 0;
  text-align: center;
  background:#eee;
  animation: bgchange 20s ease infinite;/*変化の時間を変更したい場合は20sの部分を好きな時間に変更*/
  opacity: 0.9;

  div {
    max-width: 50%;
    margin: 0 auto;

    
  }
}

@media screen and (max-width:768px){

    #header,
    #header:before{
        height: 90vh;    
    }
    
    #container div {
        max-width: 80%;
    }
}


.radius-table{
    border-radius: 10px;
    border-spacing: 0;
    border: none;
    li {
        list-style: none !important;
    }
}
.radius-table tr>*{
    padding: 20px 30px;
    border: none;
}
.radius-table tr:first-child>*:first-child{
    border-radius: 35px 0 0 0;
}
.radius-table tr:first-child>*:last-child{
    border-radius: 0 35px 0 0;
}
.radius-table tr:last-child>*:first-child{
    border-radius: 0 0 0 35px;
}
.radius-table tr:last-child>*:last-child{
    border-radius: 0 0 35px 0;
}
table {
    text-align: left;
    
    ul {
        padding-left: 0;
        text-align: left;
    }
}

@media screen and (max-width: 767px) {
    table {
      display: block;
      width: 100%;
      background: #fff;
      text-align: center;
    }
    table tbody {
      display: block;
      width: 100%;
    }
    table tr {
      display: block;
      width: 100%;
    }
    table th {
      display: block;
      width: 100%;
    }
    table td {
        width: 1000px;
      }

    .radius-table tr>*{
        padding: 10px 15px;
        border: none;
    }
    .radius-table tr:first-child>*:first-child{
        border-radius: 0 0 0 0;
    }
    .radius-table tr:first-child>*:last-child{
        border-radius: 0 0 0 0;
    }
    .radius-table tr:last-child>*:first-child{
        border-radius: 0 0 0 0;
    }
    .radius-table tr:last-child>*:last-child{
        border-radius: 0 0 0 0;
    }
    ul {
        
        
    }
    }