@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700|Roboto:400,700&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", "Roboto", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  color: #333333;
  line-height: 1.5;
}

/* clearfix */
section::after, .clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 1280px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 960px) {
  body {
    font-size: 1.2rem;
  }
}
/* フッターを固定
------------------------------------------------ */
body, .login_wrap, .allwrap {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh);
}

.login_wrap {
  background: #f9f9f9;
}

footer {
  margin-top: auto;
}

/* レイアウト
------------------------------------------------ */
main {
  width: 1280px;
  margin: 0 auto;
}
main article {
  padding-bottom: 3rem;
}
main article.column2 {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
}

article {
  padding-bottom: 3rem;
}

section {
  margin: 3rem 0;
}

/* グローバルナビゲーション */
.g-nav {
  flex-basis: 260px;
}
.g-nav #nav-drawer input, .g-nav #nav-drawer label {
  display: none;
}
.g-nav p {
  padding: 1rem;
  font-size: 2rem;
  background: #477416;
  color: #ffffff;
}
.g-nav p span::before {
  padding: 0 0.6rem;
  content: "\f152";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.g-nav nav {
  margin: 1rem auto 10rem;
  background: #effae4;
}
.g-nav nav ul li a {
  color: #477416;
  display: block;
  padding: 2rem 1rem;
  border-bottom: 2px dotted #ffffff;
}
.g-nav nav ul li a::before {
  padding: 0 0.6rem;
  content: "\f152";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.g-nav nav ul li a:hover {
  background: #ffffff;
  color: #5679c0;
  text-decoration: none;
}
.g-nav nav ul li ul li a {
  padding-left: 3rem;
}
.g-nav nav ul li ul li a::before {
  padding: 0 0.6rem;
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* コンテンツエリア */
.contents {
  flex-basis: calc(100% - (260px + 40px));
  min-width: 1em;
}

@media screen and (max-width: 1280px) {
  main, .inner {
    max-width: 96%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 960px) {
  main article.column2 {
    display: inherit;
  }
  main .g-nav {
    flex-basis: auto;
  }
  main .g-nav nav {
    padding-bottom: 10rem;
  }
  main .g-nav #nav-drawer {
    padding: 1em 0;
    position: relative;
  }
  main .g-nav #nav-drawer input, main .g-nav #nav-drawer label {
    display: inherit;
  }
  main .g-nav #nav-drawer .nav-unshown {
    display: none;
  }
  main .g-nav #nav-drawer #nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
  }
  main .g-nav #nav-drawer #nav-open span,
  main .g-nav #nav-drawer #nav-open span::before,
  main .g-nav #nav-drawer #nav-open span::after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
  }
  main .g-nav #nav-drawer #nav-open span::before {
    bottom: -8px;
  }
  main .g-nav #nav-drawer #nav-open span::after {
    bottom: -16px;
  }
  main .g-nav #nav-drawer #nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
  }
  main .g-nav #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 90%;
    /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px;
    /*最大幅（調整してください）*/
    height: 100%;
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    /*左に隠しておく*/
  }
  main .g-nav #nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: .5;
  }
  main .g-nav #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex .col_2 {
  flex-basis: 48%;
  margin: 0 1% 20px;
}
.flex .col_4 {
  flex-basis: 23%;
  margin: 0 1% 36px;
}
.flex .col_5 {
  flex-basis: 18%;
  margin: 0 1% 36px;
}

.flex_sb {
  justify-content: space-between;
}

.flex_rr {
  flex-direction: row-reverse;
}

@media screen and (max-width: 960px) {
  .flex .col_4, .flex .col_5 {
    flex-basis: 48%;
    margin: 0 1% 20px;
  }
}
p {
  margin-bottom: 1rem;
}
p.return {
  margin-top: 3rem;
  text-align: center;
}
p.p_title {
  padding: .6rem .8rem;
  background: #f7f7f7;
}

a {
  text-decoration: none;
  transform: all 0.3s;
  -webkit-transition: all 0.3s;
  color: #004090;
}
a:hover {
  color: #5679c0;
}
a.under {
  color: #333333;
  text-decoration: underline;
}
a.under:hover {
  text-decoration: none;
}
a span.link_external::after {
  padding: 0 0.6rem;
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.2rem;
}

