/*ここからcustom*/
:root {
  --key-color: #1e1e1e;
  --bg-color: #fff;
  --icon-font: "Phosphor-Light" !important ;
  --icon-font-r:"Phosphor" !important;
  --icon-font-t: "Phosphor-Thin" !important ;
  --second-font: "Hanken Grotesk", sans-serif;
  --third-font: "neue-haas-grotesk-display", sans-serif;
  --ja-font: "Yu Mincho", "YuMincho", serif;
}

html {
  font-size: 62.5%;
  background-color: var(--bg-color);
  /*height: 100%;*/
  scroll-behavior: smooth;
}

html * {
  box-sizing: border-box;
}

body {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--key-color);
  background-color: #fff;
  /*height: 100%;*/
  position: relative;
  font-family: "Montserrat", "Yu Mincho", "YuMincho", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.05em;
}
body.open {
  overflow: hidden;
}
@media (min-width: 992px) {
  body {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  body.fixedWidget {
    overflow: hidden;
  }
}

body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
body a {
  transition: ease 0.3s all;
  color: inherit;
  text-decoration: none;
}
body a:hover {
  color: inherit;
  text-decoration: none;
}
body button,
body a.btn {
  transition: ease 0.3s all;
  color: inherit;
  text-decoration: none;
  line-height: 1;
}
body button:hover,
body a.btn:hover {
  opacity: 0.7;
}
body img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
body .img_half {
  zoom: 0.5;
}



#wrapper {
  /*height: 100%;
  max-width: 100%;*/
  width: 100%;
  /*min-height: 100%;*/
  background-color: var(--bg-color);
}

h1,h2,h3,h4,h5,p {
  margin-top: 0;
}

/* 初期は隠す（上からスライドイン） */
.searcn_popdown {
  position: fixed;
  left: 0; right: 0; top: 0;
  transform: translateY(-100%);
  transition: transform .25s ease;
  z-index: 201;
}

.searcn_popdown .inner {
  padding: 60px 20px 20px;
  position: relative;
  background-color: var(--bg-color);
}

/* 表示状態 */
.searcn_popdown.active {
  transform: translateY(0);
}

.searcn_popdown input[type="text"] {
  width: 100%;
  background-color: transparent;
  border-radius: 0;
  border: 0;
}

.searcn_popdown input[type="text"]:focus,
.searcn_popdown input[type="text"]:focus-visible {
  border: 0;
  outline: none;
}

.searcn_popdown .close {
  border: 0;
  background-color: transparent;
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 3.0rem;
  width: 30px;
  height: 30px;
  line-height: 1;
}

@media (pointer: fine) and (min-width: 993px) {
  .searcn_popdown.active {
      transform: translateY(80.4px);
      z-index: 100;
      max-width: 500px;
      margin: 0 auto;
    }
  
    .searcn_popdown .inner {
      display: flex;
      flex-direction: row-reverse;
      padding: 20px;
      align-items: center;
    }

    .searcn_popdown .close {
      position: static;
    }
}


  #drawer_nav {
    position: relative;
    z-index: 200;
  }

  #drawer_nav i {
    font-size: 23px;
  }

.drawer {
  position: fixed;
  left: 14px;
  top: 19px ;
  width: auto;
  padding: .5em;
  z-index: 10;
  cursor: pointer;
}



.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 1px;
  width: 17px;
  background: #707070;
  transition: ease 0.5s;
}

.navbar_toggle_icon:nth-child(1) {
  top: 0;
}

.navbar_toggle_icon:nth-child(2) {
  margin: 5px 0;
}

.navbar_toggle_icon:nth-child(3) {
  top: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  opacity: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -6px;
  transform: rotate(-45deg);
}

.drawer_menu {
  transition: ease .5s;
  z-index: 100;
  background: var(--bg-color);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100vw;
  opacity: 0;
  /*visibility: hidden;*/
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
}
@media (min-width: 576px) {
  .drawer_menu {
    width: 420px;
    left: -420px;
  }
}
.drawer_menu .logo {
  display: flex;
  justify-content: space-between;
  padding: 23px 20px 30px;
  letter-spacing: normal;
  font-size: 1.5rem;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1;
}


