@charset "utf-8";

/* ============================================================
# Components
============================================================ */

/* ## Heading
======================================== */

.headingLg {
  background-color: var(--primary-lt);
  color: var(--body-color);
  font-weight: 500 !important;
  margin-bottom: 0.75rem;
  padding: 0.4em 1rem 0.4em 2.25rem;
  position: relative;
}
.headingLg::before {
  background-color: var(--primary);
  content: "";
  height: calc(100% - 0.8em);
  position: absolute;
  top: 0.4em;
  left: 0.875rem;
  width: 5px;
}

.headingMd {
  background-color: var(--gray-100);
  border-bottom: 2px solid var(--primary);
  color: var(--body-color);
  font-weight: 500 !important;
  margin-bottom: 0.75rem;
  padding: 0.4em 1rem 0.4em 2.5rem;
  position: relative;
}
.headingMd::before {
  background-color: var(--primary);
  border-radius: 50rem;
  content: "";
  position: absolute;
  top: 50%;
  left: 0.875rem;
  height: 1rem;
  width: 1rem;
  transform: translateY(-50%);
}

.headingSm {
  color: var(--body-color);
  font-weight: 700 !important;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
}
.headingSm::before {
  background-color: var(--primary);
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 0.4375rem;
  width: 0.4375rem;
  transform: translateY(-50%);
}


/* ### Heading divider
---------------------------------------- */

.headingDivider {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 2.5rem;
}
.headingDivider::before,
.headingDivider::after {
  background-color: #a1a1a1;
  content: "";
  height: 1px;
  flex-grow: 1;
  /* width: 3rem; */
}



/* ## Buttons
======================================== */

.btn {
  background-color: var(--btn-bg);
  border: 2px solid var(--btn-border);
  border-radius: 4px;
  color: var(--btn-color);
  cursor: pointer;
  display: inline-block;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  padding: 0.5em 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s, border 0.15s, color 0.15s, opacity 0.15s, filter 0.15s;
  user-select: none;
  vertical-align: middle;
}
/* @media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
} */

@media (hover: hover) {
  .btn:hover {
    background-color: var(--btn-hover-bg);
    border: 2px solid var(--btn-hover-border);
    color: var(--btn-hover-color);
    text-decoration: none;
  }
}
.btn:focus {
  background-color: var(--btn-hover-bg);
  border: 2px solid var(--btn-hover-border);
  color: var(--btn-hover-color);
}
.btn:active {
  background-color: var(--btn-active-bg);
  border-color: var(--btn-active-border-color);
  color: var(--btn-active-color);
}
.btn.disabled, .btn:disabled {
  pointer-events: none;
  opacity: 0.65;
}

