.list {
  width: 100%;
  background-color: var(--global-blackblue);
  padding: 60px 15px 80px;
  box-sizing: border-box;
}
.list .title {
  font-size: var(--font-l1);
  color: var(--global-white);
  text-align: center;
  margin-bottom: 50px;
}
.list .lsit-links {
  width: 100%;
  max-width: 867px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 48px;
  margin: 0px auto 60px;
}
.list .lsit-links .links .link-img {
  width: 135px;
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  border-radius: 40px;
  background-color: var(--global-white);
  overflow: hidden;
}
.list .lsit-links .links .link-img img {
  width: 100%;
}
.list .lsit-links .links .link-name {
  font-size: var(--font-l3);
  text-align: center;
  max-width: 135px;
}
.list .content {
  font-size: var(--font-l3);
  color: var(--global-white);
  text-align: center;
}
@media (max-width: 876px) {
  .list .lsit-links {
    justify-content: center;
  }
}

.detaileds .detailed-area {
  position: relative;
}
.detaileds .detailed-area .detailed-link {
  position: absolute;
  top: 0px;
  transform: translateY(-100%);
  width: 1px;
  height: 93px;
}
.detaileds .detailed {
  position: relative;
  overflow: hidden;
}
.detaileds .detailed .detailed-img {
  width: 100%;
  height: 100%;
  background-color: var(--global-blackblue);
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.detaileds .detailed .detailed-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--global-black);
  opacity: 0.5;
}
.detaileds .detailed .detailed-img img {
  height: 100%;
}
.detaileds .detailed .content-top {
  max-width: 1292px;
  height: 328px;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 90px 16px 83px;
  box-sizing: border-box;
}
.detaileds .detailed .content-top .title {
  font-size: var(--font-l1);
  color: var(--global-white);
  margin-right: 16px;
  margin-bottom: 10px;
}
.detaileds .detailed .content-top .auxiliary {
  font-size: var(--font-l2);
  color: var(--global-white);
  margin-bottom: 12px;
}
.detaileds .detailed .content-top .content {
  width: 100%;
  color: var(--global-white);
  font-size: var(--font-l4);
  line-height: 27px;
  letter-spacing: 0.04em;
}
.detaileds .detailed .content-bottom {
  max-width: 1324px;
  min-height: 320px;
  margin: 0px auto;
  padding: 16px 16px 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.detaileds .detailed .content-bottom .cartbox {
  position: relative;
}
.detaileds .detailed .content-bottom .cartbox .cart {
  padding: 22px;
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid var(--global-lightgray);
}
.detaileds .detailed .content-bottom .cartbox .cart figure {
  width: 374px;
  height: 210px;
  margin: 0px auto 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.detaileds .detailed .content-bottom .cartbox .cart figure img {
  width: 100%;
}
.detaileds .detailed .content-bottom .cartbox .cart .area {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.detaileds .detailed .content-bottom .cartbox .cart .area .area-text {
  display: flex;
  flex-direction: column;
}
.detaileds .detailed .content-bottom .cartbox .cart .area .area-text .name {
  font-size: var(--font-l3);
  color: #3F3F42;
  font-weight: 700;
}
.detaileds .detailed .content-bottom .cartbox .cart .area .area-text .ename {
  font-size: var(--font-l4);
  color: #878787;
}
.detaileds .detailed .content-bottom .cartbox .cart .area .decorate {
  width: 100px;
  height: 40px;
}
.detaileds .detailed .content-bottom .cartbox .area-link {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 2;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: rgba(9, 31, 60, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.detaileds .detailed .content-bottom .cartbox .area-link img {
  margin: 0px 5px 0px 3px;
  width: 20px;
  height: 20px;
}
.detaileds .detailed:nth-child(3) {
  background-color: #F8F8F8;
}
@media (max-width: 1340px) {
  .detaileds .detailed .content-top .auxiliary {
    display: none;
  }
  .detaileds .detailed .content-bottom {
    justify-content: center;
  }
  .detaileds .detailed .content-bottom .cart figure {
    width: 316px;
    height: 177px;
  }
}
@media (max-width: 900px) {
  .detaileds .detailed .content-bottom .cartbox {
    width: calc(50% - 8px);
    height: 100%;
  }
  .detaileds .detailed .content-bottom .cartbox .cart {
    width: 100%;
    box-sizing: border-box;
  }
  .detaileds .detailed .content-bottom .cartbox .cart figure {
    width: 100%;
    height: 177px;
  }
}
@media (max-width: 768px) {
  .detaileds .detailed .content-bottom .cartbox .cart .area {
    flex-direction: column;
    align-items: center;
  }
  .detaileds .detailed .content-bottom .cartbox .cart .area .area-text .name {
    text-align: center;
  }
  .detaileds .detailed .content-bottom .cartbox .cart .area .area-text .ename {
    text-align: center;
    margin-bottom: 4px;
  }
  .detaileds .detailed .content-bottom .cartbox .area-link {
    width: calc(100% - 52px);
    right: 50%;
    transform: translateX(50%);
  }
}