@charset "UTF-8";
/*共通の設定*/
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "noto-serif";
  src: url("../fonts/NotoSerifJP-Black.ttf");
  font-weight: 900;
}
/*共通の設定*/
body {
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  position: relative;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .sp_br {
    display: none;
  }
}
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .og_header {
  padding: 20px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
header .og_header .header_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
header .og_header .header_logo a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
header .og_header .header_logo a img, header .og_header .header_logo a span {
  display: block;
}
header .og_header .header_logo a img {
  max-width: 250px;
}
header .og_header .header_logo a span {
  font-size: 18px;
}
header .og_header .menu_wrap {
  position: relative;
}
header .og_header .menu_wrap .pc_nav_bt {
  width: auto;
  border-radius: 5px;
  padding: 1em;
  display: block;
}
header .og_header .menu_wrap .pc_nav_bt span {
  display: block;
  border-bottom: 2px solid #615d7f;
  width: 30px;
}
header .og_header .menu_wrap .pc_nav_bt span:nth-of-type(1), header .og_header .menu_wrap .pc_nav_bt span:nth-of-type(2) {
  margin: 0 0 10px 0;
}
header .og_header .menu_wrap .pc_nav_bt.open + .pc_nav {
  transform: translateX(0%);
  transition: 0.7s;
  opacity: 1;
}
header .og_header .menu_wrap .pc_nav {
  transform: translateX(-100%);
  transition: 0.7s;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
header .og_header .menu_wrap .pc_nav .main_menu_list {
  width: 300px;
  margin: 0 auto 0 0;
  height: 100lvh;
  background-color: #fff;
  padding: 2em;
  font-size: 16px;
  line-height: 2;
  overflow-y: scroll;
  max-height: 100vh;
}
header .og_header .menu_wrap .pc_nav .main_menu_list .sub_menu_title {
  border-bottom: 1px solid #615d7f;
}
header .og_header .menu_wrap .pc_nav .main_menu_list .sub_menu_list {
  padding: 1em;
}
header .og_header .menu_wrap .pc_nav .main_menu_list > li {
  margin-bottom: 16px;
}
header .og_header .icons_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  position: relative;
}
header .og_header .icons_wrap .header_search_bt {
  width: 40px;
  height: 40px;
  background-image: url("../img/common/search_icon.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
header .og_header .icons_wrap .search_zone {
  position: fixed;
  opacity: 0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  transform: translate(100%);
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0.3);
}
header .og_header .icons_wrap .search_zone.open {
  opacity: 1;
  transform: translate(0%);
  transition: 0.5s;
  z-index: 1;
  padding: 10vh 0 0 0;
}
header .og_header .icons_wrap .search_zone .search_wrap {
  background-color: #f3efec;
  padding: 30px 1em;
}
header .og_header .icons_wrap .search_zone .search_wrap form {
  border-bottom: 1px solid #000;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .og_header .icons_wrap .search_zone .search_wrap form .search-name {
  display: block;
  width: 100%;
  padding: 0.5em;
  line-height: 2;
  outline: none;
}
header .og_header .icons_wrap .search_zone .search_wrap form button {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("../img/common/search_icon.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
header .og_header .icons_wrap .header_cart_bt {
  width: 40px;
  height: 40px;
  background-image: url("../img/common/cart.svg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}
header .og_header .icons_wrap .header_cart_bt span {
  display: block;
  text-align: center;
  position: absolute;
  top: -11px;
  right: -11px;
  font-size: 16px;
  font-weight: bold;
}
header .og_header .icons_wrap .header_log_bt {
  font-weight: bold;
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: 100%;
}
header .og_header .icons_wrap .header_log_bt.in {
  background-image: url("../img/common/login.svg");
}

footer {
  background-color: #EAEAEA;
  /*border-top: 1px solid #615d7f;*/
}
footer .og_footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  flex-wrap: wrap;
}
footer .og_footer ul li {
  border-left: 1px solid #000;
  margin: 0 0 1em 0;
}
footer .og_footer ul li a {
  padding: 0 2em;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
footer .og_footer ul li:nth-of-type(1) {
  border-left: none;
}
footer .og_footer small {
  display: block;
  text-align: center;
  font-size: 16px;
  padding: 30px 0;
}

.ec-blockTopBtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  header .og_header {
    padding: 10px;
  }
  header .og_header .header_logo a img {
    max-width: 180px;
  }
  header .og_header .header_logo a span {
    font-size: 14px;
  }
  header .og_header .icons_wrap {
    gap: 10px;
  }
  header .og_header .icons_wrap .header_search_bt,
header .og_header .icons_wrap .header_cart_bt,
header .og_header .icons_wrap .header_log_bt {
    width: 20px;
    height: 20px;
  }
  header .og_header .icons_wrap .header_cart_bt span {
    font-size: 13px;
    top: -10px;
    right: -8px;
  }
  footer .og_footer ul {
    flex-direction: column;
  }
  footer .og_footer ul li {
    border-left: none;
  }
}
/*# sourceMappingURL=style.css.map */