@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  min-width: 1280px;
  margin: 0 auto;
  background-color: #fff;
  color: #333;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  font-family: source-han-serif-japanese, serif;
  letter-spacing: 0.1em;
  line-break: strict;
  /* text-align: justify; */
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
body.no-scroll {
  overflow: hidden;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: #333;
  cursor: pointer;
}

.inner {
  margin: 0 auto;
}

.en {
  font-family: trajan-pro-3, serif;
}

a.disabled{
  pointer-events: none;
  opacity: .7;
}

@media screen and (max-width: 600px) {
  body {
    min-width: initial;
    overflow-x: hidden;
  }
  body.top::before {
    width: 200px;
    border-width: 3000px 200px 0 0;
  }
}
/* ------------------------------------- */
/*デバイス切り替えここから*/
/* ------------------------------------- */
@media screen and (max-width: 600px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (min-width: 601px) {
  .sp {
    display: none !important;
  }
}
/* ------------------------------------- */
/* 共通スタイル
/* ------------------------------------- */
.section {
  padding-top: 160px;
}
.section-bg {
  position: relative;
}
.section-bg::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #e8eced;
  content: "";
}
.section-title {
  position: relative;
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 3.6rem;
}
.section-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1em;
  height: 2px;
  background-color: #e8eced;
  content: "";
}
.section-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 752px;
  margin: 87px auto 0;
}
.section-list-item {
  position: relative;
  width: 248px;
  text-align: center;
}
.section-list-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 24px;
  transform: translateY(-50%);
  background-color: #333;
  content: "";
}
.section-list-item:last-child::after, .section-list-item:nth-child(3n)::after {
  position: absolute;
  top: 50%;
  right: -2px;
  width: 2px;
  height: 24px;
  transform: translateY(-50%);
  background-color: #333;
  content: "";
}
.section-list-item:nth-child(n+4) {
  margin-top: 26px;
}
.section-list-item a {
  display: inline-block;
  position: relative;
  font-weight: 500;
}
.section-list-item a::after {
  visibility: hidden;
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background-color: rgba(0, 204, 255, 0.4);
  content: "";
  opacity: 0;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .section-list-item a:hover::after {
    visibility: visible;
    bottom: -2px;
    opacity: 1;
  }
}

@media screen and (max-width: 600px) {
  .section {
    padding-top: 100px;
  }
  .section-title {
    font-size: 2.8rem;
  }
  .section-list {
    justify-content: flex-start;
    max-width: 100%;
    margin: 124px auto 0;
    padding: 0 5%;
  }
  .section-list-item {
    width: 50%;
  }
  .section-list-item:nth-child(2n)::after {
    position: absolute;
    top: 50%;
    right: -2px;
    width: 2px;
    height: 24px;
    transform: translateY(-50%);
    background-color: #333;
    content: "";
  }
  .section-list-item:nth-child(n+4) {
    margin-top: 0px;
  }
  .section-list-item:nth-child(n+3) {
    margin-top: 28px;
  }
  .section-list-item a {
    font-size: 1.2rem;
  }
}
.inner {
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .inner {
    padding: 0 5%;
  }
}
.lower-mv {
  position: relative;
}
.lower-mv-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 120px 183px 0 183px;
}
.lower-mv-title {
  padding-bottom: 30px;
  border-bottom: solid 1px #333;
  font-weight: 500;
  font-size: 6rem;
  text-align: left;
}
.lower-mv-text {
  margin-top: 30px;
  line-height: 1.7;
}
.lower-mv-bg {
  margin: 70px 100px 0 100px;
  padding-top: 31.4%;
}
.lower-mv-copyright {
  -ms-writing-mode: tb-rl;
  position: absolute;
  bottom: 0;
  left: 45px;
  font-size: 1rem;
  font-family: trajan-pro-3, serif;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 600px) {
  .lower-mv {
    padding: 0 5%;
  }
  .lower-mv-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 115px 0 0;
  }
  .lower-mv-title {
    font-size: 3.2rem;
  }
  .lower-mv-bg {
    width: 100%;
    margin: 50px 0 0 0;
    padding-top: 66%;
  }
  .lower-mv-copyright {
    -ms-writing-mode: initial;
    position: static;
    margin-top: 20px;
    text-align: right;
    writing-mode: initial;
  }
}
.button {
  text-align: center;
}
.button a {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 18px 0;
  border: solid 1px #333;
  font-size: 1.2rem;
  font-family: source-han-serif-japanese, serif;
  letter-spacing: 1.2px;
}
.button a::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 2px;
  transform: translateY(-50%);
  background-color: #333;
  content: "";
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .button a:hover::after {
    width: 0;
    transition: 0.3s;
  }
}

