/*
 Theme Name:   Twenty Twenty-Five Child
 Template:     twentytwentyfive
 Version:      1.0.0
*/

@import url("../twentytwentyfive/style.css");

/* マウスで操作した時だけ outline を削除 */
body:not(.user-is-tabbing) *:focus {
  outline: none;
  box-shadow: none;
}

/* ナビゲーションリンクとサイトタイトルの下線削除 */
.wp-block-navigation a,
.wp-block-site-title a {
  text-decoration: none;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none !important;
  outline: none;
  -webkit-tap-highlight-color: transparent; /* Androidでの水色ハイライト除去 */
}

.fade-in-section {
  opacity: 0;
  transform: scale(0.99);
  transition: opacity 1s ease, transform 1s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
  perspective: 1000;
  font-size: clamp(0.8rem, 0.7rem + 0.5vw, 1rem);
  color:#cccccc;
  line-height: 1.6;
}
.fade-in-section.visible {
  opacity: 1;
  transform: scale(1);
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}