@charset "UTF-8";
/*
Theme Name: 長い目でルック
Description: Nagaimede
Template: welcart_basic
Version: 1.0.0
*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@600;800&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Noto+Serif+JP:wght@400;600&display=swap");
/*@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&text=0123456789&display=swap');*/
@font-face {
  font-family: "Merriweather Custom";
  src: url("merriweather/Merriweather-Light.otf") format("opentype");
  unicode-range: U+30-39;
  /* 0-9 の Unicode */ }
*, *:before, *:after {
  box-sizing: border-box;
  outline: none; }

html {
  /* フォントサイズの正確に */
  -webkit-text-size-adjust: 100%;
  /* 文字をシャープに */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* カーニングとリガチャ（合字）を調整 */
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  font-family: "Merriweather Custom","Josefin Slab", YakuHanMPs_Noto, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "HiraMinProN",serif;
  font-weight: 300; }

/* この設定大事。welcart親の設定を無効に */
html {
  overflow-y: inherit; }

a, a:focus {
  outline: none; }

button, input, input:focus {
  outline: none; }

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: none; }

body {
  animation: fadein 3s forwards;
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Merriweather Custom","Josefin Slab", YakuHanMPs_Noto, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "HiraMinProN",serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  color: #000;
  overflow-x: hidden;
  font-feature-settings: "palt";
  background-color: #E7DBCB;
  letter-spacing: 0.05em;
  word-spacing: -0.1em; }
  @media (min-width: 1024px) {
    body {
      font-size: 22px; } }

h1, h2, h3, h4, h5, h6, p, span, div, select {
  font-family: "Merriweather Custom","Josefin Slab", YakuHanMPs_Noto, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "HiraMinProN",serif;
  letter-spacing: 0.05em;
  font-weight: 300;
  word-spacing: -0.1em; }

.half {
  margin-bottom: 0; }

.mes {
  font-family: "Merriweather Sans", serif !important;
  font-weight: 300;
  font-style: normal; }

/*.me {
  font-family: "Merriweather", serif !important;
  font-weight: 300;
  font-style: normal;
}*/
.gothic {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif" !important;
  padding: 0 !important; }

@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
html {
  scroll-behavior: smooth; }

#content {
  padding: 0; }

.mar-top1 {
  margin-top: 1em; }

.mar-top2 {
  margin-top: 2em; }

.mar-top3 {
  margin-top: 3em; }

.mar-top4 {
  margin-top: 4em !important; }

.mar-top5 {
  margin-top: 5em !important; }

figure {
  margin: 0; }

main {
  margin-top: 250px;
  z-index: -1;
  position: relative; }
  @media (min-width: 1024px) {
    main {
      margin-top: 350px; } }

/* ハンバーガーボタンのデザイン */
.box {
  position: fixed;
  width: 130px;
  height: 130px;
  top: 0;
  right: 0;
  z-index: 11; }

/* 右上に幅130px、色#030303の三角形を作る */
.corner-triangle {
  position: relative;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 130px solid transparent;
  border-top: 130px solid #030303;
  /* 三角形の色 */
  cursor: pointer; }
  .corner-triangle.active {
    border-top: 130px solid #E7DBCB;
    opacity: 1; }
  .corner-triangle.trans {
    opacity: .6; }

.drawer__button {
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
  /* メニューを開いている時もクリックできるよう設定 */
  top: -120px;
  right: 20px; }

/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 3px;
  background-color: white;
  transform: translateX(-50%); }

.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease; }

.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.2rem));
  transition: transform 0.3s ease; }

/* 展開時のデザイン */
.active .drawer__button > span:first-child {
  transform: translate(-50%, -50%) rotate(-25deg);
  background-color: black; }

.active .drawer__button > span:last-child {
  transform: translate(-50%, -50%) rotate(25deg);
  background-color: black; }

/* メニューのデザイン */
.drawer__nav {
  position: fixed;
  /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden; }

.drawer__nav.active {
  opacity: 1;
  visibility: visible;
  z-index: 10; }

.drawer__nav__inner {
  position: relative;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 4rem 0 0;
  margin: 0 0 0 auto;
  overflow: hidden;
  transform: translateX(100%);
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  top: 0;
  right: 0; }
  @media (min-width: 1024px) {
    .drawer__nav__inner {
      width: 50vw; } }

.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0); }

.drawer__nav__menu {
  list-style: none;
  padding-left: 0; }

.drawer__nav__link {
  display: block;
  color: white;
  text-decoration: none;
  padding: 1rem 1rem;
  font-family: "Josefin Slab", serif;
  font-size: 36px; }
  .drawer__nav__link:hover {
    color: #FBC122;
    text-decoration: none; }
  .drawer__nav__link::before {
    content: '・';
    display: inline-block;
    margin-right: .3em; }

.submenu-wrap a {
  display: inline-block; }

.sub-bt {
  color: white;
  cursor: pointer;
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  font-size: 20px; }
  .sub-bt.rotate {
    transform: rotate(-90deg); }

.subnav {
  margin-left: 2.7em; }
  .subnav li {
    margin-bottom: 1em; }
    .subnav li a {
      background-color: #295FB5;
      color: black;
      text-decoration: none;
      font-family: "Josefin Slab", serif;
      font-size: 22px;
      padding: 5px 5px 2px 5px; }
      .subnav li a:hover {
        color: #FBC122;
        text-decoration: none; }

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden; }

/*
header
*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 250px;
  margin: 0 auto;
  border-bottom: 0; }
  @media (min-width: 1024px) {
    header {
      width: 350px; } }
  header.behind {
    z-index: -1; }

.logo-wrap {
  display: flex;
  justify-content: center; }
  .logo-wrap h1 {
    width: 250px;
    transition: .3s; }
    @media (min-width: 1024px) {
      .logo-wrap h1 {
        width: 350px; } }
    .logo-wrap h1 img {
      height: auto; }

h1.mini {
  width: 100px; }
  @media (min-width: 1024px) {
    h1.mini {
      width: 200px; } }

.wrap {
  padding-top: 35px;
  padding-left: 18px;
  padding-right: 18px;
  border-bottom: 4px solid white;
  padding-bottom: 0px; }
  @media (min-width: 768px) {
    .wrap {
      padding-left: 50px;
      padding-right: 50px; } }
  @media (min-width: 1024px) {
    .wrap {
      padding-top: 70px;
      padding-bottom: 30px;
      padding-left: 50px;
      padding-right: 50px; } }
  .wrap .wrap-box {
    max-width: 1200px;
    margin: 0 auto; }

.title {
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  padding-left: 1em; }
  .title span {
    font-family: "Josefin Slab", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background-color: #FBC122;
    padding: 8px 4px 0 4px; }

#about .title.show {
  margin-bottom: 45px;
  transition: .2s; }
  @media (min-width: 1024px) {
    #about .title.show {
      margin-bottom: 90px; } }

.title::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 3px;
  background-color: black;
  position: absolute;
  left: 0;
  top: 42%;
  transform: translateY(-50%);
  transition: transform .3s; }
  @media (min-width: 1024px) {
    .title::before {
      width: 22px;
      height: 4px; } }

.title::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 3px;
  background-color: black;
  position: absolute;
  left: 0;
  top: 42%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform .3s; }
  @media (min-width: 1024px) {
    .title::after {
      width: 22px;
      height: 4px; } }

.title.show::before {
  transform: translateY(-50%) rotate(-45deg); }

.title.show::after {
  transform: translateY(-50%) rotate(45deg); }

.content {
  display: none;
  margin-bottom: 50px;
  margin-left: 0;
  margin-right: 0; }
  .content p {
    text-align: justify; }
  .content.default-open {
    display: block;
    /* 初期表示したい要素 */ }
  @media (min-width: 1024px) {
    .content {
      margin-left: 3.2em;
      margin-right: 3.2em; } }
  .content a {
    color: #000;
    transition: .3s;
    text-decoration: none; }
    .content a:hover {
      color: #666; }

/*
home
*/
#manga {
  padding-left: 35px;
  padding-right: 35px; }