@media screen and (max-width: 600px) {
  .inner {
    padding: 0 5%;
  }
}
/* ------------------------------------- */
/* パンくずリスト
/* ------------------------------------- */
.bread_wrap {
  padding: 12px 0 0;
  font-size: 1.2rem;
}
.bread_wrap a, .bread_wrap a:visited {
  display: inline;
  color: #333;
}
.bread_wrap ol {
  display: flex;
  flex-wrap: wrap;
  max-width: 1110px;
  margin: 0 auto;
  font-size: 1.2rem;
}
.bread_wrap ol li {
  display: inline-block;
  color: #333;
  letter-spacing: 1.2px;
  list-style-type: none;
}
.bread_wrap ol li:not(:last-of-type) a {
  color: #333;
}
.bread_wrap ol li::after {
  content: "＞";
  color: #333;
  font-weight: 900;
  padding: 0 0.3em;
}
.bread_wrap ol li:last-child::after {
  content: "";
}

@media screen and (max-width: 600px) {
  .bread_wrap {
    padding-top: 50px;
  }
  .bread_wrap ol {
    margin-left: 0;
    font-size: 1.4rem;
  }
}
/* ------------------------------------- */
/* header
/* ------------------------------------- */
.header {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: inherit;
  padding-left: 46px;
}
.header-logo {
  width: 124px;
}
.header-wrapper {
  display: flex;
  align-items: center;
  height: inherit;
}
.header-nav {
  display: flex;
}
.header-nav-list.left {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  margin: 0 18px 0 auto;
  padding-right:30px;
  border-right: solid 1px #fff;
}
.header-nav-list.left .header-nav-item{
  width:33.3%;
  text-align: left;
  padding-left:1em;
}
/* .header-nav-list.left .header-nav-item:nth-child(2),
.header-nav-list.left .header-nav-item:nth-child(3),
.header-nav-list.left .header-nav-item:nth-child(6) {
  margin-left: 45px;
}
.header-nav-list.left .header-nav-item:nth-child(5) {
  margin-left: 75px;
}
*/
.header-nav-list.left .header-nav-item:nth-child(n+4) {
  margin-top: 23px;
} 
.header-nav-list.left .header-nav-item.online a {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}
.header-nav-list.left .header-nav-item.online a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 17px;
  height: 15px;
  transform: translateY(-50%);
  background: url(/img/common/icon_shopping_wh.svg) no-repeat center center/contain;
  content: "";
}
.header-nav-list.right {
  margin-left: 22px;
}
.header-nav-list.right .header-nav-item{
  min-height: 2em;
}
.header-nav-list.right .header-nav-item:nth-child(2) {
  margin-top: 23px;
}
.header-nav-item a {
  position: relative;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.header-nav-item a::after {
  visibility: hidden;
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background-color: rgba(0, 204, 255, 0.4);
  content: "";
  opacity: 0;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header-nav-item a:hover::after {
    visibility: visible;
    bottom: 2px;
    opacity: 1;
  }
}
.header-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 65px;
  margin-left: 35px;
}
.header-link-item.language {
  width: 26px;
  height: 26px;
  padding: 3px 0;
  background-color: #fff;
  text-align: center;
}
.header-link-item.language:nth-child(2) {
  margin-left: auto;
}
.header-link-item.language a {
  font-size: 1.2rem;
  letter-spacing: 1.2px;
}
.header-link-item.language.is-active {
  background-color: #333;
}
.header-link-item.language.is-active a {
  color: #fff;
}
.header-link-item.instagram {
  width: 23px;
  margin-top: 10px;
}
.header-contact-button {
  width: 100px;
  margin-left: 30px;
  background-color: #333;
  text-align: center;
}
.header-contact-button a {
  display: inline-block;
  width: 100%;
  height: 100px;
  padding-top: 74px;
  background: url(/img/common/icon_contact.svg) no-repeat center top 28px/30%;
  color: #fff;
  font-size: 1rem;
  font-family: trajan-pro-3, serif;
  letter-spacing: 1px;
}
.header .burger {
  z-index: 22;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}