strong, em {
  margin: 0 0.4rem;
}

em {
  font-style: normal;
  font-weight: 600;
}

span.caution {
  display: block;
  margin: 0.6rem 0;
  font-size: 1.4rem;
  color: #a20404;
}

h2, h3, h4, h5 {
  margin-bottom: 1rem;
}

h2, h3, h4, h5 {
  padding: 0 1rem;
}

h1 {
  font-size: 2.8rem;
  line-height: 1.8;
  text-align: center;
}

h2 {
  font-size: 2.6rem;
  border-bottom: 2px solid #84ba48;
}

h3 {
  font-size: 2.2rem;
  border-left: 4px solid #84ba48;
}

h4 {
  font-size: 1.8rem;
  border-bottom: 1px dotted #ccc;
}

@media screen and (max-width: 960px) {
  h2, h3, h4, h5 {
    padding: 0;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  h4 {
    margin-left: 0;
  }
}
/* パンくず */
.breadcrumb {
  background: #fdfdfd;
  line-height: 1.8em;
}
.breadcrumb ul {
  list-style-type: none;
  margin: 0 auto;
  overflow: hidden;
  font-size: 0;
}
.breadcrumb li {
  display: inline;
  font-size: 1.4rem;
}
.breadcrumb li::after {
  padding: 0 0.6rem;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.breadcrumb li:last-child::after {
  display: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

table {
  margin-bottom: 2rem;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-collapse: collapse;
}
table th, table td {
  padding: 0.8rem 2rem 0.9rem;
  vertical-align: top;
  word-break: break-all;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
table th {
  background: #effae4;
}
table td {
  background: #ffffff;
}
table td a {
  text-decoration: underline;
}
table.table01 th {
  text-align: left;
  vertical-align: middle;
}

.required {
  display: inline-block;
  box-sizing: border-box;
  margin-left: 1rem;
  padding: 3px 10px;
  border-radius: 10px;
  background: #cd491c;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  font-weight: 600;
  font-size: 1.4rem;
}

@media screen and (max-width: 960px) {
  table {
    width: 100%;
  }
  table.table01 th, table.table01 td {
    display: block;
    width: 100%;
    padding: 0.8rem 0 0.9rem 1rem;
  }
  table.table02 {
    width: 100%;
  }
}
.hit_number {
  margin-bottom: 1rem;
  text-align: center;
}
.hit_number em {
  font-size: 2rem;
  font-weight: 400;
}

.pager {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.pager a, .pager span {
  display: inline-block;
  margin: 0 0.6rem;
  padding: 1rem 1.6rem;
}
.pager a {
  background: #c9c9c9;
  border: 1px solid #ffffff;
  color: #ffffff;
}
.pager a:hover {
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #c9c9c9;
  color: #333333;
}

@media screen and (max-width: 960px) {
  .pager {
    justify-content: space-between;
  }
  .pager a, .pager span {
    display: none;
  }
  .pager a:first-child, .pager a:last-child, .pager span:first-child, .pager span:last-child {
    display: inline-block;
    width: 48%;
    text-align: center;
  }
}
.alert_box {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  line-height: 1.8;
}
.alert_box span {
  display: block;
}

.alert {
  background: #ffffff;
  border: 1px solid #477416;
  color: #477416;
}
.alert span::before {
  padding: 0 0.6rem;
  content: "\f071";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.error {
  background: #ffe1e1;
  padding: 4px 8px;
  border: 1px solid #a20404;
  color: #a20404;
}
.error span::before {
  padding: 0 0.6rem;
  content: "\f06a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.complete_box {
  position: absolute;
  width: 100%;
  top: 30%;
  margin: auto;
  padding: 10rem 0;
  background-color: rgba(51, 51, 51, 0.1);
  text-align: center;
  z-index: 1000;
}
.complete_box span {
  display: block;
  width: 400px;
  margin: 0 auto;
  background: #ffffff;
  color: #333333;
  border: 1px solid #effae4;
  border-radius: 0.6rem;
  box-shadow: 0 0 3px #333333;
  line-height: 4;
  font-size: 2rem;
}

.complete {
  color: #333333;
  font-weight: 600;
  line-height: 3.6;
}

@media screen and (max-width: 960px) {
  .complete_box span {
    width: 96%;
    font-size: 1.6rem;
  }
}
button, select, input, textarea {
  font-family: "Noto Sans JP", "Roboto", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
}

input[type="text"], input[type="tel"], input[type="email"], input[type="time"], input[type="password"], input[type="date"], textarea, select {
  padding: 1rem 2rem;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1.6rem;
}

label input[type="text"], label input[type="tel"], label input[type="email"] {
  margin-left: 0.6rem;
}

label input[type="radio"], label input[type="checkbox"] {
  margin: 0 0.6rem;
}

input[type="button"], input[type="submit"], input[type="reset"] {
  margin: 0 0.6rem;
  padding: 0.6rem 1.2rem;
  font-size: 1.6rem;
}

label, button, input[type='checkbox'], input[type='button'] {
  cursor: pointer;
}

.form01 {
  width: 90%;
  margin: 0 5% 20px;
}
.form01 dl {
  margin-bottom: 3rem;
}
.form01 dt {
  padding: 0.6rem 0.4rem;
  border-bottom: 1px solid #477416;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.form01 dd {
  padding: 0.6rem 0.4rem 1.4rem;
}
.form01 .checkbox_set li {
  margin: 1rem 0;
}
.form01 .checkbox_set li label {
  display: block;
}
.form01 textarea {
  height: 20rem;
}
.form01 .wd25 {
  width: 25%;
}
.form01 .wd50 {
  width: 50%;
}
.form01 .wd75 {
  width: 75%;
}
.form01 .wd100 {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .alert_box {
    margin-bottom: 10px;
    line-height: 1.6;
    padding: 2%;
    font-size: 1.4rem;
    text-align: left;
  }

  .form01 {
    width: 90%;
    margin: 0 5% 20px;
  }
  .form01 dt {
    font-size: 100%;
  }
  .form01 .wd25, .form01 .wd50, .form01 .wd75, .form01 .wd100 {
    width: 100%;
  }

  input[type="text"], input[type="tel"], input[type="email"], input[type="time"], input[type="password"], input[type="date"], textarea, select {
    width: 96%;
  }
}
/* ボタン系 */
.btn_set, .dl_set {
  display: flex;
  margin-bottom: 20px;
}

.set_C {
  justify-content: center;
}

.set_R {
  justify-content: right;
}

.set_E {
  justify-content: flex-end;
}

.va_M {
  vertical-align: middle;
}

/* 汎用 */
.txtC {
  text-align: center;
}

.txtR {
  text-align: right;
}

.wd50 {
  width: 50%;
}

.wd100 {
  width: 100%;
}

.mb20 {
  margin-bottom: 20px;
}

/* ページインデックス HTMLレビュー用
------------------------------------------------ */
.page_index li {
  width: 100%;
}
.page_index li a {
  display: block;
  padding: 0.8rem;
  border-bottom: 1px solid #ddd;
}
.page_index li a:hover {
  background: #f9f9f9;
}

/* webマニュアル */
.web_manual {
  margin: 2rem 0;
}

/* ログイン
------------------------------------------------ */
.login_box {
  width: 700px;
  margin: 0 auto;
  padding: 4% 0 0;
}
.login_box .login_box_inner {
  max-width: 700px;
}
.login_box .login_box_inner figure {
  margin-bottom: 36px;
  text-align: center;
}
.login_box .login_box_inner img {
  width: 360px;
}
.login_box .login_box_inner table {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .login_box {
    padding: 3rem 0;
    width: 100%;
  }

  .login_box_inner {
    margin: 0 2%;
    width: 96%;
    max-width: 96%;
    height: auto;
  }
}
/* ヘッダー フッター
------------------------------------------------ */
header {
  padding: 20px 1%;
  background: #ffffff;
  border-bottom: 10px solid #477416;
}
header .logo img {
  width: 320px;
}
header .header_nav ul li {
  position: relative;
  width: 120px;
  text-align: center;
}
header .header_nav ul li a {
  color: #999;
}
header .header_nav ul li a i {
  display: block;
  font-size: 3.6rem;
}
header .header_nav ul li a :hover {
  opacity: 0.7;
}
header .header_nav ul li .cart_count {
  position: absolute;
  top: -1rem;
  left: 6rem;
  padding: 0.4rem 0.6rem;
  background: #a20404;
  border-radius: 0.6rem;
  font-size: 1.2rem;
  color: #ffffff;
  z-index: 1000;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, header .logo img {
    height: 60px;
  }
}
footer {
  padding: 1rem 0;
  border-top: 1px solid #477416;
  background: #477416;
}
footer ul li a {
  color: #ffffff;
}
footer p.copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
  line-height: 1.8;
}

@media screen and (max-width: 960px) {
  header {
    padding: 10px 0;
  }
  header > .flex {
    display: inherit;
  }
  header .logo {
    margin-bottom: 10px;
  }
  header .user_name {
    margin-bottom: 2rem;
  }
  header .header_nav ul li {
    width: 33%;
  }
  header .header_nav ul li a i {
    font-size: 1.6rem;
  }
  header .header_nav ul li .cart_count {
    left: 56%;
  }
  header .user_name {
    order: 3;
    width: 100%;
    text-align: center;
    background: #EFEFEF;
    border-radius: 3px;
    padding: 0.2em 0.5em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  footer p.copy {
    font-size: 0.8em;
  }
}
/* 共通
------------------------------------------------ */
/* 検索ボックス */
.search_box {
  margin: 1rem auto;
}
.search_box .inner {
  display: flex;
}
.search_box .search_keywords {
  width: 50%;
}
.search_box .search_keywords input {
  width: 100%;
}
.search_box .search_button {
  position: relative;
}
.search_box .search_button button {
  position: absolute;
  top: -1px;
  width: 72px;
  height: 48px;
}
.search_box .search_button button i {
  font-size: 2.2rem;
  color: #6f6f6f;
}

@media screen and (max-width: 960px) {
  .search_box .search_keywords {
    width: 70%;
  }
}
/* 金額 */
.item_price {
  margin-bottom: 1rem;
  text-align: right;
}
.item_price strong {
  color: #a20404;
  padding: 0 0.2rem 0 0.6rem;
  font-size: 2.4rem;
}

/* 買い物かごに入れるボタン */
.btn_cart {
  text-align: right;
}
.btn_cart button {
  background: #ffffff;
  border-style: none;
}
.btn_cart button em {
  display: block;
  width: 240px;
  padding: 1.6rem 0.8rem;
  border: 2px solid #ed9e06;
  border-radius: 0.8rem;
  font-size: 2rem;
  font-weight: 900;
}
.btn_cart button em::before {
  padding: 0 0.6rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.btn_cart button em:hover {
  opacity: 0.7;
  transform: all 0.3s;
  -webkit-transition: all 0.3s;
  cursor: pointer;
}
.btn_cart button .cart_add {
  background: #ed9e06;
  color: #ffffff;
}
.btn_cart button .cart_add::before {
  content: "\f218";
}
.btn_cart button .cart_notadd {
  background: #cccccc;
  border: 2px solid #cccccc;
}
.btn_cart button .cart_remove {
  background: #ffffff;
  color: #ed9e06;
}
.btn_cart button .cart_remove::before {
  content: "\f2ed";
}

.btn_cart_all {
  padding: 0.1rem 0 3.4rem;
  background: #effae4;
}
.btn_cart_all p {
  margin-bottom: 0;
}
.btn_cart_all button {
  width: 100%;
  background: #effae4;
}
.btn_cart_all button em {
  width: 80%;
  margin: 0 auto;
}

/* ページトップへ戻るボタン */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10%;
  bottom: 10%;
  background: #477416;
}
#page_top:hover {
  background: #84ba48;
  transform: all 0.3s;
  -webkit-transition: all 0.3s;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f062';
  font-size: 2rem;
  color: #ffffff;
  position: absolute;
  width: 2rem;
  height: 2.4rem;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* トップページ
------------------------------------------------ */
.list_banner {
  padding-top: 20px;
  background: #eaf0e6;
}
.list_banner a:hover {
  opacity: 0.7;
}

.list_info h2 {
  text-align: center;
}
.list_info ul {
  margin-bottom: 2rem;
}
.list_info ul li {
  position: relative;
  border-bottom: 1px solid #c9c9c9;
}
.list_info ul li a, .list_info ul li p {
  display: block;
  margin-bottom: 0;
  padding: 2rem 3rem 2rem 1rem;
  color: #333333;
}
.list_info ul li a span, .list_info ul li p span {
  display: table-cell;
  padding: 0 1rem;
  font-size: 1.4rem;
  vertical-align: middle;
}
.list_info ul li a span:first-child, .list_info ul li p span:first-child {
  width: 190px;
}
.list_info ul li a span:nth-child(2), .list_info ul li p span:nth-child(2) {
  width: 160px;
  text-align: center;
}
.list_info ul li a span:nth-child(2) em, .list_info ul li p span:nth-child(2) em {
  padding: 0.4rem 0.8rem;
  border: 1px solid;
  border-radius: 1.4rem;
  font-weight: normal;
}
.list_info ul li a span:nth-child(2) em.icon01, .list_info ul li p span:nth-child(2) em.icon01 {
  color: #477416;
}
.list_info ul li a span:nth-child(2) em.icon02, .list_info ul li p span:nth-child(2) em.icon02 {
  color: #518de0;
}
.list_info ul li a span:nth-child(2) em.icon03, .list_info ul li p span:nth-child(2) em.icon03 {
  color: #f07690;
}
.list_info ul li a span:nth-child(2) em.icon04, .list_info ul li p span:nth-child(2) em.icon04 {
  color: #cd491c;
}
.list_info ul li a span time, .list_info ul li p span time {
  margin: 0 1rem;
}
.list_info ul li a::after, .list_info ul li p::after {
  position: absolute;
  margin-top: -12px;
  padding: 0 0.6rem;
  content: "\f105";
  top: 50%;
  right: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.list_info ul li a.external-link::after, .list_info ul li p.external-link::after {
  content: "\f35d";
  color: #004090;
}
.list_info ul li a.pdf-link::after, .list_info ul li p.pdf-link::after {
  content: "\f1c1";
  color: #a20404;
}
.list_info ul li a:hover {
  opacity: 0.7;
  color: #5679c0;
}
.list_info ul li p::after {
  content: none;
}
.list_info .btn_set a {
  display: block;
  width: 220px;
  padding: 2rem 3rem 2rem 4rem;
  background: #477416;
  color: #ffffff;
  text-align: center;
}
.list_info .btn_set a:hover {
  opacity: 0.7;
}

.list_orders h2 {
  text-align: center;
}
.list_orders .box_orders {
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 2rem;
  border-bottom: 1px solid #ececec;
}
.list_orders .box_orders strong {
  display: block;
  margin: 0;
  font-size: 2.4rem;
}
.list_orders .box_orders ul li {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
.list_orders .box_orders span {
  color: #cccccc;
}

@media screen and (max-width: 960px) {
  .list_info ul li a, .list_info ul li p {
    color: #014b80;
  }
  .list_info ul li a span, .list_info ul li p span {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  .list_info ul li a span:first-child, .list_info ul li p span:first-child {
    width: 100%;
  }
  .list_info ul li a span:nth-child(2), .list_info ul li p span:nth-child(2) {
    width: 100%;
    height: 28px;
    text-align: left;
  }
  .list_info ul li a span:nth-child(2) em, .list_info ul li p span:nth-child(2) em {
    display: inline-block;
  }
}
/* 商品一覧・買い物かご
------------------------------------------------ */
.display {
  display: flex;
  justify-content: space-between;
}
.display .switch {
  margin-right: 2rem;
}
.display .switch span {
  display: inline-block;
  margin: 0 1rem;
  vertical-align: middle;
}
.display .switch span:nth-child(2), .display .switch span:nth-child(3) {
  font-size: 2.4rem;
}

.list_block h2 {
  text-align: center;
}
.list_block ul {
  margin: 0 auto 2rem;
}
.list_block ul li a {
  display: block;
  color: #333333;
}
.list_block ul li a:hover {
  opacity: 0.7;
  color: #5679c0;
}
.list_block ul li a figure {
  overflow: hidden;
}
.list_block ul li .title {
  margin-bottom: 1rem;
}
.list_block span {
  color: #cccccc;
}
.list_block span .item_price strong {
  color: #cccccc;
}
.list_block .btn_cart button {
  width: 100%;
  padding: 0;
}
.list_block .btn_cart button em {
  width: 100%;
  margin: 0;
  padding: 1rem 0.6rem;
  font-size: 1.2rem;
}

.item_list h2 a, .cart .list h2 a {
  color: #333333;
}
.item_list a:hover, .cart .list a:hover {
  opacity: 0.7;
}
.item_list .image, .cart .list .image {
  flex-basis: 240px;
  height: auto;
}
.item_list .data, .cart .list .data {
  flex: 1;
  padding: 0 1.6rem 1rem;
}
.item_list .data p span, .cart .list .data p span {
  display: inline-block;
  color: #999999;
  font-size: 1.4rem;
}
.item_list .data p span::after, .cart .list .data p span::after {
  content: "／";
  padding: 0 0.6rem;
}
.item_list .data p span:last-child::after, .cart .list .data p span:last-child::after {
  content: none;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .image img {
    max-width: 240px;
  }
}
@media screen and (max-width: 960px) {
  .item_list ul li, .cart .list ul li {
    margin-bottom: 2rem;
  }
  .item_list ul li div.flex, .cart .list ul li div.flex {
    display: inherit;
  }
  .item_list ul li .image, .cart .list ul li .image {
    margin-bottom: 1rem;
    padding: 0;
  }
  .item_list ul li .data, .cart .list ul li .data {
    padding: 0 0 1rem;
  }
}
/* 商品詳細
------------------------------------------------ */
.item_detail .image {
  flex-basis: 240px;
}
.item_detail .data {
  flex-basis: calc(100% - (240px + 20px));
  min-width: 1em;
}
.item_detail .data table {
  height: 320px;
}
.item_detail .data table th {
  width: 220px;
}

.item_tag {
  margin-bottom: 10px;
}
.item_tag span {
  display: inline-block;
  margin: 0 0.6rem;
}
.item_tag span a {
  display: inline-block;
  padding: 0 1.6rem;
  line-height: 1.8;
  border: 1px solid #66a7d7;
  border-radius: 0.8rem;
  color: #66a7d7;
  text-decoration: none;
}
.item_tag span a:hover {
  opacity: 0.7;
  background: #66a7d7;
  color: #ffffff;
}

.item_recommend {
  font-size: 1.4rem;
}
.item_recommend a {
  color: #333333;
}
.item_recommend a:hover {
  opacity: 0.7;
  color: #5679c0;
}
.item_recommend .item_price strong {
  font-size: 1.8rem;
}

@media screen and (max-width: 960px) {
  .item_detail .image {
    flex-basis: 160px;
  }
  .item_detail .data {
    flex-basis: calc(100% - (160px + 10px));
    min-width: 1em;
  }
  .item_detail .data table {
    height: auto;
  }
  .item_detail .data table th {
    width: auto;
  }
}
/* 買い物かご
------------------------------------------------ */
.cart .left_col {
  flex-basis: calc(100% - (260px + 20px));
  min-width: 1em;
}
.cart .flow li {
  position: relative;
  flex-basis: 23%;
  text-align: center;
}
.cart .flow li b, .cart .flow li span {
  display: block;
  padding: 1.4rem 0;
  border-radius: .4rem;
}
.cart .flow li b {
  background: #a20404;
  color: #ffffff;
  font-weight: normal;
}
.cart .flow li span {
  background: #e9e9e9;
}
.cart .flow li::after {
  position: absolute;
  content: "\f0da";
  right: -8%;
  top: .4rem;
  color: #a20404;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3.2rem;
}
.cart .flow li:last-child::after {
  content: none;
}
.cart h1 {
  margin-bottom: 1rem;
}
.cart .right_col {
  flex-basis: 260px;
  margin: 2rem 0;
}
.cart .right_col .total_fee {
  text-align: right;
  margin-right: 1.2rem;
}
.cart .right_col .total_fee strong {
  color: #a20404;
  padding: 0 0.2rem 0 0.6rem;
  font-size: 2.4rem;
}
.cart .right_col .btn {
  text-align: right;
  margin-bottom: 1.4rem;
}
.cart .right_col .btn button {
  background: #ffffff;
  border-style: none;
}
.cart .right_col .btn button em {
  display: block;
  background: #a20404;
  width: 240px;
  padding: 1.6rem 0.8rem;
  border-radius: 0.8rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
}
.cart .right_col .btn button em::before {
  padding: 0 0.6rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.cart .right_col .btn_address button em::before {
  content: "\f0d1";
}
.cart .right_col .btn_confirm button em::before {
  content: "\f14a";
}
.cart .right_col .btn_back {
  margin-right: 0.8rem;
}
.cart .list .no_item {
  margin: 1rem 0;
}
.cart .list .no_item strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #a20404;
}
.cart .list .units_all {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #effae4;
  text-align: center;
}
.cart .list .image {
  max-width: 140px;
}
.cart .list .units {
  text-align: right;
}
.cart .list .units input {
  margin-left: 1rem;
}
.cart .list input.delete {
  border: none;
  background: #ffffff;
  font-size: 1.4rem;
  text-decoration: underline;
}
.cart .list input.delete:hover {
  text-decoration: none;
}
.cart .list input.delete:active {
  padding-right: 1.1rem;
}
.cart .confirm ul li {
  margin-bottom: 1rem;
  border-bottom: 1px solid #dddddd;
}
.cart .confirm .image {
  flex-basis: 100px;
  max-width: 100px;
}
.cart .confirm .data {
  flex-basis: calc(100% - (100px + 10px));
  margin-left: 1rem;
}
.cart .confirm .data p {
  padding-left: 1rem;
}

@media screen and (max-width: 960px) {
  .cart .flow li {
    flex-basis: 48%;
    margin-bottom: 1rem;
  }
  .cart .flow li::after {
    top: 0;
  }
  .cart .flow li:nth-child(2)::after {
    content: none;
  }
  .cart .list > .flex, .cart .address > .flex, .cart .confirm > .flex {
    display: inherit;
  }
  .cart .list .units_all input[type="text"], .cart .address .units_all input[type="text"], .cart .confirm .units_all input[type="text"] {
    margin-bottom: 1rem;
  }
}
/* マイページ
------------------------------------------------ */
.mypage table {
  margin: 0 auto 20px;
}
.mypage .navi {
  margin: 3rem 0 10rem;
}
.mypage .navi ul li {
  width: calc(100% / 4);
  display: flex;
}
.mypage .navi ul li a {
  display: block;
  height: 100%;
  width: 100%;
  margin: 0 1rem;
  padding: 1rem 2rem 0;
  border: 1px solid #dddddd;
  box-shadow: 0 0 3px 1px #dddddd;
  border-radius: 0.6rem;
  color: #333333;
  text-align: center;
}
.mypage .navi ul li a:hover {
  box-shadow: 0 0 3px 3px #dddddd;
}
.mypage .navi ul li a .icon {
  margin-bottom: 1rem;
  font-size: 3.2rem;
  color: #a20404;
}
.mypage .navi ul li a h3 {
  border: none;
  font-size: 1.8rem;
  font-weight: 400;
}
.mypage .navi ul li a p {
  font-size: 1.4rem;
  text-align: left;
}
.mypage .withdraw {
  padding: 0 1rem;
  font-size: 1.4rem;
}
.mypage .withdraw a {
  text-decoration: underline;
}
.mypage .mypage_order {
  display: flex;
  justify-content: space-between;
}
.mypage .mypage_order section {
  flex-basis: calc(100% - (240px + 20px));
  min-width: 1em;
}
.mypage .mypage_order aside {
  flex-basis: 240px;
  padding: 3rem 0;
}
.mypage .mypage_order aside ul li {
  border-bottom: 1px solid #dddddd;
}
.mypage .mypage_order aside ul li a, .mypage .mypage_order aside ul li span {
  display: block;
  padding: 2rem 1rem;
  background: #dddddd;
}
.mypage .mypage_order aside ul li a:hover, .mypage .mypage_order aside ul li a.current, .mypage .mypage_order aside ul li span:hover, .mypage .mypage_order aside ul li span.current {
  background: #ffffff;
}

@media screen and (max-width: 960px) {
  .mypage .navi ul li {
    width: calc(100% / 1);
    margin-bottom: 3rem;
  }
  .mypage .mypage_order {
    display: inherit;
  }
}