.home-img {
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media (min-width: 1024px) {
    .home-img {
      justify-content: space-between;
      flex-wrap: wrap;
      flex-direction: row;
      max-width: 1200px;
      margin: 0 auto; } }
  .home-img div {
    width: 100%;
    border-top: 4px solid #295FB5;
    border-left: 4px solid #295FB5;
    border-right: 4px solid #295FB5; }
    .home-img div:last-of-type {
      border-bottom: 4px solid #295FB5; }
    @media (min-width: 1024px) {
      .home-img div {
        width: 49%;
        margin-bottom: .5%;
        border: 4px solid #295FB5; }
        .home-img div:first-of-type {
          order: 2; }
        .home-img div:nth-of-type(2) {
          order: 4; }
        .home-img div:nth-of-type(3) {
          order: 1; }
        .home-img div:last-of-type {
          order: 3; } }

.sign-box {
  width: 94%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px; }

.sign {
  width: 48px;
  margin-bottom: 5em;
  margin-left: auto; }
  @media (min-width: 1024px) {
    .sign {
      width: 55px;
      margin-left: 0;
      margin-right: auto;
      margin-bottom: 8em; } }
  .sign img {
    width: 100%;
    height: auto; }

/*
items
*/
#items .bc2, #item-detail .bc2 {
  margin-top: .4em; }
#items .bc, #items .bc2, #items h2, #item-detail .bc, #item-detail .bc2, #item-detail h2 {
  flex-wrap: wrap;
  display: flex;
  align-items: center; }
  @media (min-width: 1024px) {
    #items .bc, #items .bc2, #items h2, #item-detail .bc, #item-detail .bc2, #item-detail h2 {
      margin-right: .3em; } }
  #items .bc .arrow, #items .bc2 .arrow, #items h2 .arrow, #item-detail .bc .arrow, #item-detail .bc2 .arrow, #item-detail h2 .arrow {
    font-size: 22px;
    display: inline;
    font-family: "Merriweather Sans", serif;
    margin-left: .6em;
    margin-right: .5em;
    position: relative;
    top: 0; }

.items-wrap.item-detail, .items-wrap.item-list {
  border-top: 4px solid white; }
.items-wrap .wrap#items {
  padding-top: 20px; }
.items-wrap .wrap .bc span, .items-wrap .wrap .bc2 span, .items-wrap .wrap h2 span {
  font-family: "Josefin Slab", YakuHanMPs_Noto, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "HiraMinProN",serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  line-height: 1; }
  .items-wrap .wrap .bc span a, .items-wrap .wrap .bc2 span a, .items-wrap .wrap h2 span a {
    background-color: #FBC122;
    padding: 8px 8px 0 8px; }
  .items-wrap .wrap .bc span.now, .items-wrap .wrap .bc2 span.now, .items-wrap .wrap h2 span.now {
    border-bottom: 0;
    display: inline-block;
    font-size: 22px;
    line-height: 1;
    font-weight: 300;
    margin-bottom: .2em; }
    @media (min-width: 1024px) {
      .items-wrap .wrap .bc span.now, .items-wrap .wrap .bc2 span.now, .items-wrap .wrap h2 span.now {
        font-size: 28px; } }
    .items-wrap .wrap .bc span.now a, .items-wrap .wrap .bc2 span.now a, .items-wrap .wrap h2 span.now a {
      background-color: #295FB5;
      color: black;
      text-decoration: none;
      font-size: 22px;
      display: inline-block;
      padding: 5px; }
      @media (min-width: 1024px) {
        .items-wrap .wrap .bc span.now a, .items-wrap .wrap .bc2 span.now a, .items-wrap .wrap h2 span.now a {
          font-size: 28px; } }
  .items-wrap .wrap .bc span.now2, .items-wrap .wrap .bc2 span.now2, .items-wrap .wrap h2 span.now2 {
    border-bottom: 0;
    display: inline-block;
    font-size: 22px;
    line-height: 1;
    font-weight: 300;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "HiraMinProN",serif; }
    @media (min-width: 1024px) {
      .items-wrap .wrap .bc span.now2, .items-wrap .wrap .bc2 span.now2, .items-wrap .wrap h2 span.now2 {
        font-size: 28px; } }
    .items-wrap .wrap .bc span.now2 a, .items-wrap .wrap .bc2 span.now2 a, .items-wrap .wrap h2 span.now2 a {
      background-color: #579F77;
      padding: 5px;
      color: black;
      text-decoration: none;
      font-size: 22px;
      line-height: 1;
      display: inline-block; }
      @media (min-width: 1024px) {
        .items-wrap .wrap .bc span.now2 a, .items-wrap .wrap .bc2 span.now2 a, .items-wrap .wrap h2 span.now2 a {
          font-size: 28px; } }
  @media (min-width: 1024px) {
    .items-wrap .wrap .bc span, .items-wrap .wrap .bc2 span, .items-wrap .wrap h2 span {
      font-size: 42px; } }
  .items-wrap .wrap .bc span a, .items-wrap .wrap .bc2 span a, .items-wrap .wrap h2 span a {
    color: black;
    text-decoration: none; }
.items-wrap .wrap .bc .all, .items-wrap .wrap .bc2 .all, .items-wrap .wrap h2 .all {
  font-family: "Merriweather Sans", serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #7993BB;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  padding: 5px 5px 4px 5px;
  color: black;
  font-weight: 200; }
  @media (min-width: 1024px) {
    .items-wrap .wrap .bc .all, .items-wrap .wrap .bc2 .all, .items-wrap .wrap h2 .all {
      font-size: 28px; } }

