/*====================================================================================
1. START MAIN SECTION.
====================================================================================*/
/*---------- START crumbs  ----------*/
#crumbs {
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding: 5px 0;
  padding-left: 0.5em;
  margin: 180px auto 10px;
  display: flex;
  align-items: center;
}
#crumbs li {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 2.15rem;
  font-size: 11px;
  font-family: "鐃潤イ鐃所オ", Meiryo, Osaka, "鐃粛ｏ申 鐃出ワ申鐃緒申鐃獣ワ申", "MS PGothic", sans-serif;
  white-space: nowrap;
  line-height: 1.5;
}

#crumbs li a {
  font-family: "鐃潤イ鐃所オ", Meiryo, Osaka, "鐃粛ｏ申 鐃出ワ申鐃緒申鐃獣ワ申", "MS PGothic", sans-serif;
  padding: 0 1em;
}
#crumbs li:after {
  position: absolute;
  content: ">";
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1.6rem;
  height: 1.65rem;
  display: inline-block;
  font-family: "鐃潤イ鐃所オ", Meiryo, Osaka, "鐃粛ｏ申 鐃出ワ申鐃緒申鐃獣ワ申", "MS PGothic", sans-serif;
  color: #333;
}
#crumbs li:nth-child(2) {
  white-space: nowrap;
}
#crumbs li:last-child::after {
  display: none;
}
@media screen and (max-width: 1130px) {
  #crumbs {
    width: 100%;
    max-width: 345px;
    margin: 10px auto 5px;
  }
}

/*---------- START l-main  ----------*/
.l-main {
  padding-top: 0 !important;
  margin: 10px auto 85px !important;
}
@media screen and (max-width: 1130px) {
  .l-main {
    width: 100%;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 839px) {
  .l-main #main-column {
    margin-top: 45px;
  }
}

@media screen and (max-width: 1130px) {
  .main-page {
    width: 100%;
    max-width: 345px;
    border-bottom: 1px solid #505050;
    padding-bottom: 20px;
    margin: 0 auto 40px;
  }
}

.c-section {
  margin-bottom: 30px;
}
@media screen and (max-width: 1130px) {
  .c-section {
    margin-bottom: 20px;
  }
}

/*---------- START ARROW BUTTON  ----------*/
.c-arr {
  position: relative;
}
.c-arr:before {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #0000ff;
  border-right: 2px solid #0000ff;
  border-radius: 0.2rem;
  transform: rotate(45deg);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-arr--back:before {
  transform: rotate(-135deg);
}
.c-arr--up:before {
  transform: rotate(-45deg);
}
.c-arr--down:before {
  transform: rotate(135deg);
}
.c-arr--white:before {
  border-color: #fff;
}
.c-arr--red:before {
  border-color: #d21c24;
}

/*---------- START PART TITLE  ----------*/
.c-title01 {
  background: #202974 url("../itemlist/images/logo-title.webp") no-repeat;
  background-position: left 20px top 17px;
  background-size: 43px;
  color: #fff;
  font-weight: bold;
  padding: 25px 10px 25px 80px;
  font-size: 25px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1130px) {
  .c-title01 {
    background-position: left 12px top 13px;
    background-size: 22px;
    padding: 15px 10px 15px 50px;
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.c-title02 {
  font-size: 20px;
  font-weight: 700;
  background: #ecf3ff;
  border-left: 5px solid #202974;
  padding: 20px 0 20px 20px;
  color: #202974;
  margin-bottom: 20px;
}
@media screen and (max-width: 1130px) {
  .c-title02 {
    font-size: 16px;
    padding: 15px 0 15px 12px;
    margin-bottom: 10px;
  }
}

/*====================================================================================
2. START PAGE ITEMLIST
====================================================================================*/
.c-list01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.c-list01__item {
  width: 100%;
}
.c-list01__link {
  width: 100%;
  height: 182px;
  display: flex;
  justify-content: space-between;
  border: 1px solid #c8c8c8;
}
.c-list01__img {
  position: relative;
  background: #c8c8c8;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  overflow: hidden;
}
.c-list01__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.c-list01__text {
  width: calc(100% - 150px);
  padding: 15px;
  box-sizing: border-box;
}
.c-list01__text p {
  font-size: 12px;
  line-height: 1.6;
}
.c-list01__title {
  margin-bottom: 10px;
}
.c-list01__title span {
  display: inline-block;
  color: #0000ff;
  font-weight: bold;
  font-size: 15px;
  padding-right: 15px;
  text-decoration: underline;
}
@media screen and (min-width: 1131px) {
  .c-list01 {
    gap: 15px;
  }
  .c-list01__item {
    width: calc((100% - 15px) / 2);
  }
  .c-list01__link:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    transform: translateY(-3px);
  }
  .c-list01__title span {
    font-size: 18px;
  }
  .c-list01__text p {
    font-size: 14px;
  }
}