@charset "UTF-8";
:root {
  --vw: 1vw;
  --header-height: 0px;
  --header-innerheight: 0px;
  --drawer-top: 0px;
  --hbg-top-offset: 0;
  --hbg-left-offset: 0;
}
#header {
  width: 100%;
  height: auto;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header_container {
  width: 100%;
  height: auto;
  background: #fff;
  position: relative;
  z-index: 1000;
}
.header_inr {
  max-width: 1260px;
  height: 80px;
  padding: 0 16px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1000;
}
.header_left,
.header_right {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.header_right {
  gap: 28px;
}
.header_logo {
  width: 150px;
  aspect-ratio: 150/36;
}
.header_menu {
  height: 100%;
  color: #333;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
.header_menu .icon_glass {
  width: 19px;
  height: 19px;
  background: url("/img/usr/common/glass.png") no-repeat center/contain;
}
.header_menu .icon_user {
  width: 19px;
  height: 19px;
  background: url("/img/usr/common/user.png") no-repeat center/contain;
}
.header_menu .icon_heart {
  width: 19px;
  height: 15px;
  background: url("/img/usr/common/heart.png") no-repeat center/contain;
}
.header_menu .icon_cart {
  width: 23px;
  height: 17px;
  background: url("/img/usr/common/cart.png") no-repeat center/contain;
}
div.header_menu {
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
div.header_menu:hover {
  opacity: 0.7;
  color: #333 !important;
}
.header_dropdown {
  width: 100%;
  height: auto;
  background: #fff;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 999;
  -webkit-box-shadow: 0 4px 10px rgba(0,0,0,0.1);
          box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease;
  transition: opacity 0.3s ease 0.3s, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header_dropdown.is_visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease 0.3s;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s;
}
.header_dropdown_inr {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 16px 64px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 64px;
  background: #fff;
}
.header_dropdown_col {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.header_dropdown_col:nth-of-type(2) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
}
.header_dropdown_col:nth-of-type(2) .header_dropdown_menu {
  max-height: 400px;
  gap: 16px;
}
.header_dropdown_col_inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.header_dropdown_ttl {
  font-size: 16px;
  font-weight: 700;
}
.header_dropdown_menu {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.header_dropdown_menu_item {
  max-width: 200px;
}
.header_dropdown_menu_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.header_dropdown_menu_item .img {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.header_dropdown_menu_item .img img {
  width: 100%;
}
.header_dropdown_category {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.header_dropdown_category .togglemenu_list_item_title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 13px;
}
.header_dropdown_category .togglemenu_list_item_title img {
  display: -ms-grid;
  display: grid;
  place-content: center;
}
footer.pane-footer {
  padding: 0;
}
footer.pane-footer #footer-nav {
  padding: 40px 100px;
  background-color: #02153d;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
footer.pane-footer #footer-nav .container {
  max-width: 1200px;
  width: 100%;
}
footer.pane-footer #footer-nav nav {
  gap: 50px;
}
footer.pane-footer #footer-nav a {
  color: #fff;
  margin: 0;
}
footer.pane-footer #footer-nav a + a {
  margin: 0;
}
footer.pane-footer #footer-nav #footer-nav-ectop a {
  color: #fff;
  font-size: 12px;
}
.footer_container {
  width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
}
.footer_top,
.footer_bottom {
  width: 100%;
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_top {
  height: 20px;
}
.footer_bottom {
  height: 80px;
}
.footer_top_logo_img {
  aspect-ratio: 114/13;
}
.footer_top_mailmag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #f9f9f9;
  text-decoration: none;
  line-height: 1.1;
}
.footer_top_mailmag:before,
.footer_top_mailmag:after {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.footer_top_mailmag:before {
  width: 16px;
  height: 14px;
  margin-right: 0.75em;
  background-image: url("../../img/usr/common/icons/icon_mail__white.png");
}
.footer_top_mailmag:after {
  width: 9px;
  height: 9px;
  margin-left: 0.75em;
  background-image: url("../../img/usr/common/icons/arrow_small__white.png");
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
}
.footer_brands,
.footer_menu {
  width: 1200px;
  height: 100%;
  margin: 40px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (232px)[5];
  grid-template-columns: repeat(5, 232px);
  gap: 10px;
}
.footer_brands_item {
  width: 100%;
  height: 226px;
  padding: 25px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #373737;
}
.footer_brands_item_inner {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_brands_item_img {
  width: 156px;
  height: 50px;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
.footer_brands_item_name {
  margin-top: 1em;
  font-size: 12px;
  color: #f9f9f9;
}
.footer_brands_item_links {
  width: 100%;
  height: 20px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
a.footer_brands_item_link {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background: #f9f9f9;
  color: #4d4d4d;
  font-size: 11px;
  text-decoration: none;
}
a.footer_brands_item_link:hover {
  color: #4d4d4d !important;
  opacity: 0.7;
}
.footer_brands_sns_links {
  width: 100%;
  height: 34px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.footer_brands_sns_link {
  width: 34px;
  height: 34px;
  border-radius: 34px;
  overflow: hidden;
}
.footer_brands_sns_link:hover img {
  opacity: 0.7;
}
.footer_brands_sns_link img {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
  aspect-ratio: 1/1;
}
.footer_menu_unit:nth-of-type(1) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
.footer_menu_unit:nth-of-type(2) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
}
.footer_menu_unit:nth-of-type(3) {
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-column: 4/5;
}
.footer_menu_title {
  font-size: 14px;
  color: #f9f9f9;
  font-weight: bold;
}
.footer_menu_title:after {
  content: '';
  display: block;
  margin-top: 20px;
  width: calc(100% - 40px);
  height: 1px;
  background: #414041;
}
.footer_menu_line {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer_menu_list {
  width: 226px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.footer_menu_list_item_link {
  font-size: 14px;
  color: #f9f9f9;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.1;
}
.footer_menu_list_item_link:before {
  content: '';
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-right: 0.5em;
  background-image: url("../../img/usr/common/icons/arrow_small__white.png");
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
}
.footer_bottom_menu {
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_bottom_menu_link {
  padding-right: 2em;
  font-size: 12px;
  color: #f9f9f9;
  text-decoration: none;
}
.footer_bottom_menu_link:not(:first-child):before {
  content: "|";
  padding-right: 2em;
}
#copyright {
  font-size: 14px;
  font-weight: 500;
  color: #f9f9f9;
  letter-spacing: 0.125em;
}