.btn_endIcon {
  padding-right: 2em;
  padding-left: 2em;
}
.btn_endIcon::after {
  border-color: currentColor currentColor transparent transparent;
  border-width: 0.125em 0.125em 0 0;
  border-style: solid;
  color: inherit;
  content: "";
  height: 0.4em;
  width: 0.4em;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.btn_headerIcon {
  background-color: var(--primary-lt);
  border-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
}
@media (hover: hover) {
  .btn_headerIcon:hover {
    background-color: var(--primary-lt);
    border-color: transparent;
    filter: brightness(1.025);
  }
}
.btn_headerIcon:focus {
  background-color: var(--primary-lt);
  border-color: transparent;
  filter: brightness(1.025);
}

.btn_primary {
  background-color: var(--primary);
  border-color: transparent;
  color: var(--white);
}
@media (hover: hover) {
  .btn_primary:hover {
    background-color: var(--primary);
    border-color: transparent;
    color: var(--white);
    filter: brightness(1.1);
  }
}
.btn_primary:focus {
  background-color: var(--primary);
  border-color: transparent;
  color: var(--white);
  filter: brightness(1.1);
}

.btn_primaryBorder {
  background-color: var(--white);
  border-color: currentColor;
  color: var(--primary);
}
@media (hover: hover) {
  .btn_primaryBorder:hover {
    background-color: var(--primary-lt);
    border-color: currentColor;
    color: var(--primary);
  }
}
.btn_primaryBorder:focus {
  background-color: var(--primary-lt);
  border-color: currentColor;
  color: var(--primary);
}

.btn_block {
  display: block;
  width: 100%;
}



/* ## Badges
======================================== */

.badge {
  border-radius: 2px;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.3em 0.7em;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}


/* ## Arrow
======================================== */

.arrow {
  border-color: currentColor transparent transparent transparent;
  border-style: solid;
  border-width: 20px 40px 0 40px;
  color: var(--gray-500);
  content: "";
  display: inline-block;
  height: 0;
  width: 0;
}



/* ## List
======================================== */

.listIcon_Dot,
.listIcon_Asterisk {
  padding-left: 0;
  list-style: none;
}
.listIcon_Dot li,
.listIcon_Asterisk li {
  padding-left: 1.125em;
  text-indent: -1.125em;
}
.listIcon_Dot li::before,
.listIcon_Asterisk li::before {
  margin-right: 0.125em;
}
.listIcon_Asterisk li::before {
  content: "※";
}
.listIcon_Dot li::before {
  content: "・";
}



/* ## Tables
======================================== */

/* ### Responsive tables
---------------------------------------- */

.tableResponsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ### Responsive tables 2col（2列テーブルのレスポンシブ）
---------------------------------------- */

@media not all and (min-width: 576px) {
  .tableResponsive2col-sm th,
  .tableResponsive2col-sm td {
    border: none;
    display: block;
    width: 100% !important;
  }
}
@media not all and (min-width: 768px) {
  .tableResponsive2col-md th,
  .tableResponsive2col-md td {
    border: none;
    display: block;
    width: 100% !important;
  }
}



/* ============================================================
  # WelCart
============================================================ */

em.tax {
  color: var(--red);
  font-weight: 700;
}
.cart-page em.tax {
  color: #999;
}
#itempage em.tax {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
}


/* ### 商品ページ
---------------------------------------- */

.itemimg img,
.itemMainImg img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  height: auto;
}
/* #itempage .itemSubImg {} */
#itempage .itemSubImg a {
  display: inline-block;
  text-align: center;
}
#itempage .itemSubImg img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: auto;
  vertical-align: middle;
}


/* #itempage .itemsubimg {
	margin: 3% -3% 0 0;
	overflow: hidden;
}
#itempage .itemsubimg a {
	display: inline-block;
	width: 22%;
	margin: 0 3% 3% 0;
	float: left;
	text-align: center;
}
#itempage .itemsubimg img {
	width: 100%;
	height: auto;
	vertical-align: middle;
} */

.table_itemSpec th,
.table_itemSpec td {
  padding: 0.5em !important;
  vertical-align: top;
}
.table_itemSpec th {
  /* width: max-content; */
  /* white-space: nowrap; */
  width: 8em;
}
@media not all and (min-width: 576px) {
  .table_itemSpec th,
  .table_itemSpec td {
    border: none;
    display: block;
    width: 100% !important;
  }
}


/* ### カート
---------------------------------------- */

.cart_navi ul {
  padding-left: 0;
  margin-bottom: 0;
}


/* ### サイドバー
---------------------------------------- */

/* サイドバー用見出し */
.widget_title {
  font-size: clamp(1rem, 0.975rem + 0.2vw, 1.125rem);
  color: var(--primary);
  border-bottom: 2px solid;
}
/* アイコン無しに */
/* .widget_title img {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
} */

/* --- カテゴリー --- */
/*---- widget_welcart_category ----*/
.widget_welcart_category ul {
  /* padding: 0 .714286em; */
  margin: 0;
  padding: 0;
  width: 100%;
}
.widget_welcart_category li {
  font-size: clamp(0.813rem, 0.8rem + 0.1vw, 0.875rem);
  /* padding-bottom: .714286em; */
  padding: 0;
  /* line-height: 200%; */
  line-height: 1.5;
}
.widget_welcart_category li + li {
  border-top: 1px solid var(--border-color);
}
.widget_welcart_category li a {
  display: block;
  padding: 0.5em;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}
