* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Noto Sans TC", "Noto Sans SC", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  line-height: 1.75;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 16px;
  }
  body.wrap {
    overflow: visible;
  }
}
body.wrap {
  overflow: hidden;
}
body #wrapper {
  height: auto;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: auto;
}

a {
  display: inline-block;
  transition: all 0.25s ease-in;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a:hover {
    color: inherit;
    opacity: 0.7;
    text-decoration: none !important;
  }
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  color: inherit;
}
button:hover, button:active {
  color: inherit;
}

#main {
  min-height: 90vh;
}

.container {
  max-width: 1000px;
  padding: 0 30px;
  margin: 0 auto;
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 10;
}

header {
  max-height: 64px;
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 769px) {
  header {
    max-height: none;
    height: 90px;
  }
}
header .h_inner {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  header .h_inner {
    gap: 20px;
  }
}
header .h_menu {
  width: 64px;
  height: 64px;
}
@media screen and (min-width: 769px) {
  header .h_menu {
    width: 90px;
    height: 90px;
  }
}
header .h_menu #menu {
  width: 100%;
  height: 100%;
  position: relative;
}
header .h_menu #menu::after {
  content: "MENU";
  display: block;
  font-family: "Mulish", sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
}
@media screen and (min-width: 769px) {
  header .h_menu #menu::after {
    font-size: 13px;
    bottom: 10px;
  }
}
header .h_menu #menu span {
  display: block;
  position: absolute;
  top: 40%;
  left: 50%;
  translate: -50% 0;
  width: 32px;
  height: 1px;
  background-color: #000;
  transition: 0.25s ease-in;
}
@media screen and (min-width: 769px) {
  header .h_menu #menu span {
    width: 45px;
  }
}
header .h_menu #menu span::before, header .h_menu #menu span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: 0.25s ease-in;
}
header .h_menu #menu span::before {
  top: -8px;
}
@media screen and (min-width: 769px) {
  header .h_menu #menu span::before {
    top: -10px;
  }
}
header .h_menu #menu span::after {
  bottom: -8px;
}
@media screen and (min-width: 769px) {
  header .h_menu #menu span::after {
    bottom: -10px;
  }
}
header .h_menu #menu.active span {
  background-color: transparent;
}
header .h_menu #menu.active span::before {
  top: 0;
  rotate: 35deg;
}
header .h_menu #menu.active span::after {
  bottom: 0;
  rotate: -35deg;
}
header #h_logo {
  max-width: 70px;
}
@media screen and (min-width: 769px) {
  header #h_logo {
    max-width: 110px;
    height: 90px;
    display: flex;
    align-items: center;
  }
  header #h_logo a {
    display: block;
  }
}
header .h_lang_wrap {
  width: 135px;
  font-size: 12px;
  position: relative;
}
header .h_lang_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 40px;
  border: 1px solid #000;
  cursor: pointer;
}
header .h_lang_btn::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
header .h_lang_list {
  display: none;
  width: 100%;
  background: #FFF;
  position: absolute;
  top: 100%;
  left: 0;
}
header .h_lang_list a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 5px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
header .h_search {
  width: 64px;
  height: 64px;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 769px) {
  header .h_search {
    width: 90px;
    height: 90px;
  }
}
header .h_search button {
  border: 1px solid;
  border-radius: 50%;
  width: 60%;
  height: 60%;
  line-height: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
header .h_search button img {
  max-width: 17px;
}
@media screen and (min-width: 769px) {
  header .h_search button img {
    max-width: 22px;
  }
}
header .gmenu {
  display: block !important;
  transition: 0.25s ease-in-out;
  width: 100%;
  height: 100vh;
  padding-bottom: 100px;
  margin: 0;
  background-color: #808080;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  transform: translateX(-100%);
}
@media screen and (min-width: 769px) {
  header .gmenu {
    width: 35%;
    scrollbar-width: none;
  }
}
header .gmenu.open {
  transform: translateX(0);
}
header .gmenu .menu_list {
  padding: 35px 45px;
}
header .gmenu .menu_list li.menu_item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
header .gmenu .menu_list li.menu_item:not(:last-child) {
  margin-bottom: 1.75em;
}
header .gmenu .menu_list li.menu_item > a {
  font-weight: bold;
  white-space: nowrap;
}
header .gmenu .menu_list li.menu_item .acd {
  display: inline-block;
  background: url(../img/ico_menu_arrow.svg) center/contain no-repeat;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  vertical-align: middle;
  cursor: pointer;
}
header .gmenu .menu_list li.menu_item .acd.open {
  background: none;
  width: calc(100% - 8.5em);
  display: flex;
  align-items: center;
}
header .gmenu .menu_list li.menu_item .acd.open::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
header .gmenu .menu_list li.menu_item:first-child a::after {
  content: none;
}
header .gmenu .menu_list li a {
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
}
header .gmenu .menu_list .menu_list_child {
  display: none;
  margin-top: 20px;
  padding-left: 30px;
}
header .gmenu .menu_list .menu_list_child li {
  line-height: 1.3;
}
header .gmenu .menu_list .menu_list_child li:not(:last-child) {
  margin-bottom: 1.25em;
}
header .h_search_form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ededed;
  padding: 20px 20px 20px 60px;
  transition: 0.25s ease-in;
  visibility: hidden;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  header .h_search_form {
    padding: 35px 35px 35px 90px;
  }
}
header .h_search_form.open {
  visibility: visible;
  opacity: 1;
}
header .h_search_form form {
  position: relative;
}
header .h_search_form form input[type=search] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  padding: 8px 10px 8px 40px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 769px) {
  header .h_search_form form input[type=search] {
    font-size: 18px;
    padding: 20px 20px 20px 70px;
  }
}
header .h_search_form form button {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  font-size: 0;
  background: url(../img/ico_search.svg) center/17px no-repeat;
}
@media screen and (min-width: 769px) {
  header .h_search_form form button {
    width: 70px;
    background-size: 22px;
  }
}
header .h_search_form .search_back_btn {
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/ico_search_arrow.svg) center/25px no-repeat;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  header .h_search_form .search_back_btn {
    width: 90px;
    background-size: 28px;
  }
}

footer {
  background-color: #595757;
  padding: 8px 0;
}
@media screen and (min-width: 769px) {
  footer {
    padding: 20px 0;
  }
}
footer .copyright {
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 12px;
  text-align: center;
  line-height: 1.15;
}
@media screen and (min-width: 769px) {
  footer .copyright {
    font-size: 14px;
  }
}

.category_list {
  margin-right: calc((50vw - 50%) * -1);
}
@media screen and (min-width: 769px) {
  .category_list {
    margin-right: 0;
  }
}
.category_list li a {
  display: block;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.25;
  border-bottom: 1px solid #d7d7d7;
  padding: 30px 0 5px;
}
@media screen and (min-width: 769px) {
  .category_list li a {
    font-size: 20px;
    padding: 35px 0 10px;
  }
}