@charset "UTF-8";
/* ===================================
Reset
=================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* input textarea reset
==============================　*/
input,
textarea,
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  outline: none;
  outline: 0;
}

select::-ms-expand {
  display: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* ===================================
Foundation
=================================== */
* {
  box-sizing: border-box;
  line-break: strict;
}

/* テキスト
==============================　*/
a {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

b {
  font-weight: bold;
}

sup {
  vertical-align: top;
}

/* メディア
==============================　*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
  outline: none;
}

iframe {
  max-width: 100%;
}

/* ===================================
common style
=================================== */
body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
  font-size: 1.4rem;
  padding-top: 117px;
  color: #444444;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

a {
  transition: 0.5s;
}
a:hover {
  opacity: 0.5;
}

.l-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}

@media screen and (max-width: 1200px) {
  body {
    padding-top: 150px;
  }
}
@media screen and (max-width: 900px) {
  body {
    padding-top: 112px;
  }
}
/* ===================================
header
=================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #CECECE;
  z-index: 50;
  background: #fff;
}

/* l-head_top
==============================　*/
.l-head_top {
  background: #57AAB2;
  padding: 10px;
  color: #fff;
}
.l-head_top .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-head_top .l-search_area {
  margin: 0;
  width: 730px;
  max-width: none;
}
.l-head_top .l-search_area + p {
  width: calc(100% - 800px);
  text-align: right;
}

/* l-head_bottom
==============================　*/
.l-head_bottom {
  display: flex;
  justify-content: space-between;
}
.l-head_bottom .c-logo {
  max-width: 481px;
  display: block;
  padding: 15px 0;
}
.l-head_bottom .c-right {
  display: flex;
  align-items: center;
}
.l-head_bottom .c-head_link {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  margin-right: 20px;
}
.l-head_bottom .c-head_link li + li {
  margin-left: 20px;
}
.l-head_bottom .c-head_link a {
  font-weight: bold;
}
.l-head_bottom .c-navmenu {
  display: none;
}
.l-head_bottom .c-cart_btn {
  margin-right: 20px;
}
.l-head_bottom .c-cart_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F77954;
  color: #F77954;
  font-weight: bold;
  width: 130px;
  border-radius: 25px;
  padding: 10px;
  font-size: 1.6rem;
}
.l-head_bottom .c-cart_btn a .c-num {
  font-size: 1.2rem;
  background: #F77954;
  color: #fff;
  position: absolute;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -8px;
  right: -14px;
  border: 2px solid #fff;
  font-weight: normal;
}
.l-head_bottom .c-cart_btn .c-ico {
  width: 22px;
  display: block;
  position: relative;
  margin: 5px 10px 0 5px;
}
.l-head_bottom .c-mypage_list a {
  display: flex;
  align-items: center;
  line-height: 1.7;
}
.l-head_bottom .c-mypage_list a span {
  width: 17px;
  display: block;
  margin-right: 3px;
}

/* c-navmenu_area
==============================　*/
.c-navmenu_area {
  background: #fff;
  z-index: 1000;
  position: fixed;
  top: 112px;
  left: 0;
  width: 100%;
  overflow: auto;
  height: calc(100% - 112px);
  padding: 20px;
}
.c-navmenu_area .c-user {
  font-size: 1.2rem;
}
.c-navmenu_area .c-head_link li {
  border-bottom: 1px solid #CECECE;
}
.c-navmenu_area .c-head_link a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 1.6rem;
  font-weight: bold;
}
.c-navmenu_area .c-head_link a:before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #444;
  border-right: 2px solid #444;
  position: absolute;
  top: 16px;
  right: 5px;
  transform: rotate(45deg);
}
.c-navmenu_area .c-mypage_list {
  border-top: 1px solid #CECECE;
  margin-top: 15px;
}
.c-navmenu_area .c-mypage_list li {
  border-bottom: 1px solid #CECECE;
}
.c-navmenu_area .c-mypage_list a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-weight: bold;
}
.c-navmenu_area .c-mypage_list a > span {
  width: 20px;
  margin-left: 10px;
}
.c-navmenu_area .c-mypage_list a:before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #444;
  border-right: 2px solid #444;
  position: absolute;
  top: 16px;
  right: 5px;
  transform: rotate(45deg);
}
.c-navmenu_area .l-side_bg {
  margin: 20px -20px 0;
}
.c-navmenu_area .c-catlist_wrap .c-ttl {
  font-size: 1.6rem;
}
.c-navmenu_area .c-bnr_list {
  max-width: 300px;
  margin: 10px auto 0;
}
.c-navmenu_area .c-bnr_list li + li {
  margin-top: 10px;
}