@media (min-width: 992px) {
  .drawer_menu .logo > :not(button) {
    display: none;
  }
  .drawer_menu .logo {
    justify-content: flex-end;
  }
  
}

.drawer_menu .logo img {
  width: 150px;
  padding-top: 4px;
}
.drawer_menu .logo button.navbar_close {
  border: 0;
  background-color: transparent;
  padding: 0;
}
.drawer_menu .logo button.navbar_close i {
  font-size: 2.3rem !important;
}
.drawer_menu.open {
  opacity: 1;
  transform: translateX(100vw);
  /*visibility: visible;*/
}
@media (min-width: 576px) {
  .drawer_menu.open {
    transform: translateX(420px);
  }
}


.drawer_menu .drawer_contents {
  flex: 1;
  position: relative;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.drawer_menu .drawer_contents ul {
  margin-left: 0;
  margin-top: 0;
}

.drawer_menu .drawer_contents li {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
}

.drawer_menu .drawer_contents li a {
  display: block;
  padding: .85em 0;
  transition: margin .3s;
  position: relative;
}

.drawer_menu .drawer_contents > ul > li a:hover {
  margin-left: 1em;
}

.drawer_menu .drawer_contents > ul li a:after {
  content: "\edc4";
  font-family: var(--icon-font-t);
  font-size: 1rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.drawer_menu .drawer_contents li a span {
  font-family: var(--third-font);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: normal;
  padding-left: .75em;
}

.drawer_menu .drawer_contents h3 {
  font-weight: 600;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1;
  padding: .85em 0;
}

.drawer_menu .drawer_contents h3 + a,
.drawer_menu .drawer_contents h3 + a + a {
  margin-left: 1em;
}

.drawer_menu .drawer_contents > ul > li h3 + a:hover,
.drawer_menu .drawer_contents > ul > li h3 + a + a:hover {
  margin-left: 2em;
}


.drawer_menu .other_menu {
  margin: 0;
  display: flex;
}
.drawer_menu .other_menu li a {
  display: block;
  padding: .5rem;
  transition: transform .3s;
}

.drawer_menu .other_menu li a:hover {
  transform: scale(1.2);
}

@media (min-width: 992px) {
  .drawer_menu .drawer_contents {
    display: block;
  }
  .drawer_menu .bottom {
    position: static;
    margin-top: 70px;
  }
  .drawer_menu .other_menu {
    padding-bottom: 50px;
  }
}

.header {
  font-size: 1.2rem;
  position: fixed;
  width: calc(100% - 60px);
  top: 0;
  right: 10px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 0;
  transition: transform .3s;
}
body.scroll-down .header {
  transform: translateY(-100%);
}
.header > div {
  text-align: center;
}
.header a {
  display: block;
}
.header #site_logo {
  line-height: 0;
  flex: 1;
}
.header #site_logo a {
  padding: 25px 18px;
  display: block;
}

.header .cart {
  padding: .25em;
  margin-left: 10px;
}
.header .search {
  padding: .25em;
 
}
.header .account {
  padding: .25em;
}
.header i {
  font-size: 23px;
}