.color {
  font-size: 22px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "HiraMinProN",serif; }
  @media (min-width: 1024px) {
    .color {
      font-size: 28px; } }

.items-nav h2 {
  display: flex;
  align-items: center; }
@media (min-width: 1024px) {
  .items-nav {
    order: 1; } }
.items-nav.sp_only {
  display: block; }
  @media (min-width: 1024px) {
    .items-nav.sp_only {
      display: none; } }
.items-nav.pc_only {
  display: none; }
  @media (min-width: 1024px) {
    .items-nav.pc_only {
      display: block;
      margin-bottom: 2em; } }

#go-back {
  cursor: pointer; }

#items-list {
  margin-bottom: 7em; }
  @media (min-width: 1024px) {
    #items-list {
      margin-bottom: 2em; } }
  #items-list li {
    margin-bottom: 1.5em; }
    @media (min-width: 1024px) {
      #items-list li {
        margin-bottom: 1.7em; } }
  #items-list figure {
    position: relative; }
    #items-list figure figcaption {
      position: absolute;
      top: 7%;
      left: 6%;
      writing-mode: vertical-rl;
      padding: .2em;
      font-size: 8vw;
      line-height: 1;
      font-feature-settings: initial; }
      @media (min-width: 1024px) {
        #items-list figure figcaption {
          font-size: clamp(20px, 2.4vw, 24px);
          padding: .3em;
          top: 3%;
          left: 6%; } }

.item-inner-wrap {
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 1024px) {
    .item-inner-wrap {
      justify-content: space-between;
      gap: 30px; } }

.item-detail-wrap {
  order: 3;
  margin-top: .6em; }
  .item-detail-wrap p {
    text-align: justify;
    letter-spacing: .1em; }
  @media (min-width: 1024px) {
    .item-detail-wrap {
      order: 1;
      width: 45%;
      margin-top: .5em;
      min-width: 20em;
      margin-right: 2%; } }

.items {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  order: 2;
  flex-direction: column;
  margin-top: 1em;
  margin-bottom: 6em; }
  .items.apron-wrap figure {
    position: relative; }
    .items.apron-wrap figure figcaption {
      position: absolute;
      top: 3%;
      right: 4%;
      font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "HiraMinProN", serif;
      background-color: #579F77;
      font-size: 7.4vw;
      padding: .1em;
      writing-mode: vertical-rl;
      font-feature-settings: initial;
      overflow-wrap: break-word;
      text-orientation: upright;
      line-height: 1;
      font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "HiraMinProN", serif; }
      @media (min-width: 1024px) {
        .items.apron-wrap figure figcaption {
          top: 0;
          width: 12%;
          line-height: 1.2;
          font-size: clamp(20px, 2.4vw, 32px); } }
  .items.apron-wrap .sub-items {
    display: flex;
    justify-content: flex-start;
    margin-top: .8em;
    align-items: stretch;
    gap: 0.5em;
    font-variant-ligatures: none;
    text-rendering: geometricPrecision;
    font-size: 5.5vw; }
    @media (min-width: 1024px) {
      .items.apron-wrap .sub-items {
        font-size: clamp(20px, 1.9vw, 24px); } }
    .items.apron-wrap .sub-items li {
      margin-left: .5em;
      font-size: 5.5vw; }
      .items.apron-wrap .sub-items li:first-child {
        margin-left: auto; }
      @media (min-width: 1024px) {
        .items.apron-wrap .sub-items li {
          margin-left: .2em;
          font-size: clamp(20px, 1.9vw, 24px); } }
      .items.apron-wrap .sub-items li a {
        writing-mode: vertical-rl;
        background-color: white;
        padding: .5em 1em;
        border-radius: 100rem;
        color: #000;
        border: 4px solid white;
        font-size: 5.5vw;
        text-align: center;
        font-weight: bold;
        font-feature-settings: initial;
        line-height: 0;
        min-height: 4em; }
        @media (min-width: 1024px) {
          .items.apron-wrap .sub-items li a {
            width: 10%;
            padding: .5em .9em;
            line-height: .1em;
            font-size: clamp(20px, 1.9vw, 23px); } }
        .items.apron-wrap .sub-items li a span {
          font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "HiraMinProN", serif; }
        .items.apron-wrap .sub-items li a:hover {
          border: 4px solid #E3622B; }
  @media (min-width: 1024px) {
    .items {
      flex-direction: inherit; } }
  .items > li {
    width: 100%;
    margin-bottom: 5em; }
    @media (min-width: 1024px) {
      .items > li {
        width: calc( 94% /3 );
        margin-bottom: 5%; } }
    .items > li:last-of-type {
      margin-bottom: 0; }
    .items > li a {
      text-decoration: none; }
      .items > li a:hover img {
        transform: scale(1.1); }
      .items > li a figure div {
        width: 100%;
        aspect-ratio: 1;
        position: relative;
        overflow: hidden; }
        .items > li a figure div::after {
          content: "";
          position: absolute;
          border: 4px solid black;
          box-sizing: border-box;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          display: block; }
        .items > li a figure div img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
          .items > li a figure div img.noitem {
            opacity: .6; }
      .items > li a figure img {
        display: inline-block; }
      .items > li a figure figcaption {
        font-family: "Josefin Slab", YakuHanMPs_Noto, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "HiraMinProN",serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 22px;
        line-height: 1;
        color: black;
        margin: .2em 0; }
        @media (min-width: 1024px) {
          .items > li a figure figcaption {
            margin: .5em 0;
            font-size: 30px; } }

.sold div img {
  opacity: .4; }

.item-info {
  margin-top: 4em; }

.item-main-img-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  order: 2;
  position: relative; }
  @media (min-width: 1024px) {
    .item-main-img-wrap {
      width: 55%;
      flex: 1; } }
  .item-main-img-wrap li {
    position: relative;
    width: 100%; }
    .item-main-img-wrap li:last-of-type {
      margin-bottom: 0; }
    .item-main-img-wrap li::after {
      content: '';
      background-image: url("images/search.png");
      position: absolute;
      bottom: 13px;
      right: 16px;
      width: 7vw;
      height: 7vw;
      max-width: 30px;
      max-height: 30px;
      background-size: cover; }
    .item-main-img-wrap li a {
      text-decoration: none; }
      .item-main-img-wrap li a figure img {
        display: inline-block;
        border: 4px solid black; }
      .item-main-img-wrap li a figure figcaption {
        font-family: "Josefin Slab", YakuHanMPs_Noto, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "HiraMinProN",serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 22px;
        line-height: 1;
        color: black;
        margin: .2em 0; }
        @media (min-width: 1024px) {
          .item-main-img-wrap li a figure figcaption {
            margin: .5em 0;
            font-size: 30px; } }