@media screen and (max-width: 1200px) {
  .l-head_top .l-inner {
    display: block;
  }
  .l-head_top .l-search_area + p {
    width: 100%;
    margin-top: 10px;
    text-align: left;
  }
  .l-head_bottom .c-logo {
    max-width: 300px;
  }
}
@media screen and (max-width: 900px) {
  .l-header {
    height: 112px;
  }
  .l-head_top {
    padding: 10px 0;
  }
  .l-head_top .l-search_area {
    width: 100%;
  }
  .l-head_top .l-search_area + p {
    display: none;
  }
  .l-head_bottom .c-logo {
    max-width: 180px;
  }
  .l-head_bottom .c-head_link {
    display: none;
  }
  .l-head_bottom .c-mypage_btn {
    display: none;
  }
  .l-head_bottom .c-navmenu {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
  }
  .l-head_bottom .c-navmenu:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #444444;
    position: absolute;
    top: 10px;
    left: 0;
    transition: 0.5s;
  }
  .l-head_bottom .c-navmenu:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #444444;
    position: absolute;
    bottom: 10px;
    left: 0;
    transition: 0.5s;
  }
  .l-head_bottom .c-navmenu.open:before {
    transform: rotate(30deg);
    top: 18px;
  }
  .l-head_bottom .c-navmenu.open:after {
    transform: rotate(-30deg);
    top: 18px;
  }
  .l-head_bottom .c-cart_btn a {
    width: auto;
    border: none;
    padding: 0;
  }
  .l-head_bottom .c-cart_btn a .c-text {
    display: none;
  }
}
/* ===================================
footer
=================================== */
/* l-foot_top
==============================　*/
.l-foot_top {
  background: #57AAB2;
  padding: 10px;
}

