#lower-main-view {
  background: url(/cil/news/img/main.jpg) no-repeat center 30%;
  background-size: cover;
}

#container {
  margin: -20px 0 0;
}

#container>section.sec {
  padding: 30px 0;
}

#container>section:first-child {
  padding-top: 0;
}

section.sec .sec-head {
  margin-bottom: 0;
}

.sec-wrap {
  padding: 60px 0;
}

#side .component {
  margin: 30px 0 0;
}

#side .component .com-head {
  margin: 0 0 5px;
}

#side .component .com-head h4 {
  color: #666;
}

#side .component .com-body ul li a {
  position: relative;
  display: block;
  padding: 15px 0;
}

#side .component .com-body ul li a:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

#side .component .com-body ul li a:hover:before {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

#side .component .com-body ul li:not(:first-child) {
  border-top: 1px solid #ccc;
}

#side .component .com-body ul li.active {
  font-weight: bold;
  color: #aa003e;
}

#side .component .com-body ul li.active a:before {
  border-top: 2px solid #aa003e;
  border-right: 2px solid #aa003e;
}


@media screen and (min-width: 800px) {
  .sec-wrap .inner {
    position: relative;
    overflow: hidden;
  }

  .sec-wrap .inner:before {
    content: '';
    display: block;
    position: absolute;
    top: 30px;
    right: 310px;
    width: 1px;
    height: calc(100% - 60px);
    background-color: #ccc;
  }

  #container {
    float: left;
    width: calc(100% - 340px);
    margin: 0 100px 0 0;
  }

  #side {
    float: right;
    width: 240px;
  }

}

@media screen and (min-width: 1200px) {
  .sec-wrap .inner:before {
    right: 340px;
  }

  #container {
    width: calc(100% - 380px);
    margin: 0 120px 0 0;
  }

  #side {
    width: 260px;
  }
}

/* .art-item start */

:root {
  --art-item-shadow: #00000045 0px 0px 5px;
  --art-item-shadow-hover: rgba(0, 0, 0, 0.45) 0px 20px 15px -20px;
}

article.art-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 20px;
  position: relative;
  border-radius: 10px;
  top: 0;
  transition: top .1s;
  box-shadow: var(--art-item-shadow);
}

article.art-item:hover {
  top: -10px;
  box-shadow: var(--art-item-shadow-hover), var(--art-item-shadow);
}

article.art-item::after {
  content: "";
  display: block;
  width: 1rem;
  padding-top: 1rem;
  background-color: #aa003e;
  position: absolute;
  bottom: 10px;
  right: 10px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

article.art-item.color-01 {
  background-color: #aa003e11;
  box-shadow: none;
}

article.art-item.color-02 {
  background-color: #000caa12;
  box-shadow: none;
}

article.art-item.color-01:hover,
article.art-item.color-02:hover {
  box-shadow: var(--art-item-shadow-hover);
}

article.art-item .art-tmb {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
}

article.art-item .art-tmb.light-border {
  border: solid 1px #cccccc;
}

article.art-item h4 {
  display: inline-block;
  font-weight: bold;
  position: relative;
}

article.art-item h4::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  bottom: 0;
  left: 0;
}

article.art-item figure {
  position: relative;
}

article.art-item figure figcaption.note {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  color: #333333;
  padding: 0 .5em;
  font-weight: bold;
}

article.art-item .art-meta {
  width: 100%;
}

article.art-item .art-meta.text-center {
  text-align: center;
}


article.art-item .art-meta>span {
  display: inline-block;
}

article.art-item .permalink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

article.art-item.art-row {
  flex-direction: row;
  gap: 5%;
  padding: 1.5em;
}

article.art-item.art-row .art-tmb {
  width: 40%;
}


@media screen and (min-width: 700px) {
  article.art-item {
    gap: 1.5em;
    padding: 2%;
  }
}

/* .art-item end */

/* .flex-container start */

:root {
  --list-gap: 30px;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: var(--list-gap);
}

.flex-container.y-padding {
  padding-top: 30px;
  padding-bottom: 20px;
}

.flex-container.list-row2 {
  flex-wrap: wrap;
}

.flex-container.list-row2>* {
  width: 100%;
}

@media screen and (min-width: 600px) and (max-width: 800px),
(min-width: 900px) {
  .flex-container.list-row2 {
    flex-direction: row;
  }

  .flex-container.list-row2>* {
    width: calc((100% - var(--list-gap)) / 2);
  }
}

/* .flex-container end */