@media (hover: hover) {
  .widget_welcart_category li a:hover {
    background-color: var(--white);
    color: inherit;
    text-decoration: underline;
  }
}
.widget_welcart_category li a::before {
  content: url("./img/common/widget_nav_icon.svg");
  display: inline-block;
  padding-right: 0.5em;
  vertical-align: middle;
}

/* .widget_welcart_category li:last-child {
  padding-bottom: 0;
}
.widget_welcart_category li ul {
  margin-left: 1.07143em;
  padding: 0;
}
.widget_welcart_category li li {
  padding: 0;
}
.widget_welcart_category li li a {
  display: block;
  padding: 0;
}
.widget_welcart_category li li a::before {
  display: none;
}
.widget_welcart_category ul ul ul {
  display: block !important;
} */



/* --- 営業日カレンダー --- */
/*---- widget_welcart_calendar ----*/
ul.ucart_calendar_body {
  padding-left: 0;
  margin-bottom: 0;
}
/* ul.ucart_calendar_body li {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 992px) {
  ul.ucart_calendar_body li {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
} */
.widget_welcart_calendar table {
  width: 100%;
  margin: 0;
  float: none;
  border: 1px solid var(--border-color);
}
.widget_welcart_calendar th {
  background-color: var(--gray-600);
  border: 1px solid var(--border-color);
  color: #fff;
  text-align: center;
}
.widget_welcart_calendar td {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  text-align: center;
}
.widget_welcart_calendar .businessday {
  background-color: var(--pink);
  color: currentcolor;
}
/* @media (min-width: 992px) {
  .widget_welcart_calendar table {
    width: 100%;
    margin: 0 0 .714286em;
    float: none;
  }
} */




/* ============================================================
  # FE Advanced Search
============================================================ */

.headingFeas {
  color: var(--body-color);
  font-weight: 400 !important;
  margin-bottom: 0.25rem;
  padding-left: 1rem;
  position: relative;
}
.headingFeas::before {
  background-color: var(--primary);
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 10px;
  width: 10px;
  transform: translateY(-50%);
}

.feas_term_dropdown {
  display: block;
  width: 100%;
  padding: 0.375em 2.25em 0.375em 0.75em;
  -moz-padding-start: calc(0.75em - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75em center;
  /* background-size: 16px 12px; */
  background-size: 16px 14px;
  border: 1px solid hsl(32 15% 80%);
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.feas_term_dropdown:focus {
  border-color: hsl(32 70% 70%);
  outline: 0;
  box-shadow: 0 0 0 0.2rem hsl(32 100% 50% / 0.25);
}
.feas_term_dropdown[multiple],
.feas_term_dropdown[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.feas_term_dropdown {
  cursor: pointer;
}

#feas-submit-button-0 {
  background-color: var(--primary);
  background-image: url("./img/common/search_icon.svg");
  background-position: 12px center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  border: none;
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  margin-top: clamp(0.75rem, 0.75rem + 0.333vw, 1rem);
  padding: 0.5em 16px 0.5em 32px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s, border 0.15s, color 0.15s, opacity 0.15s, filter 0.15s;
  user-select: none;
  vertical-align: middle;
  width: 100%;
}
@media (hover: hover) {
  #feas-submit-button-0:hover {
    background-color: var(--primary);
    border: none;
    color: var(--white);
    filter: brightness(1.1);
    text-decoration: none;
  }
}
#feas-submit-button-0:focus {
  background-color: var(--primary);
  border: none;
  color: var(--white);
  filter: brightness(1.1);
}


/* ============================================================
  # WordPress
============================================================ */

/* ## Components
======================================== */

/* ### Posts
使うときは投稿タイプごとに作成した方がいいか？
---------------------------------------- */


/* ### Image Alignments
---------------------------------------- */

