.s1 {
  width: 100%;
  font-weight: 400;
  flex-direction: column;
  gap: 25px;
  margin-top: 50px;
  margin-bottom: 25px;
}
.s1 .bread {
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
}
.s1 .bread a {
  font-weight: 400;
  opacity: 80%;
}
.s1 .bread a:hover {
  text-decoration: underline;
}
.s1 .bread p {
  margin: 0 15px;
  font-size: 10px;
}
.s1 h1 {
  width: 100%;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .s1 {
    padding: 0 15px;
    margin-top: 65px;
    margin-bottom: 15px;
  }
  .s1 .bread a {
    font-size: 12px;
  }
  .s1 .bread p {
    margin: 0 10px;
  }
  .s1 h1 {
    font-size: 24px;
  }
}
.s2 {
  gap: 25px;
  align-items: flex-start;
  margin-bottom: 200px;
}
.s2 .main {
  width: calc(100% - 200px);
  background: white;
  border: 1px solid #DBDBDB;
  border-radius: 10px;
  padding: 25px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 35px;
}
.s2 .main .info {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  opacity: 50%;
  text-align: right;
}
.s2 .main .big-img {
  width: 100%;
  aspect-ratio: 475/250;
/*   background-image: url("../Media/Images/9.webp"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  border-radius: 8px;
  border: 1px solid #DBDBDB;
}
.s2 .main .big-img {
  width: 100%;
  aspect-ratio: 475/250;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #DBDBDB;
}

.s2 .main .big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s2 .main p {
  width: 100%;
  line-height: 1.5;
}
.s2 .main h3 {
/*   width: 100%;
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px; */
}
.s2 .side-bar {
  width: 175px;
}
.s2 .side-bar .mokuji {
  width: 100%;
  background: linear-gradient(to right, #BE4AD3, #30337A);
  padding: 10px;
  border-radius: 10px;
}
.s2 .side-bar .mokuji h3 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.s2 .side-bar .mokuji .contents {
  background: white;
  border-radius: 8px;
  padding: 20px 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.s2 .side-bar .mokuji .contents a {
  font-size: 14px;
  font-weight: 500;
}
.s2 .main strong {
  font-weight: 700;
 }
.s2 .main ul {
  width: 100%;
  text-align: left;
/*   margin: 20px 0; */
  padding-left: 1.5em;
}
.s2 .main ul li {
  position: relative;
  margin-bottom: 10px;
  line-height: 1.7;
}
.s2 .main ul {
  padding-left: 0;
  list-style: none;
}
.s2 .main ul li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 12px;
  line-height: 1.7;
}
.s2 .main ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: #000000;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .s2 {
    padding: 0 15px 15px;
    margin-bottom: 50px;
  }
  .s2 .side-bar {
    display: none !important;
  }
  .s2 .main {
    width: 100%;
    padding: 15px;
  }
  .s2 .main .info {
    font-size: 12px;
  }
}
body {
  background-image: url("../Media/BG/7.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}


h2 {
    font-size: 24px;
    font-weight: 500;
    padding-left: 12px;
    border-left: 3px solid #BE4AD3;
    margin-right: auto;
    margin-top: 20px;
}
h3 {
    font-size: 18px;
    font-weight: 400;
    padding-left: 40px;
    position: relative;
    margin-right: auto;
    margin-top: 20px;
/*     margin-bottom: 20px; */
}
h3::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 1px;
    background: #BE4AD3;
}