/* l-foot_middle
==============================　*/
.l-foot_middle {
  background: #555555;
  color: #fff;
}
.l-foot_middle .c-foot_link {
  display: flex;
  justify-content: center;
  border-top: 1px solid #707070;
  padding: 30px 0;
}
.l-foot_middle .c-text_link {
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
}
.l-foot_middle .c-text_link li {
  position: relative;
  padding: 0 15px;
}
.l-foot_middle .c-text_link li:before {
  content: "";
  width: 1px;
  height: 20px;
  background: #CECECE;
  position: absolute;
  top: 5px;
  left: 0;
}
.l-foot_middle .c-text_link li:nth-last-of-type(1):after {
  content: "";
  width: 1px;
  height: 20px;
  background: #CECECE;
  position: absolute;
  top: 5px;
  right: 0;
}
.l-foot_middle .c-sns_link {
  display: flex;
  margin-left: 40px;
}
.l-foot_middle .c-sns_link li + li {
  margin-left: 15px;
}
.l-foot_middle .c-sns_link a {
  display: block;
  width: 30px;
}
.l-foot_middle .c-foot_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1280px;
  padding: 25px 20px 0;
}
.l-foot_middle .c-foot_list .c-catlist_wrap {
  width: 25%;
  font-size: 13px;
  padding-bottom: 30px;
}
.l-foot_middle .c-foot_list .c-catlist_wrap .c-ttl {
  font-size: 1.6rem;
  border-bottom: none;
}
.l-foot_middle .c-foot_list .c-catlist_wrap .c-list a {
  padding: 0 20px 0 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-foot_middle .c-foot_list .c-catlist_wrap .c-list a:before {
  left: -2px;
  top: 6px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  width: 4px;
  height: 4px;
}

/* l-foot_bottom
==============================　*/
.l-foot_bottom {
  background: #333333;
  color: #fff;
  font-size: 1.3rem;
  padding: 20px 0;
}
.l-foot_bottom .l-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-foot_bottom .c-link_list {
  display: flex;
}
.l-foot_bottom .c-link_list li + li {
  margin-left: 20px;
}
.l-foot_bottom .c-copy {
  color: #999999;
}

@media screen and (max-width: 900px) {
  .l-foot_middle .c-foot_list .c-catlist_wrap {
    width: 50%;
  }
  .l-foot_middle .c-foot_link {
    display: block;
    padding: 30px 20px;
    margin: 0 auto;
    width: 100%;
  }
  .l-foot_middle .c-text_link {
    justify-content: center;
    margin-bottom: 20px;
  }
  .l-foot_middle .c-sns_link {
    justify-content: center;
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  .l-foot_middle .c-foot_list .c-catlist_wrap {
    width: 100%;
  }
  .l-foot_middle .c-text_link {
    font-size: 1.6rem;
  }
  .l-foot_bottom .l-inner {
    display: block;
  }
  .l-foot_bottom .c-link_list {
    flex-wrap: wrap;
  }
  .l-foot_bottom .c-link_list li {
    margin: 0 10px 10px 0 !important;
  }
}
/* ===================================
main_wrap
=================================== */
.l-content {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}

.l-sidebar {
  width: 280px;
}

.l-main {
  width: calc(100% - 320px);
}

/* side bar
==============================　*/
.l-side_bg {
  background: #57AAB2;
  color: #fff;
  padding: 20px 20px 30px;
}
.l-side_bg .c-item-search {
  display: flex;
  align-items: center;
}
.l-side_bg .c-item-search input {
  border: none;
  background: #fff;
  border-radius: 5px 0 0 5px;
  padding: 12px;
  height: 40px;
  width: calc(100% - 40px);
  font-family: "Noto Sans JP", sans-serif;
}
.l-side_bg .c-item-search input::-moz-placeholder {
  color: #444444;
  opacity: 0.4;
  font-size: 1.4rem;
}
.l-side_bg .c-item-search input::placeholder {
  color: #444444;
  opacity: 0.4;
  font-size: 1.4rem;
}
.l-side_bg .c-item-search input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: #444444;
}
.l-side_bg .c-item-search button {
  width: 40px;
  height: 40px;
  background: #444444;
  border: none;
  border-radius: 0 5px 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
}
.l-side_bg .c-item-search button img {
  width: 21.5px;
}
.l-side_bg .c-catlist_wrap {
  margin-top: 30px;
}

.l-sidebar .c-bnr_list {
  margin-top: 20px;
}
.l-sidebar .c-bnr_list a {
  display: block;
  max-width: 280px;
  margin: 0 auto;
}
.l-sidebar .c-bnr_list li + li {
  margin-top: 10px;
}

@media screen and (max-width: 1200px) {
  .l-sidebar {
    width: 250px;
  }
  .l-main {
    width: calc(100% - 270px);
  }
}
@media screen and (max-width: 900px) {
  .l-sidebar {
    display: none;
  }
  .l-main {
    width: 100%;
  }
}
/* ===================================
search area
=================================== */
.l-search_area {
  margin: 0 auto;
  max-width: 860px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-search_area .sp {
  display: none !important;
}
.l-search_area .c-text {
  display: block;
  width: calc(100% - 230px);
  background: #f7f7f7;
  color: rgba(68, 68, 68, 0.4);
  padding: 4px 10px;
  border-radius: 5px;
  border: 1px solid #fff;
  cursor: text;
}
.l-search_area .c-submit {
  display: block;
  width: 68px;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #Fff;
  text-align: center;
  font-weight: bold;
  padding: 4px;
  cursor: pointer;
  transition: 0.5s;
}
.l-search_area .c-submit:hover {
  opacity: 0.5;
}
.l-search_area .c-fille {
  color: #fff;
  width: 135px;
  text-align: center;
  font-weight: bold;
  padding: 4px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
  display: flex;
  align-items: center;
}
.l-search_area .c-fille .c-ico {
  width: 20px;
  margin-right: 5px;
}
.l-search_area .c-fille:hover {
  opacity: 0.5;
}

/* open */
body.open {
  overflow: hidden;
}

.c-search_pop {
  margin: 0 auto;
  position: fixed;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
  width: 100%;
  max-width: 840px;
  z-index: 100;
  max-height: 85vh;
  overflow: auto;
}

.c-search_pop_inner {
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 40px 50px;
}
.c-search_pop_inner .c-close {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 22px;
  font-weight: 100;
}
.c-search_pop_inner .c-ttl_color.p-center {
  text-align: center;
  font-size: 2.2rem;
}
.c-search_pop_inner .c-ttl_color.p-center + .c-text {
  text-align: center;
  margin-top: 20px;
}
.c-search_pop_inner textarea {
  resize: none;
  background: #F3F3F3;
  border: none;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  padding: 10px 15px;
  width: 100%;
  height: 120px;
}
.c-search_pop_inner .c-fille {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 30px);
}
.c-search_pop_inner .c-fille label {
  display: inline-block;
  position: relative;
  background: #444444;
  color: #fff;
  font-size: 1.4rem;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.5s;
}
.c-search_pop_inner .c-fille label:hover {
  opacity: 0.5;
}
.c-search_pop_inner .c-fille label input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.c-search_pop_inner .c-fille .c-filename {
  margin: 5px 10px;
  display: inline-block;
}
.c-search_pop_inner .c-fille input[id*=js-clear] {
  background: no-repeat;
  width: auto;
  position: absolute;
  top: 9px;
  right: -25px;
  padding: 0;
}
.c-search_pop_inner .c-agree_area {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #CECECE;
}
.c-search_pop_inner .c-agree_area .c-red_text {
  font-weight: bold;
  text-align: center;
  color: #F84343;
}
.c-search_pop_inner .c-agree_area .c-red_text a {
  text-decoration: underline;
}
.c-search_pop_inner .c-agree_area .c-red_text br {
  display: none;
}
.c-search_pop_inner .c-agree_area .c-check {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: bold;
}
.c-search_pop_inner .c-agree_area .c-check input[type=checkbox] {
  width: auto;
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
  margin: 0 10px 0 0px;
  transform: scale(1.5);
}
.c-search_pop_inner .c-submit {
  margin: 20px 0 0;
}
.c-search_pop_inner .c-submit.no-active input {
  background: #CECECE;
  pointer-events: none;
}
.c-search_pop_inner .c-submit.no-active input:hover {
  opacity: 1;
}
.c-search_pop_inner .c-submit input {
  font-size: 1.8rem;
  font-weight: bold;
  width: 200px;
  height: 60px;
  border-radius: 5px;
  margin: 0 auto;
  display: block;
  color: #fff;
  background: #F77954;
  transition: 0.5s;
}
.c-search_pop_inner .c-submit input:hover {
  opacity: 0.5;
}
.c-search_pop_inner .c-form_list {
  margin-top: 40px;
}
.c-search_pop_inner .c-form_list dt {
  font-weight: bold;
  margin-bottom: 10px;
}
.c-search_pop_inner .c-form_list dt sup {
  color: #F84343;
}
.c-search_pop_inner .c-form_list div + div {
  margin-top: 25px;
}
.c-search_pop_inner .c-radio_area {
  display: flex;
  flex-wrap: wrap;
}
.c-search_pop_inner .c-radio_area div + div {
  margin: 0 0 0 10px !important;
}
.c-search_pop_inner .c-radio_area .c-button {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.c-search_pop_inner .c-radio_area .c-button + label {
  padding: 8px 18px;
  cursor: pointer;
  display: block;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #CECECE;
  transition: 0.5s;
}
.c-search_pop_inner .c-radio_area .c-button + label:hover {
  opacity: 0.5;
}
.c-search_pop_inner .c-radio_area .c-button:checked + label {
  background-color: #59AAB2;
  border: 1px solid #59AAB2;
  color: #FFF;
}

.c-drawer-bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
}

@media screen and (max-width: 1024px) {
  .l-search_area .c-text {
    overflow: auto;
    white-space: nowrap;
    word-break: keep-all;
  }
  .c-search_pop {
    max-width: 90vw;
  }
  .c-search_pop_inner .c-radio_area div,
  .c-search_pop_inner .c-radio_area div + div {
    margin: 0 10px 10px 0 !important;
  }
}
@media screen and (max-width: 900px) {
  .l-search_area .pc {
    display: none !important;
  }
  .l-search_area .sp {
    display: block !important;
  }
  .l-search_area .c-fille {
    width: 55px;
    font-size: 1rem;
    padding: 0;
    text-align: center;
    height: 45px;
  }
  .l-search_area .c-fille .c-ico {
    display: block;
    margin: 0 auto 5px;
    padding-top: 5px;
  }
  .l-search_area .c-text {
    width: calc(100% - 70px);
  }
  .l-search_area .c-text.sp {
    height: 45px;
    display: flex !important;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .c-search_pop_inner {
    padding: 30px 20px;
  }
  .c-search_pop_inner .c-ttl_color.p-center {
    font-size: 2rem;
  }
  .c-search_pop_inner .c-ttl_color.p-center + .c-text {
    text-align: left;
  }
  .c-search_pop_inner .c-agree_area .c-red_text br {
    display: block;
  }
  .c-search_pop_inner .c-radio_area div, .c-search_pop_inner .c-radio_area div + div {
    width: 100%;
    margin: 0 0 10px !important;
  }
  .c-search_pop_inner .c-radio_area .c-button + label {
    width: 100%;
  }
}
/* ===================================
list
=================================== */
/* c-link_list-yazi
==============================　*/
.c-link_list-yazi {
  margin-top: 30px;
  font-size: 16px;
}
.c-link_list-yazi li + li {
  margin-top: 10px;
}
.c-link_list-yazi a {
  position: relative;
  text-decoration: underline;
  margin-left: 30px;
}
.c-link_list-yazi a:before {
  content: "";
  width: 2px;
  height: 12px;
  background: #fff;
  position: absolute;
  top: 9px;
  left: -14px;
  transform: rotate(45deg);
}
.c-link_list-yazi a:after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 9px;
  left: -16px;
}

/* c-catlist_wrap
==============================　*/
.c-catlist_wrap .c-ttl {
  font-size: 18px;
  border-bottom: 1px solid #fff;
  line-height: 1.7;
  font-weight: bold;
}
.c-catlist_wrap .c-list {
  margin-top: 10px;
}
.c-catlist_wrap .c-list li + li {
  margin-top: 5px;
}
.c-catlist_wrap .c-list a {
  position: relative;
  padding-left: 20px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-catlist_wrap .c-list a:before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 7px;
  left: 5px;
  transform: rotate(45deg);
}

/* ===================================
item_list
=================================== */
/* c-item_list
==============================　*/
.c-item_list {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -10px;
}
.c-item_list li {
  width: calc((100% - 100px) / 5);
  margin: 10px 10px 15px;
}
.c-item_list a {
  display: block;
}
.c-item_list .c-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 5px;
}
.c-item_list .c-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-item_list .c-ttl {
  font-weight: bold;
  line-height: 1.4;
  padding-top: 10px;
}
.c-item_list .c-price {
  font-weight: bold;
  font-size: 2rem;
  padding-top: 5px;
}
.c-item_list .c-price span {
  font-size: 1.6rem;
}
.c-item_list .c-price .c-tax {
  font-size: 1.2rem;
  font-weight: normal;
}
.c-item_list .c-cat {
  margin-top: 7px;
}
.c-item_list .c-cat span {
  background: #57AAB2;
  color: #fff;
  padding: 1px 4px;
  margin: 0 5px 5px 0;
  display: inline-block;
  font-size: 1.2rem;
}
.c-item_list .c-cat_c span {
  font-size: 1.2rem;
  color: #999999;
  text-decoration: underline;
  margin: 0 5px 5px 0;
  display: inline-block;
}

