@charset "UTF-8";
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Layout
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.l-header{
    position: relative;
    z-index: 500;
}
.l-header .l-header__wrap {
  position: fixed;
  max-width: 1920px;
  min-width: 1280px;
  width: 100%;
  display: flex;
  padding: 2rem 4rem;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.l-header.is-scrolled .l-header__wrap {
  background-color: #ffffff;
}
.l-header .l-header__h1 {
  width: 30.5rem;
}
.l-header .l-header__nav {
  padding-bottom: 1.3rem;
}
.l-header.is-scrolled .l-header__nav {
  padding-bottom: 0;
}
.l-header .l-header__nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.l-header .l-header__nav__logo a {
  display: inline-block;
  width: 125px;
}
.l-header .l-header__nav__logo a img {
  width: 100%;
}
.l-header .l-header__h1__logo--white {
  width: 32.5rem;
  opacity: 1;
  display: block;
  transition: 0.5s;
}
.l-header .l-header__h1__logo--black {
  width: 32.5rem;
  opacity: 0;
  display: none;
  transition: 0.5s;
}

.l-header.is-scrolled .l-header__h1__logo--white {
  opacity: 0;
  display: none;
}
.l-header.is-scrolled .l-header__h1__logo--black {
  opacity: 1;
  display: block;
  width: 25.7rem;
}
.l-header .l-header__list__item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  margin: 0 1.2rem;
  position: relative;
}
.l-header .l-header__list__item.is__current {
  border-bottom: 0.2rem solid #3e3e3e;
}
.l-header .l-header__list__item__link {
  padding: 0rem;
  vertical-align: middle;
  display: flex;
  cursor: pointer;
}
.l-header .l-header__list__item__logo {
  margin-right: 0.5rem;
  margin-left: 3rem;
}

/* headerスクロールアニメーション */
.l-header.hidden-header{
    opacity: 0;
    visibility: hidden;
}
.l-header.hidden-header.is-scrolled{
    opacity: 1;
    visibility: visible;
}
/* ここまで */

/* サブナビ */
.l-header .l-header__list__item.sub__nav{
    cursor: pointer;
}