.breadcrumb {
  margin-top: .4em;
  background-color: #579F77;
  display: inline-block;
  line-height: 1;
  padding: 5px;
  font-size: 22px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "HiraMinProN",serif; }
  @media (min-width: 1024px) {
    .breadcrumb {
      margin-bottom: 0;
      margin-top: .3em;
      align-items: center;
      font-size: 28px; } }

.now {
  border-bottom: 0;
  display: inline-block;
  font-size: 22px; }
  @media (min-width: 1024px) {
    .now {
      font-size: 28px; } }
  .now a {
    background-color: #295FB5;
    color: black;
    text-decoration: none;
    font-size: 22px;
    line-height: 1;
    padding: 5px 5px 4px 5px;
    display: inline-block; }
    @media (min-width: 1024px) {
      .now a {
        font-size: 28px; } }

.items-wrap .wrap h2 span.now3 {
  border-bottom: 0;
  background-color: #295FB5;
  color: black;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  padding: 5px 5px 4px 5px;
  display: inline-block;
  font-weight: 300;
  margin-bottom: .2em; }
  @media (min-width: 1024px) {
    .items-wrap .wrap h2 span.now3 {
      font-size: 28px; } }

.sliderArea {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px; }

.slick-slide {
  margin: 0 5px; }

.slick-slide img {
  width: 100%;
  height: auto; }

.slick-prev,
.slick-next {
  top: -200%;
  z-index: 1; }

.slick-prev:before,
.slick-next:before {
  color: #000; }

.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2; }

.slick-active {
  opacity: 1; }

.slick-current {
  opacity: 1; }

.thumb {
  margin: 20px 0 0; }

.thumb .slick-slide {
  cursor: pointer; }

.thumb .slick-slide:hover {
  opacity: .7; }

/*スライダー２*/
.main-slider {
  width: 100%;
  height: 400px; }

.thumbnail-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 1行に最大3つ表示 */
  gap: 10px;
  /* サムネイル間の余白 */
  overflow: hidden;
  /* スクロールなし */ }

.thumbnail-slider .swiper-slide {
  width: 80px;
  height: 80px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s; }

.thumbnail-slider .swiper-slide.active {
  border-color: #333;
  /* 選択時のハイライト色 */ }

.swiper2-wrap .swiper-button-next {
  padding-left: 1em;
  top: 50% !important;
  right: -30px !important; }
  @media (min-width: 1350px) {
    .swiper2-wrap .swiper-button-next {
      right: calc( 50% - 675px) !important; } }

.swiper2-wrap .swiper-button-prev {
  padding-right: 1em;
  top: 50% !important;
  left: -30px !important; }
  @media (min-width: 1350px) {
    .swiper2-wrap .swiper-button-prev {
      left: calc( 50% - 675px) !important; } }

.swiper3 {
  position: relative;
  width: 100%;
  margin-top: 1em;
  overflow: hidden;
  border: 4px solid #000; }

/*.swiper-slide {
  height: auto !important;
  max-height: 95vh !important;
  width: 100% !important;
}*/
.modalInSlider img {
  max-height: 90vh;
  width: auto;
  /* 画像のアスペクト比を維持 */
  object-fit: contain;
  /* 画像が切れないように調整 */
  display: block;
  margin: 0 auto; }
  @media (min-width: 1024px) {
    .modalInSlider img {
      border: 4px solid black; } }

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  display: none; }

.swiper2 .swiper-wrapper {
  flex-wrap: wrap;
  gap: 2%; }
  @media (min-width: 1024px) {
    .swiper2 .swiper-wrapper {
      flex-wrap: nowrap;
      gap: 0; } }
  .swiper2 .swiper-wrapper div {
    margin-bottom: 2%; }

#slider-wrap {
  position: relative;
  margin-top: 40px; }
  #slider-wrap #custom-slider {
    overflow: auto; }
    @media (min-width: 1024px) {
      #slider-wrap #custom-slider {
        position: relative;
        overflow: hidden;
        width: 100%;
        margin: auto; } }
    #slider-wrap #custom-slider .slides {
      width: 100%; }
      @media (min-width: 1024px) {
        #slider-wrap #custom-slider .slides {
          display: flex;
          transition: transform 0.4s ease;
          width: 95%;
          flex-wrap: nowrap; } }
      #slider-wrap #custom-slider .slides .slide {
        margin-bottom: 60px; }
        @media (min-width: 1024px) {
          #slider-wrap #custom-slider .slides .slide {
            min-width: 100%;
            box-sizing: border-box; } }
        #slider-wrap #custom-slider .slides .slide .slide-images {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 10px; }
          @media (min-width: 1024px) {
            #slider-wrap #custom-slider .slides .slide .slide-images {
              margin-right: 40px; } }
          #slider-wrap #custom-slider .slides .slide .slide-images .img-wrap img {
            border: 4px solid #000; }
            @media (min-width: 1024px) {
              #slider-wrap #custom-slider .slides .slide .slide-images .img-wrap img {
                width: 100%; } }
          #slider-wrap #custom-slider .slides .slide .slide-images .img-wrap::after {
            content: '';
            background-image: url("images/search.png");
            position: absolute;
            bottom: 13px;
            right: 16px;
            max-width: 30px;
            max-height: 30px;
            width: 7vw;
            height: 7vw;
            background-size: cover; }
        #slider-wrap #custom-slider .slides .slide .img-caption {
          grid-column: span 2;
          text-align: left;
          margin-top: 8px; }
          @media (min-width: 1024px) {
            #slider-wrap #custom-slider .slides .slide .img-caption {
              margin-right: 40px; } }

.slider-prev,
.slider-next {
  position: absolute;
  top: calc(50% - 120px);
  cursor: pointer;
  padding: 60px 30px;
  width: 100px;
  height: 100px;
  display: none; }
  .slider-prev::before, .slider-prev::after,
  .slider-next::before,
  .slider-next::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    max-width: 45px;
    width: 5vw;
    height: 2px;
    border-radius: 9999px;
    background-color: #000000; }
    @media (min-width: 1024px) {
      .slider-prev::before, .slider-prev::after,
      .slider-next::before,
      .slider-next::after {
        height: 4px; } }
  @media (min-width: 1024px) {
    .slider-prev,
    .slider-next {
      display: inline; } }

.slider-prev {
  left: -48px; }
  .slider-prev.slide3 {
    left: 0px;
    z-index: 9;
    display: inline !important;
    padding: 60px 30px;
    top: calc(50% - 50px); }
    @media (min-width: 1024px) {
      .slider-prev.slide3 {
        left: 0px;
        padding: 60px 40px;
        top: calc(50% - 60px); } }
    .slider-prev.slide3::before, .slider-prev.slide3::after {
      width: 20px; }
      @media (min-width: 1024px) {
        .slider-prev.slide3::before, .slider-prev.slide3::after {
          width: 30px; } }
    .slider-prev.slide3::before {
      right: 70%; }
      @media (min-width: 1024px) {
        .slider-prev.slide3::before {
          right: 60%; } }
    .slider-prev.slide3::after {
      right: 70%; }
      @media (min-width: 1024px) {
        .slider-prev.slide3::after {
          right: 60%; } }
  .slider-prev::before {
    transform: rotate(45deg);
    transform-origin: 0 50%;
    right: 50%; }
    @media (min-width: 1024px) {
      .slider-prev::before {
        transform-origin: 2px 50%; } }
  .slider-prev::after {
    transform: rotate(-45deg);
    transform-origin: 0 50%;
    right: 50%; }
    @media (min-width: 1024px) {
      .slider-prev::after {
        transform-origin: 2px 50%; } }

