<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@keyframes megaMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    display: none;
    border-top: none;
  }
  1% {
    opacity: 0;
    visibility: hidden;
    display: grid;
    border-top: 1px solid #a0a5ab;
  }
  100% {
    opacity: 1;
    visibility: visible;
    display: grid;
    border-top: 1px solid #a0a5ab;
  }
}
@keyframes modalNavMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  1% {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  100% {
    opacity: 1;
    visibility: visible;
    display: block;
  }
}
*,
*::before,
*::after {
  /* Box sizingの定義 */
  box-sizing: border-box;
}

ul,
ol {
  /* デフォルトのmargin, paddingを削除 */
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dt,
dd {
  /* デフォルトのmarginを削除 */
  margin: 0;
  padding: 0;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "YuGothic", "メイリオ", "Meiryo", "Osaka", sans-serif;
}

body {
  /* bodyのデフォルトを定義 */
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #333;
  -webkit-text-size-adjust: 100%; /*iphoneの勝手に文字拡大を防ぐ*/
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 500;
}

p,
li,
dt,
dd {
  line-height: 1.6;
  font-weight: 500;
}

ul,
ol {
  /* class属性を持つul、ol要素のリストスタイルを削除 */
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
}

a:not([class]) {
  /* classを持たない要素はデフォルトのスタイルを取得 */
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  /* img要素の扱いを簡単にする */
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
}

input,
button,
textarea,
select {
  /* inputやbuttonなどのフォントは継承を定義 */
  font: inherit;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
}

sup {
  font-size: 11px;
  transform: translateY(3px);
  display: inline-block;
}

/* 
@media (prefers-reduced-motion: reduce) {
 見たくない人用に、すべてのアニメーションとトランジションを削除 
  *,*::before,*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*@mixin resetはここまで*//*# sourceMappingURL=common.css.map */</pre></body></html>