/* c-cat_c
==============================　*/
.c-cat_clist {
  border: 1px solid #CECECE;
  margin-top: 20px;
  border-radius: 5px;
  padding: 20px 20px 10px;
}
.c-cat_clist .c-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}
.c-cat_clist ul {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
}
.c-cat_clist ul li {
  padding: 0 10px 0 0;
  margin: 0 10px 10px 0;
  margin-bottom: 10px;
  position: relative;
}
.c-cat_clist ul li:before {
  content: "";
  width: 1px;
  height: 14px;
  background: #CECECE;
  position: absolute;
  top: 4px;
  right: 0;
}

/* c-pager_area
==============================　*/
.c-pager_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #CECECE;
}
.c-pager_area .c-page_num {
  padding-left: 10px;
}
.c-pager_area .c-pager {
  display: flex;
  align-items: center;
  padding-right: 10px;
  font-size: 1.6rem;
}
.c-pager_area .c-pager * + * {
  margin-left: 10px;
}
.c-pager_area .c-pager a.c-current {
  color: #57AAB2;
}
.c-pager_area .c-pager .c-next {
  margin-left: 15px !important;
}
.c-pager_area .c-pager .c-prev {
  margin-right: 15px !important;
}
.c-pager_area .c-pager .c-prev, .c-pager_area .c-pager .c-next {
  width: 30px;
  height: 30px;
  background: #57AAB2;
  display: inline-block;
  border-radius: 5px;
  position: relative;
}
.c-pager_area .c-pager .c-prev.p-hidden, .c-pager_area .c-pager .c-next.p-hidden {
  display: none;
}
.c-pager_area .c-pager .c-prev:before, .c-pager_area .c-pager .c-next:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 11px;
  left: 10px;
  transform: rotate(45deg);
}
.c-pager_area .c-pager .c-prev:before {
  transform: rotate(-135deg);
  left: 13px;
}