.slider-next {
  right: -60px; }
  .slider-next.slide3 {
    right: 0px;
    z-index: 9;
    display: inline !important;
    top: calc(50% - 50px);
    padding: 60px 40px; }
    @media (min-width: 1024px) {
      .slider-next.slide3 {
        top: calc(50% - 60px); } }
    .slider-next.slide3::before, .slider-next.slide3::after {
      width: 20px; }
      @media (min-width: 1024px) {
        .slider-next.slide3::before, .slider-next.slide3::after {
          width: 30px; } }
    .slider-next.slide3::before {
      right: 10%; }
    .slider-next.slide3::after {
      right: 10%; }
  .slider-next::before {
    transform: rotate(45deg);
    transform-origin: 100% 50%;
    right: 18%; }
    @media (min-width: 1024px) {
      .slider-next::before {
        transform-origin: calc(100% - 2px) 50%; } }
  .slider-next::after {
    transform: rotate(-45deg);
    transform-origin: 100% 50%;
    right: 18%; }
    @media (min-width: 1024px) {
      .slider-next::after {
        transform-origin: calc(100% - 2px) 50%; } }

.attention-wrap {
  line-height: 2;
  margin-bottom: 6em; }

.button {
  display: flex;
  justify-content: center; }
  .button p {
    display: inline-block; }
    .button p a {
      display: inline-block;
      background-color: #CB1313;
      padding: 12px 10px 7px 10px;
      font-family: "Josefin Slab", serif;
      font-optical-sizing: auto;
      font-weight: 500;
      font-style: normal;
      font-size: 25px;
      line-height: 1;
      color: black;
      text-decoration: none;
      margin: 3em 0 2em; }
      @media (min-width: 1024px) {
        .button p a {
          font-size: 42px;
          padding: 8px 10px 1px 10px;
          margin: 1em 0 2em; } }

.sns {
  margin-left: 38px;
  margin-top: 50px;
  margin-right: 35px;
  padding-bottom: 50px; }
  @media (min-width: 768px) {
    .sns {
      margin-top: 80px;
      margin-left: 6.25%;
      margin-right: 6.25%;
      padding-bottom: 80px; } }
  .sns li a {
    font-size: 16px;
    color: #000;
    transition: .3s; }
    .sns li a:hover {
      color: #666; }

/*
guide
*/
#guide .content h3 {
  font-size: 18px;
  margin-bottom: 1em; }
  @media (min-width: 1024px) {
    #guide .content h3 {
      font-size: 22px; } }
  #guide .content h3::before {
    content: '●';
    display: inline-block;
    margin-right: .3em; }
#guide .content .text {
  margin-left: 1.2em;
  margin-right: 1.2em; }
  @media (min-width: 1024px) {
    #guide .content .text {
      margin-left: 1.8em;
      margin-right: 1.8em; } }

.text {
  font-size: 18px;
  line-height: 40px; }
  @media (min-width: 1024px) {
    .text {
      font-size: 22px; } }

#about .content {
  margin-left: 1.5em;
  margin-right: 1.5em; }
@media (min-width: 1024px) {
  #about dl {
    display: flex;
    flex-wrap: wrap;
    width: 18em; } }
#about dl dt {
  width: 8em; }
#about dl dd {
  width: 10em; }

.list1 {
  margin-left: 1.2em; }
  @media (min-width: 1024px) {
    .list1 {
      margin-left: 1.8em; } }
  .list1 li {
    line-height: 40px; }
    .list1 li::before {
      content: '・';
      display: inline-block;
      margin-right: .3em; }

.w-title {
  font-style: italic; }

#instagram a {
  color: black;
  transition: .3s; }
  #instagram a:hover {
    color: #808080;
    text-decoration: none; }
#instagram h2 {
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 1;
  display: inline-flex; }
  #instagram h2 span {
    background-color: #FBC122;
    padding: 8px 4px 0 4px; }
  #instagram h2 img {
    width: 32px;
    height: 32px;
    margin-right: 7px;
    display: inline-block;
    margin-top: 5px;
    position: relative;
    left: -5px;
    top: -5px; }
    @media (min-width: 1024px) {
      #instagram h2 img {
        margin-top: 9px;
        left: -4px; } }

/*
law
*/
#law h2 span {
  font-size: 30px;
  padding: 13px 4px 2px 4px;
  line-height: 1.3;
  font-weight: 400; }
  @media (min-width: 1024px) {
    #law h2 span {
      font-size: 36px; } }

#law .content h3 {
  font-size: 18px;
  margin-bottom: 1em; }
  @media (min-width: 1024px) {
    #law .content h3 {
      font-size: 22px; } }
  #law .content h3::before {
    content: '●';
    display: inline-block;
    margin-right: .3em; }
#law .content .text {
  margin-left: 1.2em;
  margin-right: 1.2em; }
  @media (min-width: 1024px) {
    #law .content .text {
      margin-left: 1.8em;
      margin-right: 1.8em; } }
@media (min-width: 1024px) {
  #law .content dl.text {
    display: flex;
    flex-wrap: wrap; }
    #law .content dl.text dt {
      width: 5em; }
    #law .content dl.text dd {
      width: calc(100% - 5em); } }

/*
privacy
*/
#privacy .content h3 {
  font-size: 18px;
  margin-bottom: 1em; }
  @media (min-width: 1024px) {
    #privacy .content h3 {
      font-size: 22px; } }
#privacy .content .text {
  margin-left: 1.2em;
  margin-right: 1.2em; }
  @media (min-width: 1024px) {
    #privacy .content .text {
      margin-left: 1.8em;
      margin-right: 1.8em; } }

/*
footer
*/
footer {
  margin-top: 7em; }
  @media (min-width: 1024px) {
    footer {
      margin-top: 10em; } }

footer {
  clear: none;
  background-color: transparent;
  color: inherit;
  padding: inherit; }

.copyright {
  font-size: 18px;
  color: #CB1313;
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-align: center; }
  .copyright span {
    position: relative;
    top: .15em; }

/*===========
inview
===========*/
.visible {
  transition: transform 0.5s linear;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  transform: translateY(20px); }

/*　brightness　*/
.effect {
  animation-name: imgbrightness;
  opacity: 1;
  transition: .3s;
  transform: translateY(0px); }

