/* トップページのスタイル */
@charset "UTF-8";

/*=========================================================================================
メインビジュアル
==========================================================================================*/
#input:checked ~ #content {
  transform: translateX(0px);
}


.headline {
  background: url(images/auditwork.png) no-repeat 0 0;
  background-size: 100% 100%; 
  background-color: rgba(246, 248, 249, 0.801);
  background-position: center;
  background-blend-mode: lighten;
  font-size: 2.75rem;
  font-weight: bold;
  margin: auto;
  text-align: center;
  animation: fadein 3s forwards;
}

@keyframes fadein {
  0% {opacity: 0}
  100% {opacity: 1}
} 

.headlinesp{
  display: none;
}

@media screen and (max-width: 768px){
  .headline {display: none;
  }
}

@media screen and (max-width: 768px){
  .headlinesp {
    display: block;
    background: url(images/auditworkレスポンシブ.png) no-repeat 0 0;
    background-size: 100%;
  background-color: rgba(246, 248, 249, 0.801);
  background-position: center;
  background-blend-mode:lighten ;
  font-size: 1.75rem;
  font-weight: bold;
  margin: auto;
  text-align: center;
}
}

@media screen and (max-width: 480px){
  .headlinesp {
    font-size: 1.25rem;
  }}

.wp-block-table{
  width: 70%;
  margin: auto;
  vertical-align:middle;
  text-align: center;
  animation: fadein 3s forwards;
}

@keyframes fadein {
  0% {opacity: 0}
  100% {opacity: 1}
} 

.explanation {
 max-width: 70%;
 text-align: left;
 margin: 0 auto;
 padding: 0 ;

}

.explanation p {
 display: inline-block;
 text-align: left;
}

a.jump_point {height: 1px;
display: block;
padding-top: 10%;
margin-top: -10%;
}
@media only screen and (max-width: 768px){
  .headerlogo img {
    width: 90px;
    max-width: 90%;
   max-height: 70%;
   justify-content:stretch;
}
}

@media only screen and (max-width: 480px){
  .headerlogo img {
    width: 90px;
    max-width: 80%;
   max-height: 60%;
   justify-content:stretch;
}
}


.explanation h3,
.explanation p {
  opacity: 0;
  transform: translateY(20px); /* 初期位置から少し下にずらして非表示 */
  transition: opacity 2s ease-in-out, transform 2s ease-in-out;
}

.explanation h3.is-visible,
.explanation p.is-visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻して表示 */
}