.header .burger.is-black span {
  background-color: #333;
  transition: all 0.6s ease 0s;
}
.header .burger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.6s ease 0s;
}
.header .burger span.bar2 {
  margin-top: 8px;
  opacity: 1;
}
.header .burger span.bar3 {
  margin-top: 16px;
}
.header .burger.is-open span.bar1 {
  transform: translateY(6px) rotate(-45deg);
  background-color: #333;
  transition: all 0.6s ease 0s;
}
.header .burger.is-open span.bar2 {
  opacity: 0;
  transition: all 0.6s ease 0s;
}
.header .burger.is-open span.bar3 {
  margin-top: 0;
  transform: translateY(6px) rotate(45deg);
  background-color: #333;
  transition: all 0.6s ease 0s;
}
.header .burger-content {
  z-index: 21;
  position: fixed;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  padding-top: 75px;
  background-color: #fff;
  transition: 0.6s;
}
.header .burger-content.is-open {
  right: 0;
  transition: 0.6s;
}
.header .burger-nav-list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: solid 1px #e8eced;
}
.header .burger-nav-item {
  width: 50%;
  text-align: center;
  font-size: 1.2rem;
}
.header .burger-nav-item a {
  display: inline-block;
  width: 100%;
  padding: 18px 0;
  border-top: solid 1px #e8eced;
  line-height: 1.3;
}
.header .burger-nav-item:nth-child(2n) a {
  border-left: solid 1px #e8eced;
}
.header .burger-contact-button {
  width: 335px;
  margin: 30px auto 0;
  text-align: center;
}
.header .burger-contact-button a {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 21px 0;
  background-color: #333;
  color: #fff;
  font-family: trajan-pro-3, serif;
}
.header .burger-contact-button a::before {
  position: absolute;
  top: 50%;
  left: 95px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(/img/common/icon_contact.svg) no-repeat center center/contain;
  content: "";
}
.header .burger-link-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 73px;
}
.header .burger-link-item.language {
  width: 26px;
  height: 26px;
  padding: 5px 0;
  background-color: #fff;
  text-align: center;
}
.header .burger-link-item.language.is-active {
  background-color: #333;
}
.header .burger-link-item.language.is-active a {
  color: #fff;
}
.header .burger-link-item.language:nth-child(2) {
  position: relative;
  margin: 0 9px 0;
}
.header .burger-link-item.language:nth-child(2)::after {
  position: absolute;
  top: 50%;
  right: -9px;
  width: 1px;
  height: 100%;
  transform: translateY(-50%);
  background-color: #e8eced;
  content: "";
}
.header .burger-link-item.instagram {
  width: 23px;
  margin: 0 0 0 9px;
}
.header .burger-logo {
  width: 144px;
  margin: 42px auto 0;
}

#lower .header {
  position: static;
  background-color: #fff;
}
#lower .header-nav-item a {
  color: #333;
}
#lower .header-nav-item.online a::before {
  background: url(/img/common/icon_shopping.svg) no-repeat center center/contain;
}
#lower .header-nav-list.left {
  border-right: solid 1px #333;
}

@media screen and (max-width: 600px) {
  .header {
    height: 50px;
    position: fixed;
    transition: all 0.6s ease 0s;
  }
  .header.change-color {
    background-color: #fff;
    transition: all 0.6s ease 0s;
  }
  .header-inner {
    padding: 0 14px 0 21px;
  }
  .header-logo {
    width: 64px;
  }
  #lower .header {
    position: fixed;
  }
  #lower .header .burger span {
    background-color: #333333;
  }
}
/* ------------------------------------- */
/* category
/* ------------------------------------- */
.category {
  margin-top: 190px;
}
.category-inner {
  max-width: 1000px;
}
.category-list {
  display: flex;
  flex-wrap: wrap;
}
.category-item {
  width: calc(25% - 3px);
}
.category-item:not(:nth-child(4n+1)) {
  margin-left: 4px;
}
.category-item:nth-child(n+5) {
  margin-top: 48px;
}
.category-item a {
  display: inline-block;
}
.category-item a figure .thumbnail{
  position: relative;
}
.category-item a figure .thumbnail::before {
  z-index: 1;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 39px;
  height: 39px;
  background: url(/img/common/icon_arrow.png) no-repeat center center/contain;
  content: "";
}
.category-item a figure img {
  transition: 0.3s;
}
.category-item a figure figcaption {
  margin-top: 35px;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 2px;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .category-item a:hover figure img {
    opacity: 0.7;
    transition: 0.3s;
  }
}