@keyframes imgbrightness {
  0% {
    opacity: 0;
    filter: brightness(300%);
    /*　明度300%　*/ }
  100% {
    opacity: 1;
    filter: brightness(100%);
    /*　100%が基準値　*/ } }
/*
item
*/
#item-detail {
  padding-top: 20px; }
  #item-detail li img {
    border: 4px solid black; }
  #item-detail h1 {
    font-size: 35px; }
  #item-detail h3 {
    font-size: 28px;
    margin-top: .3em; }
  #item-detail h4 {
    font-size: 22px;
    margin-top: .6em;
    line-height: 1.5; }

.item-option {
  margin-top: 2em; }
  .item-option dt {
    font-size: 20px;
    margin-bottom: 0 !important; }
  .item-option dd {
    margin-bottom: .5em; }

.item-info .quantity {
  font-size: 20px; }

#string-Others {
  background-color: transparent;
  padding: .3em;
  border: 1px solid black; }

.buy, .item-info .skubutton {
  font-size: 32px !important;
  background-color: black !important;
  color: white !important;
  padding: 5px 10px 5px 10px !important;
  border: 0 !important;
  margin-bottom: 2em !important;
  font-family: inherit;
  border-radius: 0 !important;
  letter-spacing: 0 !important;
  font-weight: inherit !important; }

.item-info .item-option {
  margin-bottom: 0;
  padding: 0;
  clear: both;
  border-top: 0;
  border-bottom: 0; }
  .item-info .item-option dt {
    font-weight: inherit;
    width: auto;
    display: block; }
  .item-info .item-option dd {
    border-left: 0;
    margin-bottom: 0;
    display: block;
    width: auto;
    padding-left: 0; }
    .item-info .item-option dd select {
      max-width: 100%;
      padding: .2em 2.14286em .1em .5714285em;
      border: 1px solid black;
      background: url("images/select-arrow.svg") center right 10px no-repeat;
      background-size: 16px 24px;
      color: black;
      font-family: inherit; }

.skuquantity {
  width: 80px !important;
  height: 1.5em;
  margin: 0 .357143em;
  padding: 0em 1em 0em .357143em;
  border: 1px solid black;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-align: center;
  background-color: transparent;
  font-size: 22px; }

select {
  background: url("images/select-arrow.svg") center right 10px no-repeat;
  background-size: 16px 24px; }

.item-info .c-box {
  text-align: inherit;
  margin-top: .5em;
  margin-bottom: .5em; }

.item-text1 {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 2em; }
  @media (min-width: 1024px) {
    .item-text1 {
      font-size: 20px; } }
  .item-text1 a {
    text-decoration: underline;
    color: black;
    transition: .3s;
    text-decoration-thickness: 1px;
    text-underline-offset: .2rem; }
    .item-text1 a:hover {
      color: #808080; }
  .item-text1 br {
    margin-bottom: 1em; }
  .item-text1 .insta {
    display: inline-block;
    text-decoration: none;
    vertical-align: text-bottom; }

.item-text2 {
  font-size: 22px;
  line-height: 1.7;
  margin-top: .5em; }

#item-photo {
  margin-top: 1.5em;
  margin-bottom: 3em; }
  #item-photo div div {
    width: calc(98%/2) !important; }
    #item-photo div div img {
      border: 3px solid black; }
      @media (min-width: 1024px) {
        #item-photo div div img {
          border: 4px solid black; } }
    @media (min-width: 1024px) {
      #item-photo div div {
        width: 100% !important; } }

.swiper2-wrap {
  position: relative; }

.swiper2 {
  overflow: hidden; }

.close {
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer; }
  .close span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2px; }
    .close span:first-child {
      transform: translate(-50%, -50%) rotate(-25deg);
      background-color: black; }
    .close span:last-child {
      transform: translate(-50%, -50%) rotate(25deg);
      background-color: black; }

.close {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 4%;
  top: 19px; }
  @media (min-width: 1024px) {
    .close {
      right: 1%;
      top: 25px; } }
  @media (min-width: 1350px) {
    .close {
      right: calc(50% - 650px);
      top: 25px; } }
  .close a {
    width: 30px;
    height: 30px;
    display: block; }

/*.close::before, .close::after { 
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; 
  height: 30px; 
  background: #333;
}*/
/*.close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
 
.close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}*/
/*
モーダル
*/
/* ---------------------------- */
/* --- Base --- */
/* ---------------------------- */
.swiperModalButton {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }

.modalOpen {
  cursor: pointer; }

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: #E7DBCBD4; }

.swiper-button-next, .swiper-button-prev {
  color: black !important; }

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto; }

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer; }

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  width: 100%;
  max-width: 800px; }

.modal_inner {
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center; }

/* 閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: 0;
  top: -40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 20; }

.modal__close-btn:hover {
  opacity: 0.8; }

/* 閉じるボタンのX */
.modal__close-btn {
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer; }
  .modal__close-btn span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 3px; }
    .modal__close-btn span:first-child {
      transform: translate(-50%, -50%) rotate(-25deg);
      background-color: black; }
    .modal__close-btn span:last-child {
      transform: translate(-50%, -50%) rotate(25deg);
      background-color: black; }

.lineClose {
  display: inline-block;
  vertical-align: middle;
  color: black;
  line-height: 1;
  width: 2rem;
  height: 0.2rem;
  background: currentColor;
  border-radius: 0.1rem;
  position: relative;
  /* transform: rotate(45deg);*/
  transform: rotate(-25deg); }

.lineClose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  /*transform: rotate(90deg);*/
  transform: rotate(-145deg); }

p.swiperText {
  margin: 0;
  text-align: center; }

/*スマホ時のカート画面のテーブルレイアウト修正*/
/* .テーブルレイアウト修正 */
#wc_cart #cart .upbutton input {
  background-color: black !important;
  color: white;
  border: 0; }
  #wc_cart #cart .upbutton input:hover {
    background-color: black;
    opacity: .7;
    color: white;
    border: 0; }

.to_memberlogin_button, .to_deliveryinfo_button, .to_reganddeliveryinfo_button, .to_confirm_button {
  background-color: black !important;
  color: white;
  border: 0;
  font-size: 20px !important;
  font-weight: bold !important; }
  .to_memberlogin_button:hover, .to_deliveryinfo_button:hover, .to_reganddeliveryinfo_button:hover, .to_confirm_button:hover {
    background-color: black;
    opacity: .7;
    color: white;
    border: 0; }

.upbutton {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: right;
  line-height: 1.5; }
  .upbutton input {
    border-radius: 0 !important;
    height: 3em;
    font-size: 15px; }

.currency_code {
  font-size: 15px; }

