@charset "UTF-8";
/* カラー */
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote, figure {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

img, iframe {
  border: 0;
  height: auto;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #000;
}

ul, dl, ol {
  text-indent: 0;
}

ul li {
  list-style: none;
}

address, caption, cite, code, dfn, em, var {
  font-style: normal;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

* html input, * html textarea, * html select {
  font-size: 100%;
}

*:first-child + html + input, *:first-child html + textarea, *:first-child + html select {
  font-size: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

th, td {
  text-align: left;
  vertical-align: top;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
}

* html pre, * html code, * html kbd, * html samp, * html tt {
  font-size: 100%;
  line-height: 100%;
}

*:first-child + html pre, *:first-child html + code, *:first-child html + kbd, *:first-child + html + samp, *:first-child + html tt {
  font-size: 108%;
  line-height: 100%;
}

input, select, textarea {
  font-size: 100%;
}

/* カラー */
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
html {
  font-size: 62.5%;
}

body {
  color: #2b323b;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  background: #fff;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
@media all and (max-width: 896px) {
  body {
    font-size: 1.4rem;
  }
}
body.is-fixed {
  overflow: hidden;
}

a {
  color: currentColor;
  transition: all 0.3s ease-out;
}
a:hover {
  opacity: 0.7;
}

@media all and (max-width: 896px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}
@media all and (max-width: 896px) {
  .sponly {
    display: block;
  }
}

.portraitonly {
  display: none;
}
@media all and (max-width: 480px) {
  .portraitonly {
    display: block;
  }
}

@media all and (max-width: 480px) {
  .portraitnone {
    display: none;
  }
}

.tabonly {
  display: none;
}
@media all and (max-width: 1025px) {
  .tabonly {
    display: block;
  }
}

@media all and (max-width: 1025px) {
  .tabnone {
    display: none;
  }
}

.mdonly {
  display: none;
}
@media all and (max-width: 600px) {
  .mdonly {
    display: block;
  }
}

@media all and (max-width: 600px) {
  .mdnone {
    display: none;
  }
}

.span_br {
  display: inline-block;
}

img {
  pointer-events: none;
  max-width: 100%;
}
img.fitimg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.contents {
  width: 100%;
  overflow: hidden;
}

.width {
  width: calc(100% - 60px);
  max-width: 1580px;
  margin: 0 auto;
}

.txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 2;
}
@media all and (max-width: 896px) {
  .txt {
    font-size: 1.6rem;
  }
}

.btn_common {
  text-align: center;
  max-width: 360px;
}
@media all and (max-width: 896px) {
  .btn_common {
    max-width: 280px;
  }
}
.btn_common > a {
  box-sizing: border-box;
  display: block;
  padding: 1.125em 0.625em;
  border: 1px solid #D2D2D2;
  background: #fff;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .btn_common > a {
    font-size: 1.6rem;
  }
}
.btn_common > a:hover {
  opacity: 1;
  border-color: #000;
  background: #000;
  color: #fff;
}

.moveTop {
  opacity: 0;
  transition: 1s;
  transform: translate(0, 30px);
}
.moveTop.current {
  opacity: 1;
  transform: translate(0, 0);
}

.moveNone {
  opacity: 0;
  transition: 1s;
}
.moveNone.current {
  opacity: 1;
  transform: translate(0, 0);
}

.moveRight {
  opacity: 0;
  transition: 1s;
  transform: translate(-20px, 0);
}
.moveRight.current {
  opacity: 1;
  transform: translate(0, 0);
}

.moveLeft {
  opacity: 0;
  transition: 1s;
  transform: translate(20px, 0);
}
.moveLeft.current {
  opacity: 1;
  transform: translate(0, 0);
}

header {
  box-sizing: border-box;
  padding: 10px 2.6vw;
  position: fixed;
  z-index: 1000;
  background: transparent;
  width: 100%;
  height: 90px;
  transition: all 0.3s ease-out;
}
@media all and (max-width: 1367px) {
  header {
    padding: 10px 20px;
  }
}
@media all and (max-width: 1025px) {
  header {
    height: 58px;
    padding: 10px 58px 10px 20px;
  }
}
header.is-in {
  background: #fff;
}
header.active {
  background: #fff;
}
header .area_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px 30px;
  height: 100%;
}
@media all and (max-width: 1025px) {
  header .area_header {
    gap: 5px 20px;
  }
}
header .area_header .sec_header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px 2.6vw;
}
header .area_header .header_logo {
  width: 200px;
}
@media all and (max-width: 1025px) {
  header .area_header .header_logo {
    width: 145px;
  }
}
@media all and (max-width: 1025px) {
  header .area_header .header_menu {
    display: none;
  }
}
header .area_header .list_menu {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  display: flex;
  gap: 1.6vw;
}
@media all and (max-width: 1367px) {
  header .area_header .list_menu {
    font-size: 1.6rem;
  }
}
header .area_header .list_menu a {
  display: inline-block;
  position: relative;
}
header .area_header .list_menu a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: #2b323b;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  transition: all 0.3s ease-out;
}
header .area_header .list_menu a:hover {
  opacity: 1;
}
header .area_header .list_menu a:hover::before {
  width: 20px;
}
header .area_header .list_menu a.active::before {
  width: 20px;
}
header .area_header .header_link .link_contact {
  display: none;
}
@media all and (max-width: 1025px) {
  header .area_header .header_link .link_contact {
    display: block;
    line-height: 1;
  }
}
header .area_header .header_link .link_contact > a {
  display: block;
}
@media all and (max-width: 1025px) {
  header .area_header .header_link .link_shop_header {
    display: none;
  }
}
header .area_header .header_link .link_shop_header > a {
  box-sizing: border-box;
  padding: 0.3em 1.2em;
  border: 1px solid #2b323b;
  border-radius: 30px;
  display: inline-block;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.15em;
  font-weight: 500;
}
@media all and (max-width: 1367px) {
  header .area_header .header_link .link_shop_header > a {
    font-size: 1.3rem;
  }
}
header .area_header .header_link .link_shop_header > a::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url("../images/icon_cart.svg") center center/contain no-repeat;
  vertical-align: -0.2em;
  margin-right: 0.4em;
}
header .sp_menu {
  display: none;
}
@media all and (max-width: 1025px) {
  header .sp_menu {
    display: block;
  }
}
header .sp_menu .menu-trigger {
  display: grid;
  place-content: center;
  width: 90px;
  height: 90px;
  background: transparent;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  padding: 10px;
  box-sizing: border-box;
}
@media all and (max-width: 1025px) {
  header .sp_menu .menu-trigger {
    width: 58px;
    height: 58px;
  }
}
header .sp_menu .menu-trigger.active span {
  background: #2b323b;
}
header .sp_menu .menu-trigger.active span:nth-of-type(1) {
  left: 0;
  top: 6px;
  transform: rotate(45deg);
}
header .sp_menu .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
header .sp_menu .menu-trigger.active span:nth-of-type(3) {
  left: 0;
  bottom: 6px;
  transform: rotate(-45deg);
}
header .sp_menu .menu-trigger .menu {
  width: 20px;
  height: 13px;
  position: relative;
}
header .sp_menu .menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background: #2b323b;
  transition: all 0.5s;
}
header .sp_menu .menu-trigger span:nth-of-type(1) {
  top: 0;
}
header .sp_menu .menu-trigger span:nth-of-type(2) {
  top: 6px;
}
header .sp_menu .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
header .sp_menu .nav_header {
  width: 100%;
  max-width: 400px;
  height: calc(100% - 58px);
  padding: 30px;
  background: #fff;
  color: #2b323b;
  position: fixed;
  top: 58px;
  right: 0;
  z-index: 1001;
  transform: translate(400px);
  transition: all 0.5s;
  overflow: auto;
}
header .sp_menu .nav_header.open {
  transform: translateZ(0);
}
header .sp_menu .list_nav > li {
  border-bottom: 1px solid #999;
}
header .sp_menu .list_nav > li > a {
  display: block;
  padding: 10px;
}
header .sp_menu .link_shop_nav {
  margin-top: 30px;
}
header .sp_menu .link_shop_nav > a {
  box-sizing: border-box;
  padding: 0.3em 1.2em;
  border: 1px solid #2b323b;
  border-radius: 30px;
  display: inline-block;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.15em;
  font-weight: 500;
}
header .sp_menu .link_shop_nav > a::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url("../images/icon_cart.svg") center center/contain no-repeat;
  vertical-align: -0.2em;
  margin-right: 0.4em;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.5s;
}
.overlay.open {
  width: 100%;
  height: 100vh;
  opacity: 1;
  position: fixed;
}

