<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#home_menu {
  transition: opacity 0.8s linear;
  text-align: left;
  font-family: "Noto Sans CJK JP", "Yu Gothic Medium", "æ¸¸ã‚´ã‚·ãƒƒã‚¯ Medium", YuGothic, "æ¸¸ã‚´ã‚·ãƒƒã‚¯ä½“", "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´ Pro W3", "ãƒ¡ã‚¤ãƒªã‚ª", sans-serif;
  max-width: 800px;
}
#home_menu.hidden {
  height: 0px;
  opacity: 0;
  overflow: hidden;
}
#home_menu:not(.hidden) {
  height: auto;
  opacity: 1;
  width: 100%;
  margin: 60px auto 0px auto;
}
#home_contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -12px;
}
#home_menu h3 {
  margin-bottom: 2rem;
  /* background-color: gray; */
  color: white;
  font-weight: bold;
  border-radius: 20px;
  box-sizing: border-box;
  padding-block: 10px;
  display: flex;
  justify-content: center;
}
.home_menu_item {
  width: 48%;
  margin-bottom: 2rem;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.6rem;
  box-shadow: 2px 2px 4px 2px rgba(200, 200, 200, 0.2);
}
.home_menu_item img {
  max-width: 100%;
  display: block;
}
.home_menu_item a {
  display: block;
  height: 100%;
  color: black;
}
.home_menu_item_text {
  margin: 12px;
}
.home_menu_item a:hover * {
  opacity: .7;
  transition: opacity .15s ease;
}
.home_menu_item .home_menu_item_title {
  font-weight: 700;
  margin-bottom: 0.3em;
}
@media (max-width: 900px){
  #home_menu {
    max-width: 90vw;
  }
}
.home_menu_sp_only {
  display: none;
}
.home_menu_pc_only {
  display: initial;
}
@media (max-width: 640px){
  .home_menu_sp_only {
    display: initial;
  }
  .home_menu_pc_only {
    display: none;
  }
  .home_menu_item .home_menu_item_desc {
    display: none;
  }
  .home_menu_item.banner .home_menu_item_text {
    display: none;
  }
  /*
  #home_menu h3 {
    width: 100vw;
    margin-left: calc((100vw - 100%) / 2 * -1);
  }
  */
  #home_menu:not(.hidden) {
    margin: 40px auto 0px auto;
  }
  .home_menu_item_text {
    font-size: 0.75rem;
    margin: 8px;
    line-height: 1.75em;
    font-feature-settings: "palt";
  }
}
</pre></body></html>