@media screen and (max-width: 600px) {
  .category {
    margin-top: 150px;
  }
  .category-inner {
    max-width: 100%;
  }
  .category-item {
    width: calc(50% - 2.5px);
  }
  .category-item:not(:nth-child(4n+1)) {
    margin-left: 0px;
  }
  .category-item:nth-child(n+5) {
    margin-top: 0px;
  }
  .category-item:nth-child(2n) {
    margin-left: 5px;
  }
  .category-item:nth-child(n+3) {
    margin-top: 30px;
  }
  .category-item a figure .thumbnail::before {
    width: 25px;
    height: 25px;
  }
  .category-item a figure figcaption {
    margin-top: 23px;
    font-size: 1.4rem;
    letter-spacing: 1.4px;
  }
  #lower .category {
    margin-top: 100px;
  }
}
/* ------------------------------------- */
/* footer
/* ------------------------------------- */
.footer {
  padding: 68px 0 45px;
}
.footer-inner {
  width: 1000px;
}
.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.footer-logo {
  width: 250px;
}
.footer-nav {
  display: flex;
  margin-left: 260px;
}
.footer-nav-list.right {
  margin-right: 85px;
}
.footer-nav-item {
  line-height: 2;
  font-size: 1.2rem;
}
.footer-nav-item a {
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-item a:hover {
    border-bottom: solid 1px #333;
    transition: 0.3s;
  }
}
.footer-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 65px;
  margin-left: 35px;
}
.footer-link-item.language {
  width: 26px;
  height: 26px;
  padding: 3px 0;
  background-color: #fff;
  text-align: center;
}
.footer-link-item.language:nth-child(2) {
  margin-left: auto;
}
.footer-link-item.language a {
  font-size: 1.2rem;
  letter-spacing: 1.2px;
}
.footer-link-item.language.is-active {
  background-color: #333;
}
.footer-link-item.language.is-active a {
  color: #fff;
}
.footer-link-item.instagram {
  width: 23px;
  margin-top: 10px;
}
.footer-copyright {
  margin-top: 60px;
  padding-top: 20px;
  border-top: solid 1px #e8eced;
  text-align: center;
}
.footer-copyright p {
  font-size: 1.2rem;
}
.footer .pagetop {
  display: none;
  z-index: 1;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
}

#lower .footer {
  margin-top: 160px;
  border-top: solid 1px #eaedee;
}

@media screen and (max-width: 600px) {
  .footer {
    padding: 80px 0 100px;
  }
  .footer-inner {
    max-width: 100%;
    padding: 0;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    order: 3;
    width: 169px;
    margin-top: 30px;
  }
  .footer-nav {
    justify-content: center;
    order: 1;
    width: 100%;
    margin-left: 0;
  }
  .footer-nav-list.right {
    margin-right: 0;
    border-right: solid 1px #e8eced;
  }
  .footer-nav-list {
    width: 50%;
    border-bottom: solid 1px #e8eced;
  }
  .footer-nav-item {
    border-top: solid 1px #e8eced;
    text-align: center;
  }
  .footer-nav-item a {
    display: inline-block;
    width: 100%;
    padding: 19px 0;
  }
  .footer-link-list {
    align-items: center;
    order: 2;
    max-width: 100%;
    margin: 33px auto 0;
  }
  .footer-link-item.language:nth-child(2) {
    position: relative;
    margin: 0 9px 0;
  }
  .footer-link-item.language:nth-child(2)::after {
    position: absolute;
    top: 50%;
    right: -9px;
    width: 1px;
    height: 100%;
    transform: translateY(-50%);
    background-color: #e8eced;
    content: "";
  }
  .footer-link-item.instagram {
    margin: 0 0 0 11px;
  }
  .footer-copyright {
    margin: 38px 5% 0;
    line-height: 1.5;
  }
  #lower .footer {
    margin-top: 0;
    border-top: none;
  }
}
/* ------------------------------------- */
/* 404エラー
/* ------------------------------------- */
.lower-mv-error {
  background: url(/img/error/bg-error.jpg) no-repeat center center/cover;
}

.error-inner {
  max-width: 1000px;
}
.error-subtitle {
  margin-top: 85px;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}
.error-text {
  margin-top: 40px;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
.error-button {
  width: 250px;
  margin: 50px auto 0;
}

@media screen and (max-width: 600px) {
  .lower-mv-error {
    background: url(/img/error/sp/bg-error_sp.jpg) no-repeat center center/cover;
  }
  .error-inner {
    max-width: 100%;
  }
  .error-subtitle {
    margin-top: 40px;
    padding-left: 0;
    line-height: 1.7;
  }
  .error-text {
    padding-left: 0;
  }
}