@media screen and (max-width: 1024px) {
  .c-item_list li {
    width: calc((100% - 80px) / 4);
  }
}
@media screen and (max-width: 768px) {
  .c-pager_area {
    display: block;
  }
  .c-pager_area .c-page_num {
    padding-bottom: 10px;
  }
  .c-pager_area .c-pager {
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .c-item_list li {
    width: calc((100% - 40px) / 2);
  }
}
/* ===================================
parts
=================================== */
/* title
==============================　*/
.c-ttl_color {
  font-size: 2.8rem;
  font-weight: bold;
  color: #57AAB2;
}

/* c-ttl_border
==============================　*/
.c-ttl_border {
  font-size: 2.4rem;
  border-bottom: 2px solid #57AAB2;
  padding-bottom: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-weight: bold;
}
.c-ttl_border .c-page_num {
  font-weight: normal;
  font-size: 1.4rem;
  padding-right: 10px;
}
.c-ttl_border a {
  font-size: 14px;
  position: relative;
  padding-right: 10px;
}
.c-ttl_border a:before {
  content: "";
  width: 20px;
  height: 2px;
  background: #444444;
  position: absolute;
  top: 10px;
  left: -30px;
}
.c-ttl_border a:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #444444;
  border-right: 2px solid #444444;
  position: absolute;
  transform: rotate(45deg);
  top: 7px;
  left: -17px;
}