.l-header .l-header__list__item.sub__nav .inner-ttl{
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: start;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.l-header .l-header__list__item.sub__nav .inner-ttl .txt{
    display: inline-block;
}
.l-header .l-header__list__item.sub__nav .inner-ttl .icn-box{
    position: relative;
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-left: 5px;
}
.l-header .l-header__list__item.sub__nav .inner-ttl .icn-box .line{
    background-color: #000000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    /* -webkit-transition: transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s; */
    /* transition-duration: 0.1s; */
    transition-duration: 0.5s;
    visibility: visible;
    opacity: 1;
}
.l-header .l-header__list__item.sub__nav .inner-ttl .icn-box .line01{
    width: 100%;
    height: 1px;
}
.l-header .l-header__list__item.sub__nav .inner-ttl .icn-box .line02{
    width: 1px;
    height: 100%;
}

.l-header .l-header__list__item.sub__nav .sub-area{
    position: absolute;
    overflow: hidden;
    max-width: 400px;
    width: 55vw;
    top: 36px;
    display: block!important;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    transition-duration: 0.5s;
    font-size: 0;
}
.l-header .l-header__list__item.sub__nav .sub-area .tri{
    width: 562px;
    height: auto;
}
.l-header .l-header__list__item.sub__nav .sub-area .inner-content{
    border: 1px solid #707070;
    border-top: none;
    background-color: #fff;
    display: block;
    padding: 22px 24px 0 13px;
    box-sizing: border-box;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: start;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.l-header .l-header__list__item.sub__nav .sub-area .inner-content .text{
    width: 22px;
    height: 108px;
    position: relative;
    border-right: 1px solid #707070;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: start;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.l-header .l-header__list__item.sub__nav .sub-area .inner-content .text .txt-img{

}
.l-header .l-header__list__item.sub__nav .sub-area .inner-content .nav-box{
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: start;
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% - 22px);
}
.l-header .l-header__list__item.sub__nav .sub-area .inner-content .nav-box .item{
    display: block;
    max-width: 148px;
    width: 100%;
    margin-left: 19px;
    margin-bottom: 19px;
}
/* .l-header .l-header__list__item.sub__nav .sub-area .inner-content .nav-box .item.is__current{
  pointer-events: none;
} */
.l-header .l-header__list__item.sub__nav .sub-area .inner-content .nav-box .item .pict{
    width: 100%;
    height: auto;
}
.l-header .l-header__list__item.sub__nav .sub-area .inner-content .nav-box .item .item-txt{
    display: block;
    margin-top: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
    text-align: justify;
    letter-spacing: 0;
}
/* hover */
.l-header .l-header__list__item.sub__nav:hover .inner-ttl .icn-box .line02{
  visibility: hidden;
  opacity: 0;
}
.l-header .l-header__list__item.sub__nav:hover .sub-area{
  visibility: visible;
  opacity: 1;
}
/* ここまで */

.l-header .l-header__tooltip {
  display: none;
  position: absolute;
  top: 50%;
  right: 4rem;
  padding-top: 3rem;
}
.l-header .l-header__tooltip.is-active {
  display: block;
}
.l-header .l-header__tooltip__wrap {
  width: 35rem;
  background-color: #ffffff;
  border: solid 0.1rem #707070;
}

.l-header .l-header__tooltip__items {
  display: flex;
  width: 100%;
  height: 6rem;
  align-items: center;
  justify-content: center;
  position: relative;
}
/*
.l-header .l-header__tooltip__items:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 3.5rem;
  width: 0.1rem;
  background-color: #707070;
}
*/
.l-header .l-header__tooltip__items:after {
  content: "";
  position: absolute;
  top: -1rem;
  right: 6rem;
  width: 2rem;
  height: 2rem;
  background-color: #ffffff;
  transform: rotate(45deg);
  border-left: solid 0.1rem #707070;
  border-top: solid 0.1rem #707070;
}
.l-header .l-header__tooltip__item {
  width: 50%;
  padding: 2rem 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.l-header .l-header__tooltip__item:after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 1.5rem;
  background-image: url("./../../../img/products/tanto/icon__another-tab.svg");
  background-position: center;
  background-repeat: no-repeat;
  height: 1.5rem;
  width: 1.5rem;
}
.l-header .l-header__tooltip__text {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  text-indent: -1.2rem;
  padding-left: 3.2rem;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .l-header .l-header__wrap {
    max-width: unset;
    min-width: unset;
    width: 100vw;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1px) and (max-width: 768px) {
  .l-header .l-header__wrap {
    position: fixed;
    padding: 0rem 2rem;
    height: 6.4rem;
    min-width: unset;
    width: 100%;
    z-index: 100;
    margin: 0;
    background-color: transparent;
  }
  .l-header .l-header__h1 {
    width: 12.5rem;
  }
  .l-header .l-header__h1__link {
    display: block;
    width: auto;
  }
  .l-header .l-header__h1__logo--white {
    width: 125px;
    opacity: 1;
    display: block;
    transition: 0.5s;
  }
  .l-header .l-header__h1__logo--black {
    width: 125px;
    opacity: 0;
    display: none;
    transition: 0.5s;
  }

  .l-header .l-header__h1__logo {
    width: 100%;
    object-fit: cover;
  }
  .l-header.is-scrolled .l-header__h1__logo--white {
    opacity: 0;
    display: none;
  }
  .l-header.is-scrolled .l-header__h1__logo--black {
    opacity: 1;
    display: block;
    width: 12.5rem;
  }
  .l-header .l-header__nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }
  .l-header .l-header__list__item__link {
    padding: 0rem 1.2rem;
    vertical-align: middle;
    display: flex;
  }
  .l-header .l-header__hamburger {
    width: 3rem;
    height: 2rem;
  }
  .l-header .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 999;
    position: relative;
  }
  .l-header .hamburger span {
    width: 100%;
    height: 0.2rem;
    background-color: #000000;
    position: relative;
    transition: ease 0.4s;
    display: block;
  }
  .l-header .hamburger span:nth-child(1) {
    top: 0;
  }
  .l-header .hamburger span:nth-child(2) {
    margin: 8px 0;
  }
  .l-header .hamburger span:nth-child(3) {
    top: 0;
  }
  .l-header .l-header__nav__list {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    display: block;
    background-color: #fff;
    transition: ease 0.4s;
    overflow: scroll;
  }
  .l-header .l-header__nav__list.active {
    transform: translateX(0);
    display: block;
  }
  .l-header .hamburger.active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
  }
  .l-header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .l-header .hamburger.active span:nth-child(3) {
    top: -14px;
    transform: rotate(-45deg);
  }
  .l-header .l-header__nav__items {
    padding: 2rem 2.5rem;
  }
  .l-header .l-header__nav__menus {
    margin-top: 2.5rem;
    padding-bottom: 2rem;
    font-size: 1.7rem;
    border-bottom: 0.1rem solid #707070;
  }
  .l-header .l-header__nav__menu {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
  }
  .l-header .l-header__nav__menu:last-child {
    margin-bottom: 0rem;
  }
  .l-header .l-header__nav__menu__link {
    display: inline-block;
  }
  .l-header .l-header__nav__medias {
    margin-top: 1.5rem;
  }
  .l-header .l-header__nav__medias .l-header__nav__media:last-child {
    text-align: center;
  }
  .l-header .l-header__nav__media__link {
    color: #898989;
    display: flex;
    align-items: center;
  }
  .l-header .l-header__nav__media__col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 1rem;
  }
  .l-header .l-header__nav__media__col__item {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
    padding: 1.5rem 0 0.5rem;
  }
  .l-header .l-header__nav__media__note {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  .l-header .l-header__nav__media__logo {
    width: 100%;
    text-align: center;
  }
  .l-header .l-header__nav__media__logo img {
    object-fit: cover;
    width: 30%;
  }
  .l-header .l-header__nav__media__sns {
    width: 80%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  .l-header .l-header__nav__media__sns img {
    width: 2rem;
    height: 2rem;
    object-fit: cover;
  }
  .l-header .l-header__nav__media__sns .l-header__nav__media__sns__big img {
    width: 4rem;
    height: 4rem;
  }

  /* sub-nav */
  .l-header .l-header__nav__menu.sub__nav{
    display: block;
    width: 100%;
    /* margin-bottom: 20px; */
  }
  .l-header .l-header__nav__menu.sub__nav .inner-ttl{
    display: block;
    position: relative;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: start;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .l-header .l-header__nav__menu.sub__nav .inner-ttl .txt{
    display: inline-block;
  }
  .l-header .l-header__nav__menu.sub__nav .inner-ttl .icn-box{
    position: relative;
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-left: 0.5em;
  }
  .l-header .l-header__nav__menu.sub__nav .inner-ttl .icn-box .line{
    background-color: #000000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    /* -webkit-transition: transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s; */
    /* transition-duration: 0.1s; */
    transition-duration: 0.5s;
    visibility: visible;
    opacity: 1;
  }
  .l-header .l-header__nav__menu.sub__nav .inner-ttl .icn-box .line01{
    width: 100%;
    height: 2px;
  }
  .l-header .l-header__nav__menu.sub__nav .inner-ttl .icn-box .line02{
    width: 2px;
    height: 100%;
  }
  /* hover */
  .l-header .l-header__nav__menu.sub__nav .inner-ttl.active .icn-box .line02{
    visibility: hidden;
    opacity: 0;
  }
  /* ここまで */

  .l-header .l-header__nav__menu.sub__nav .sub-area{
    display: block;
    padding-top: 12px;
    padding-left: 0.5em;
    /* display: none; */
  }
  .l-header .l-header__nav__menu.sub__nav .sub-area .sub-item{
    display: block;
    line-height: 1.4;
  }
  .l-header .l-header__nav__menu.sub__nav .sub-area .sub-item + .sub-item{
    margin-top: 12px;
  }

  /* /sub-nav */
}

.l-footer .l-footer__wrap {
  max-width: 1920px;
  min-width: 1280px;
  margin: 0 auto;
  padding: 71px 40px 33px;
  font-size: 1.2rem;
}
.l-footer .l-footer__body {
  display: flex;
  letter-spacing: 0.3rem;
  line-height: 3.4rem;
  font-weight: bold;
}
.l-footer .l-footer__logoNav {
  flex-basis: 100%;
}
.l-footer .l-footer__logoNav__sns {
  display: flex;
  margin-top: 3rem;
  width: 32rem;
  justify-content: space-between;
  align-items: center;
}
.l-footer .l-footer__logoNav__sns__link img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
}
.l-footer .l-footer__logoNav__sns__link.sns_icon__big img {
  width: 6rem;
  height: 6rem;
}
.l-footer .l-footer__logoNav__nakano {
  display: inline-block;
}
.l-footer .l-footer__pageNav {
  flex-basis: 36rem;
}
/* sub__nav */
.l-footer .l-footer__pageNav .l-footer__pageNav_item.sub__nav{
  margin-bottom: 10px;
}
.l-footer .l-footer__pageNav .l-footer__pageNav_item.sub__nav .inner-ttl{
  margin-bottom: 3px;
  display: block;
}
.l-footer .l-footer__pageNav .l-footer__pageNav_item.sub__nav .sub-area{
  display: block;
  padding-left: 0.8em;
}
.l-footer .l-footer__pageNav .l-footer__pageNav_item.sub__nav .sub-area .sub-item{
  display: block;
  line-height: 1.8;
}
.l-footer .l-footer__pageNav .l-footer__pageNav_item.sub__nav .sub-area .sub-item + .sub-item{
  margin-top: 8px;
}
/* /sub__nav */
.l-footer .l-footer__onlineShop {
  flex-basis: 21.9rem;
}
.l-footer .l-footer__onlineShop__item {
  width: 21.9rem;
  height: 5.5rem;
  border: #707070 solid 0.1rem;
  margin-bottom: 1rem;
}
.l-footer .l-footer__onlineShop__item__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer .l-footer__onlineShop__note {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: normal;
}
.l-footer .l-footer__foot {
  margin-top: 4rem;
  display: flex;
}
.l-footer .l-footer__foot_copyright {
  flex-basis: 100%;
}
.l-footer .l-footer__foot__links {
  flex-basis: 60rem;
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .l-footer .l-footer__wrap {
    max-width: unset;
    min-width: unset;
    width: 100vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1px) and (max-width: 768px) {
  .l-footer .l-footer__wrap {
    min-width: unset;
    padding: 8rem 3rem 5rem;
  }
  .l-footer .l-footer__body {
    display: flex;
    letter-spacing: 0.3rem;
    line-height: 3.4rem;
    font-weight: bold;
    text-align: center;
  }
  .l-footer .l-footer__logoNav {
    flex-basis: 100%;
  }
  .l-footer .l-footer__logoNav__sns {
    margin: 3rem auto;
    width: 100%;
  }
  .l-footer .l-footer__logoNav__sns__link img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: cover;
    vertical-align: middle;
  }
  .l-footer .l-footer__logoNav__sns__link.sns_icon__big img {
    width: 4rem;
    height: 4rem;
  }
  .l-footer .l-footer__foot {
    flex-flow: column;
    margin-top: 3rem;
  }
  .l-footer .l-footer__foot_copyright {
    order: 2;
    font-size: 1rem;
  }
  .l-footer .l-footer__foot__links {
    flex-flow: column;
    flex-basis: 100%;
  }
  .l-footer .l-footer__foot__link {
    font-size: 1.4rem;
    line-height: 100%;
    margin-bottom: 2.4rem;
  }
}

.l-wrap {
  position: relative;
  margin: 0 auto;
}

.l-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

@media screen and (min-width: 1px) and (max-width: 768px) {
  .l-wrap {
    position: relative;
    max-width: 76.8rem;
    min-width: 1rem;
    margin: 0 auto;
  }
}