.item-info .itemsoldout {
  font-size: 32px !important;
  background-color: black !important;
  color: white !important;
  padding: 5px 10px 0px 10px !important;
  border: 0 !important;
  margin-bottom: 2em !important;
  font-family: inherit;
  border-radius: 0 !important;
  letter-spacing: 0 !important;
  font-weight: inherit !important;
  display: inline-block; }

/*
cart page
*/
.cart-page {
  padding-left: 18px !important;
  padding-right: 18px !important;
  margin: 0 auto 5em auto; }
  @media (min-width: 1024px) {
    .cart-page {
      padding-right: 50px !important;
      padding-left: 50px !important;
      max-width: 1300px; } }
  .cart-page div, .cart-page h1, .cart-page h2, .cart-page h3, .cart-page h4, .cart-page h5, .cart-page h6, .cart-page p, .cart-page span, .cart-page select {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif" !important;
    font-size: 13px; }
    @media (min-width: 1024px) {
      .cart-page div, .cart-page h1, .cart-page h2, .cart-page h3, .cart-page h4, .cart-page h5, .cart-page h6, .cart-page p, .cart-page span, .cart-page select {
        font-size: 16px; } }

input.quantity {
  background-color: white; }

.customer_form input, .customer_form select {
  background-color: white;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif; }

.customer_form th, .customer_form td {
  background-color: transparent;
  border: 0;
  padding-left: 0;
  vertical-align: top;
  padding-top: 1em; }

#zipcode_row td {
  display: flex; }

#zipcode {
  width: 10em; }

#customer-info {
  font-size: 14px;
  width: 100%; }
  @media (min-width: 1024px) {
    #customer-info {
      font-size: 15px; } }
  #customer-info h5 {
    font-size: 18px;
    border-bottom: 0;
    font-weight: bold; }
    #customer-info h5:nth-of-type(2) {
      margin-top: 3em;
      border-top: 1px solid #CFC9C9;
      padding-top: 2em; }

#search_zipcode {
  border-radius: 0 !important;
  border: 1px solid black !important; }

#cart_table {
  width: 100%;
  border: 0;
  display: grid;
  margin: 0 auto;
  background-color: white;
  padding: 1em; }
  @media (min-width: 1024px) {
    #cart_table {
      border: 1px solid #CFC9C9;
      display: table;
      table-layout: fixed;
      padding: 0; } }
  #cart_table td, #cart_table th {
    font-size: 13px; }
    @media (min-width: 1024px) {
      #cart_table td, #cart_table th {
        font-size: 16px; } }
  #cart_table td {
    padding: 0; }
    @media (min-width: 1024px) {
      #cart_table td {
        padding: .357143em; } }
  #cart_table tfoot {
    display: flex;
    justify-content: flex-end; }
    @media (min-width: 1024px) {
      #cart_table tfoot {
        display: table-footer-group; } }
    @media (min-width: 1024px) {
      #cart_table tfoot tr {
        height: 4em; } }
    @media (min-width: 1024px) {
      #cart_table tfoot tr th {
        vertical-align: middle; } }
    #cart_table tfoot tr th.action {
      display: none; }
      @media (min-width: 1024px) {
        #cart_table tfoot tr th.action {
          display: table-cell; } }
    #cart_table tfoot tr th.amount {
      padding-right: 0; }
      @media (min-width: 1024px) {
        #cart_table tfoot tr th.amount {
          padding-right: .3125em; } }
    #cart_table tfoot tr th:nth-of-type(2), #cart_table tfoot tr th:nth-of-type(5) {
      display: none; }
      @media (min-width: 1024px) {
        #cart_table tfoot tr th:nth-of-type(2), #cart_table tfoot tr th:nth-of-type(5) {
          display: table-cell; } }
  #cart_table th {
    border: 0;
    background-color: transparent;
    font-weight: normal; }
    @media (min-width: 1024px) {
      #cart_table th {
        border: 1px solid #CFC9C9;
        background-color: white;
        text-align: center; } }
  #cart_table thead {
    display: none; }
    @media (min-width: 1024px) {
      #cart_table thead {
        display: table-header-group;
        background-color: white; } }
  #cart_table tbody tr {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid black;
    margin-bottom: 1em;
    position: relative; }
    @media (min-width: 1024px) {
      #cart_table tbody tr {
        display: table-row; } }
    #cart_table tbody tr .unitprice {
      position: relative; }
      #cart_table tbody tr .unitprice::before {
        content: '単価';
        position: absolute;
        left: 0; }
        @media (min-width: 1024px) {
          #cart_table tbody tr .unitprice::before {
            content: ''; } }
  #cart_table td {
    border: 0; }
    @media (min-width: 1024px) {
      #cart_table td {
        border: 1px solid #ccc; } }
  #cart_table .num {
    display: none; }
    @media (min-width: 1024px) {
      #cart_table .num {
        display: table-cell;
        width: 5em; } }
  #cart_table .amount {
    font-weight: bold;
    font-size: 20px; }
    @media (min-width: 1024px) {
      #cart_table .amount {
        padding-right: 0.5em; } }
  #cart_table .thumbnail {
    display: table-cell;
    grid-row: 1 / 5;
    grid-column: 1 / span 2;
    padding-bottom: 1em; }
    @media (min-width: 1024px) {
      #cart_table .thumbnail {
        width: 160px;
        text-align: center;
        padding-bottom: .4em; } }
    #cart_table .thumbnail img {
      width: 150px;
      height: 150px; }
    #cart_table .thumbnail a img {
      width: 150px;
      height: 150px; }
  #cart_table .productname {
    grid-row: 1;
    grid-column: 2 / span 2;
    font-weight: bold; }
    @media (min-width: 1024px) {
      #cart_table .productname {
        font-weight: normal; } }
  #cart_table .unitprice {
    grid-row: 2;
    grid-column: 2 / span 2; }
    @media (min-width: 1024px) {
      #cart_table .unitprice {
        width: 8em; } }
  #cart_table .quantity {
    width: 100%;
    text-align: right;
    position: relative;
    grid-row: 3;
    grid-column: 2 / span 2; }
    #cart_table .quantity::before {
      content: '数量';
      position: absolute;
      left: 0; }
      @media (min-width: 1024px) {
        #cart_table .quantity::before {
          content: ''; } }
    @media (min-width: 1024px) {
      #cart_table .quantity {
        width: 80px;
        text-align: center; } }
  #cart_table .subtotal {
    grid-row: 4;
    grid-column: 2 / span 2;
    position: relative; }
    @media (min-width: 1024px) {
      #cart_table .subtotal {
        width: 8em; }
        #cart_table .subtotal[data-label="金額"] {
          padding-right: .5em; } }
    #cart_table .subtotal::before {
      content: '金額';
      position: absolute;
      left: 0; }
      @media (min-width: 1024px) {
        #cart_table .subtotal::before {
          content: ''; } }
  #cart_table .stock {
    position: relative;
    grid-row: 5;
    grid-column: 2 / span 2; }
    @media (min-width: 1024px) {
      #cart_table .stock {
        width: 5em; } }
    #cart_table .stock::before {
      content: '在庫状態';
      position: absolute;
      left: 0; }
      @media (min-width: 1024px) {
        #cart_table .stock::before {
          content: ''; } }

