<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* PCとスマートフォンの共通スタイル */
html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 70px;
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  /* Prevent font scaling */
}
body {
  background: #ffffff;
  color: #333333;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
a{
	text-decoration: none;
}
a:link {
  color: #AA8B4F;
  text-decoration: none;
}
a:visited {
  color: #AA8B4F;
  text-decoration: none;
}
a:hover {
  color: #AA8B4F;
  text-decoration: none;
}
a:active {
  color: #AA8B4F;
  text-decoration: none;
}
#wrap {
  max-width: 100%;
  background: #ffffff;
  min-width: 780px;
}
.flex-row {
  display: flex;
  align-items: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sp_br {
  display: none;
}
@media screen and (max-width:750px) {
  .pc_br {
    display: none;
  }
}</pre></body></html>