@charset "UTF-8";

/* =============================================================================

Global CSS

============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

/* =============================================================================

Custom Properties

============================================================================= */
details {
  /* --------アコーディオンの中身のスタイル-------- */
  &::details-content {
    transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
    height: 0;
    opacity: 0;
    overflow: clip;
  }

  /* --------アコーディオンの中身のスタイル（開いている時）-------- */
  &[open]::details-content {
    opacity: 1;
  }

  /* アコーディオンが開いた時のスタイル */
  &[open] .icon::before {
    transform:rotate(90deg);
  }
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }
  details[open]::details-content {
    height: auto;
  }
}
@supports not (interpolate-size: allow-keywords) {
  details[open]::details-content {
    height: 150px;
    overflow-y: scroll;
  }
}




/* =============================================================================

media

============================================================================= */
@media (max-width:767px) {

}
@media (min-width:768px) {

}
@media (max-width:949px) {

}
@media (min-width:950px) {

}

@media screen and (min-width: 1025px){
}
@media screen and (max-width: 1024px){
}