/* 各 `li` の `::before` に番号を付ける */
.cart_navi {
  font-size: 16px;
  margin-bottom: 4em; }
  @media (min-width: 1024px) {
    .cart_navi ul {
      width: 50%;
      margin: 0 auto; } }
  .cart_navi ul li {
    font-weight: normal;
    font-size: 10px;
    white-space: nowrap;
    line-height: 15px; }
    .cart_navi ul li:first-of-type {
      padding-left: 0; }
    @media (min-width: 1024px) {
      .cart_navi ul li {
        font-size: 15px; } }

.cart_navi ul {
  position: relative;
  counter-reset: cart-step;
  display: flex;
  justify-content: space-between;
  /* アイテムを横並びに */
  padding: 0;
  align-items: center; }
  .cart_navi ul li {
    list-style: none;
    text-align: center;
    /* 中央揃え */
    display: flex;
    flex-direction: column;
    /* 縦方向に並べる */
    align-items: center;
    background: transparent;
    position: relative;
    flex: 1;
    /* 均等配置 */ }
    .cart_navi ul li.current {
      background-color: inherit;
      color: black; }
      .cart_navi ul li.current::after {
        background-color: black; }
      .cart_navi ul li.current::before {
        background-color: #FBC122; }
    .cart_navi ul li::after {
      border-right: 0;
      content: "";
      display: inline-block;
      position: absolute;
      top: 20px;
      width: 100%;
      height: 1px;
      margin: 0;
      -webkit-transform: none;
      transform: none;
      border: none;
      background-color: black;
      left: 50%;
      z-index: 1; }
    .cart_navi ul li::before {
      counter-increment: cart-step;
      content: counter(cart-step);
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      color: black;
      /* 文字色 */
      border-radius: 50%;
      /* 丸くする */
      font-size: 16px;
      background-color: white;
      margin: 0 0 5px 0;
      border-right: 0;
      transform: inherit;
      z-index: 2; }
    .cart_navi ul li:first-child::after {
      left: 50%;
      width: 100%; }
    .cart_navi ul li:last-child::after {
      left: 0;
      width: 50%; }

.action {
  padding-top: 1em !important;
  padding-bottom: 2em !important; }
  @media (min-width: 1024px) {
    .action {
      padding-top: 0;
      padding-bottom: 0;
      width: 70px !important; } }

#cart .action input.delButton {
  display: block;
  padding: 0;
  background-color: transparent;
  border-bottom: 1px solid black;
  border-radius: 0;
  line-height: 1.3; }
  @media (min-width: 1024px) {
    #cart .action input.delButton {
      margin: 0 auto; } }

.send {
  display: flex;
  justify-content: space-between;
  width: 100%; }
  .send input {
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    font-size: 15px;
    padding: .3em .7em; }
    @media (min-width: 1024px) {
      .send input {
        padding: .714288em 1.42857em; } }
    .send input.to_customerinfo_button {
      background-color: black;
      font-weight: bold;
      font-size: 20px; }
      .send input.to_customerinfo_button:hover {
        background-color: black;
        opacity: .7; }
    @media (min-width: 1024px) {
      .send input {
        padding: .5em 2.142856em;
        border-radius: 0;
        font-size: 16px; } }

.continue_shopping_button, .back_cart_button, .back_to_customer_button, .back_to_delivery_button {
  background-color: white !important; }

#info-confirm .confiem_notice {
  text-align: center;
  margin-bottom: 3em; }
#info-confirm .action {
  display: none !important; }
#info-confirm tfoot {
  flex-direction: column;
  align-items: end; }
  #info-confirm tfoot tr:nth-of-type(1) .amount {
    font-weight: normal;
    font-size: 16px;
    padding-right: 0; }
    @media (min-width: 1024px) {
      #info-confirm tfoot tr:nth-of-type(1) .amount {
        padding-right: .5em; } }
  #info-confirm tfoot tr:nth-of-type(4) .amount {
    font-weight: bold;
    font-size: 25px;
    padding-right: 0; }
    @media (min-width: 1024px) {
      #info-confirm tfoot tr:nth-of-type(4) .amount {
        padding-right: .5em; } }
  @media (min-width: 1024px) {
    #info-confirm tfoot tr .aright {
      padding-right: .5em; } }
  @media (min-width: 1024px) {
    #info-confirm tfoot tr td, #info-confirm tfoot tr th {
      border: 0; } }

#point_table th, #point_table td {
  background-color: transparent; }
  #point_table th.c-point, #point_table th.u-point, #point_table td.c-point, #point_table td.u-point {
    background-color: transparent; }
  #point_table th input.use_point_button, #point_table td input.use_point_button {
    background-color: black;
    border: 0;
    color: white;
    border-radius: 0; }

#confirm_table .ttl td {
  background-color: black !important; }
  #confirm_table .ttl td h3 {
    color: white; }
#confirm_table td, #confirm_table th {
  background-color: white !important; }
#confirm_table th {
  width: 10em; }

#purchase_button {
  background-color: #FBC122 !important;
  color: black !important;
  padding: .3em .7em;
  font-size: 20px;
  font-weight: bold; }
  @media (min-width: 1024px) {
    #purchase_button {
      padding: 1em 4em; } }

#cart_completion h3 {
  font-size: 16px;
  font-weight: bold; }

#wc_ordercompletion .send a {
  background-color: white;
  display: block;
  margin: 0 auto 4em auto;
  border-radius: 0;
  color: black; }

textarea {
  background-color: white; }

.desc-wrap {
  height: 3.5em; }

#wc_delivery .customer_form dd {
  margin-left: 0; }
#wc_delivery .customer_form dt {
  padding-top: 0; }

dt.payment_1 {
  margin-top: 2em; }

#delivery_flag tr:nth-of-type(2) td {
  padding-top: 0.5em; }
#delivery_flag tr {
  margin-bottom: 0; }
  #delivery_flag tr:first-of-type {
    border-bottom: 0; }

@media (min-width: 1024px) {
  .ui-dialog {
    width: 600px !important; } }
.ui-dialog p, .ui-dialog span, .ui-dialog td, .ui-dialog th, .ui-dialog div {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif" !important;
  font-size: 16px; }

.customer_form th {
  font-size: 16px; }

#middle-category-list {
  margin-bottom: 7em; }
  @media (min-width: 1024px) {
    #middle-category-list {
      margin-bottom: 3em; } }
  #middle-category-list li {
    margin-bottom: 2em; }
    @media (min-width: 1024px) {
      #middle-category-list li {
        margin-bottom: 0; } }
