@charset "UTF-8";

/**************************************************************
* グロバル設定
**************************************************************/

a:where(:not(.wp-element-button):not([class])) {
  color: var(--wp--preset--color--tertiary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/*************************************************************
* Wordpress Blocks 追加分/override
**************************************************************/

/* wp-headline
********************************/
.wp-headline::before,
.wp-headline::after {
  content: "";
  position: absolute;
  top: 0;
  display: inline-flex;
  width: 3px;
  height: 50px;
  background-color: var(--wp--preset--color--primary);
  transform: skew(-30deg);
}

.wp-headline::before,
.wp-headline::after {
  opacity: 1;
  transform: translateX(0) translateY(0) skew(-30deg);
}

/* headlines kanas */
.wp-headline .wp-headline__kana {
  transition: opacity 0.4s ease-in-out;
}

.wp-headline.is-animating .wp-headline__kana {
  opacity: 1;
}

/* *************************************************************
* グロバル要素
**************************************************************/

/* g-header
************************************************/
@media all and (min-width: 1024px) {
  .g-header {
    position: relative;
  }
}