/* c-bread_area
==============================　*/
.c-bread_area {
  background: #F7F7F7;
  font-size: 13px;
  margin-top: 100px;
  padding: 15px;
}
.c-bread_area .c-brea_list {
  display: flex;
  align-items: center;
  overflow: auto;
  white-space: nowrap;
  word-break: keep-all;
}
.c-bread_area .c-brea_list li + li {
  margin-left: 20px;
  position: relative;
}
.c-bread_area .c-brea_list li + li:before {
  content: "";
  width: 10px;
  height: 1px;
  background: #CECECE;
  position: absolute;
  top: 9px;
  left: -15px;
}
.c-bread_area .c-brea_list a {
  color: #57AAB2;
  font-weight: bold;
}

@media screen and (max-width: 600px) {
  .c-bread_area {
    margin-top: 70px;
    padding: 15px 0;
  }
  .c-ttl_color {
    font-size: 2.4rem;
  }
  .c-ttl_border {
    font-size: 2rem;
  }
  .c-ttl_border .c-page_num {
    padding: 0 5px;
  }
}
/* l-login
==============================　*/
.l-login{
  color: #F84343;
  border:1px solid #F84343;
  margin-top: 10px;
  padding: 10px;
}
.l-login span{
  font-weight: bold;
}
/* error
==============================　*/
.esg{
  color: #F84343;
}