@media (min-width: 574px) {
  .header {
    width: calc(100% - 70px);
  }
  .header .account {
    margin-left: 10px;
  }
}
@media (min-width: 992px) {
  .header #site_logo a {
    padding: 25px 20px;
  }
}
.header #site_logo a img {
  width: 150px;
}
@media (min-width: 992px) {
  .header #site_logo a img {
    width: 200px;
  }
}
.header .header_nav {
  display: flex;
  justify-content: space-between;
}
.header .header_nav .header_list {
  display: flex;
  justify-content: center;
  margin-left: 18px;
  margin-right: 18px;
}
.header .header_nav .header_list .header_item > a {
  padding: 30px 0;
  margin: 0 12px;
  display: block;
  position: relative;
}
.header .header_nav .header_list .header_item > a:before, .header .header_nav .header_list .header_item > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  height: 1px;
  display: block;
  background: var(--key-color);
  /*transition: none;*/
  pointer-events: none;
  transform-origin: left;
}
.header .header_nav .header_list .header_item > a:before {
  transform: scaleX(0);
  transform-origin: left;
}
.header .header_nav .header_list .header_item > a:after {
  opacity: 0;
}
.header .header_nav .header_list .header_item > a:hover:before {
  transform: scaleX(1);
  transition: transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0.25s;
}
.header .header_nav .header_list .header_item > a:hover:after {
  transition: transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 1;
  transform: scaleX(0);
  transform-origin: right;
}
.header .header_nav .header_list .megaMenu {
  overflow: hidden;
  position: absolute;
  width: 100%;
  max-width: 100vw;
  left: 0;
  z-index: -1;
  top: 100%;
  background: transparent;
  line-height: 22px;
  margin: 0;
  text-align: left;
  visibility: hidden;
  backface-visibility: hidden;
  transition: visibility 0.5s;
  pointer-events: none;
}
.header .header_nav .header_list .megaMenu .megaMenu_wrapper {
  overflow-y: auto;
  max-height: 100vh;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s;
}
.header .header_nav .header_list .megaMenu .megaMenu_wrapper .megaMenu_list {
  padding: 0 30px 20px;
}
.header .header_nav .header_list .megaMenu .megaMenu_wrapper .megaMenu_list .megaMenu_item {
  margin-bottom: 0.3em;
}
.header .header_nav .header_list .header_item.is-visible .megaMenu_wrapper {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.header .header_nav .header_list .header_item.is-visible .megaMenu {
  visibility: visible;
  pointer-events: all;
  z-index: 5;
}

.contents_footer_wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer .footer_inner {
  background-color: var(--bg-color);
  position: relative;
  padding: 10px 38px 40px 30px;
  font-size: 1.2rem;
  line-height: 1;
  font-family: var(--third-font);
  letter-spacing: normal;
}

footer .footer_inner ul {
  margin-left: 0;
}

footer .footer_inner ul li {
  position: relative;
  margin-bottom: .5em;
}

footer .footer_inner .insta_sp {
  text-align: center;
  margin-top: 3em;
  margin-bottom: 3em;
}

footer .footer_inner ul li.insta_pc {
    display: none;
  }

footer .footer_inner ul li a {
  display: block;
  padding: 1em 0;
}

footer .footer_inner ul > li:not(.insta_pc) a:after {
  content: "\e3d4";
  font-size: 1rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--icon-font-t);
}

@media (min-width: 992px) {
  footer .footer_inner ul > li:not(.insta_pc) a:after {
    display: none;
  }
}

footer .footer_inner p.copy {
  line-height: 1;
  margin-bottom: 0;
  padding: 1em 0 0;
}

@media (min-width: 992px) {
  footer .footer_inner {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    padding: 0;
    align-items: center;
  }
  footer .footer_inner .insta_sp {
    display: none;
  }

  footer .footer_inner ul {
    display: flex;
    margin-left: 0;
    align-items: center;
  }
  footer .footer_inner ul li {
    margin-bottom: 0;
  }
  footer .footer_inner ul li a {
    display: block;
    padding: 30px 25px 25px;
  }
  footer .footer_inner ul li.insta_pc {
    display: none;
  }
  footer .footer_inner p {
    display: block;
    padding: 30px 15px 20px;
    margin-bottom: 0;
    font-size: 1.2rem;
  }

  footer .footer_inner p.copy {
    padding:0;
    margin-right: 40px;
  }
}
@media (min-width: 1200px) {
  
  
}
/*breadcrumb*/
.topicpath-nav {
display:none;
}

#contents {
  padding-top: 66px;
  background-color: var(--bg-color);
  flex: 1;
}

.ja-text {
  font-family: var(--ja-font);
}