.footer {
  box-sizing: border-box;
  padding: 100px 2.6vw;
  background: #2B2B2B;
  color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
  z-index: 100;
}
@media all and (max-width: 1025px) {
  .footer {
    padding: 50px 30px;
  }
}
.footer .area_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media all and (max-width: 896px) {
  .footer .area_footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
.footer .block_menu_footer {
  margin-top: 30px;
}
@media all and (max-width: 1025px) {
  .footer .block_menu_footer {
    margin-top: 50px;
  }
}
.footer .block_menu_footer .list_menu {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6vw;
}
@media all and (max-width: 1025px) {
  .footer .block_menu_footer .list_menu {
    font-size: 1.6rem;
    gap: 20px;
  }
}
@media all and (max-width: 480px) {
  .footer .block_menu_footer .list_menu {
    flex-direction: column;
  }
}
.footer .block_menu_footer .list_menu a {
  display: inline-block;
}
.footer .block_menu_footer .list_menu02 {
  margin-top: 30px;
  font-size: 1.4rem;
  color: #999;
  display: flex;
  flex-wrap: wrap;
  gap: 2.6vw;
}
@media all and (max-width: 1025px) {
  .footer .block_menu_footer .list_menu02 {
    margin-top: 50px;
    gap: 20px;
  }
}
@media all and (max-width: 480px) {
  .footer .block_menu_footer .list_menu02 {
    flex-direction: column;
  }
}
@media all and (max-width: 896px) {
  .footer .sec_link_footer {
    width: 100%;
  }
}
.footer .block_link_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.6vw;
}
@media all and (max-width: 896px) {
  .footer .block_link_footer {
    gap: 20px;
    justify-content: flex-start;
  }
}
@media all and (max-width: 480px) {
  .footer .block_link_footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
.footer .block_link_footer .link_shop_footer > a {
  box-sizing: border-box;
  padding: 0.3em 1.2em;
  border: 1px solid #fff;
  border-radius: 30px;
  display: inline-block;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.15em;
  font-weight: 500;
}
@media all and (max-width: 1025px) {
  .footer .block_link_footer .link_shop_footer > a {
    font-size: 1.3rem;
  }
}
.footer .block_link_footer .link_shop_footer > a::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url("../images/icon_cart_white.svg") center center/contain no-repeat;
  vertical-align: -0.2em;
  margin-right: 0.4em;
}
@media all and (max-width: 1025px) {
  .footer .block_link_footer .btn_instagram {
    width: 48px;
  }
}
.footer .txt_attention {
  text-align: right;
  font-size: 1.4rem;
  color: #999;
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  .footer .txt_attention {
    text-align: left;
    margin-top: 40px;
  }
}
.footer .txt_copyright {
  text-align: right;
  font-size: 1.4rem;
  font-family: "Open Sans", sans-serif;
  color: #999;
  margin-top: 20px;
}
@media all and (max-width: 896px) {
  .footer .txt_copyright {
    text-align: left;
    font-size: 1.2rem;
  }
}
.footer #pagetop {
  position: fixed;
  right: 1vw;
  bottom: 0;
  z-index: 1500;
  cursor: pointer;
}
@media all and (max-width: 896px) {
  .footer #pagetop {
    width: 30px;
    right: 20px;
  }
}

input[type=submit], input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=button]::focus {
  outline-offset: -2px;
}