.type-news::after {
  clear: both;
  content: "";
  display: block;
}
.type-news img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
.type-news .alignnone,
.type-news img.alignnone {
  display: inline;
}
.type-news .aligncenter,
.type-news img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.type-news .alignright,
.type-news img.alignright,
.type-news .alignleft,
.type-news img.alignleft {
  display: block;
}
@media (min-width: 768px) {
  .type-news .alignright,
  .type-news img.alignright {
    display: inline;
    float: right;
    margin-left: 24px;
    margin-bottom: 16px;
  }
  .type-news .alignleft,
  .type-news img.alignleft {
    display: inline;
    float: left;
    margin-right: 24px;
    margin-bottom: 16px;
  }
}

.type-news h1 {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  font-weight: 700 !important;
  margin-bottom: 1rem;
  padding: 0.5em 1rem 0.5em 1.5rem;
  position: relative;
}
.type-news h1::before {
  background-color: var(--primary);
  content: "";
  height: calc(100% - 1em);
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 5px;
}

.type-news .newsSingleTitle {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  padding: 1em 0;
}
@media (min-width: 768px) {
  .type-news .newsSingleTitle {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.type-news .newsSingleTitle h1 {
  border: none;
  border-left: 5px solid var(--primary);
  padding: 0 1rem;
  margin-bottom: 0;
}
.type-news .newsSingleTitle h1::before {
  display: none;
}

/* .type-news h1 {
  font-weight: 700 !important;
} */
.type-news h2 {
  background-color: var(--primary-lt);
  border-left: 5px solid var(--primary);
  font-size: clamp(1.3125rem, 1.275rem + 0.3vw, 1.5rem);
  font-weight: 700 !important;
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  padding: 0.25em 1rem;
}
.type-news h3 {
  background-color: var(--gray-100);
  color: var(--primary);
  font-size: clamp(1.125rem, 1.1rem + 0.25vw, 1.3125rem);
  font-weight: 700 !important;
  margin-top: 3rem;
  padding: 0.25em 0.75em;
}
.type-news h4 {
  color: var(--body-color);
  font-size: clamp(1rem, 0.975rem + 0.2vw, 1.125rem);
  font-weight: 700 !important;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.type-news h4::before {
  content: "◆";
  color: var(--primary);
  display: inline-block;
  margin-right: 0.25em;
}

/* ### Captions
---------------------------------------- */

/* Twenty Nineteen（改） */
.wp-caption.alignnone .wp-caption-text {
  text-align: left;
}
.wp-caption-text {
  color: #666;
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  padding: 0.5em;
  text-align: center;
}


/* ### Pagination(the_posts_pagination)
---------------------------------------- */

/* .navigation {} */
/* .pagination {} */
.pagination .nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pagination .page-numbers {
  background-color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--body-color);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.5em 0.875em;
  text-decoration: none;
  transition: background-color 0.15s, border 0.15s, color 0.15s;
}
.pagination .page-numbers.current {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
}
@media (hover: hover) {
  .pagination .page-numbers:hover {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
  }
}
.pagination .page-numbers:focus {
  background-color: var(--primary);
  color: var(--white);
}


/* ### Pager(the_post_navigation)
---------------------------------------- */

.navigation {
  margin-top: 3rem;
}
/* .post-navigation {} */
.post-navigation .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem 1rem;
}
.post-navigation .nav-next,
.post-navigation .nav-previous {
  background-color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--btn-color);
  cursor: pointer;
  display: inline-block;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  padding: 0.5em 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s, border 0.15s, color 0.15s, opacity 0.15s, filter 0.15s;
  user-select: none;
  vertical-align: middle;
}
.post-navigation .nav-next a,
.post-navigation .nav-previous a {
  color: var(--btn-color);
  text-decoration: none;
}
@media (hover: hover) {
  .post-navigation .nav-next:hover,
  .post-navigation .nav-previous:hover {
    background-color: var(--primary-lt);
    border: 1px solid var(--primary);
    color: var(--btn-hover-color);
    text-decoration: none;
  }
}
.post-navigation .nav-next:focus,
.post-navigation .nav-previous:focus {
  background-color: var(--primary-lt);
  border: 1px solid var(--primary);
  color: var(--btn-hover-color);
}



/* ## plugins
======================================== */



/* ## Utilities
======================================== */

/* ### Screen Reader Text
---------------------------------------- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgb(0 0 0 / 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
