@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {}

#main-contents div.body {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding-left: 20px;
   padding-right: 20px;
   margin: 0 auto;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  #main-contents > .section {
    padding-top: 4em;
    padding-bottom: 4em;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 2em;
  padding-bottom: 2em;
}

#main-contents div.body {
  max-width: 100%;
  padding: 0 1em;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}

/* ****************************************************************************************************
   * 一覧
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.topics {
  position: relative;
  padding-top: 90px;
  padding-bottom: 140px;
  overflow: hidden;
}
.topics .body {
  max-width: 1120px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .topics {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.topics .title-1 {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0.1em 1.0em;
}
.topics .title-1::before {
  content: "";
  display: block;
  border-right: 5px solid var(--c-pink);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .topics .title-1 {
    font-size: 1.8rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * リスト
/* ------------------------------------------------------------------------------------------------- */

.topics ul.list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid #cccccc;
}
.topics ul.list li {
  border-bottom: 1px solid #cccccc;
}
.topics ul.list li a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1em;
  transition: 0.3s;
  color: #333333;
}
.topics ul.list li a:hover {
  background: #f3f3f3;
  opacity: 1;
}
.topics ul.list li a .meta {
  display: flex;
  min-width: 200px;
}
.topics ul.list li .day {
  font-weight: bold;
  color: var(--c-pink);
  font-size: 1.4rem;
}
.topics ul.list li .text {
  font-size: 1.6rem;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .topics ul.list {
    max-width: 100%;
    margin: 20px auto 0;
  }
  .topics ul.list li a {
    display: block;
    padding: 1em;
  }
  .topics ul.list li a > div {
    display: flex;
  }
}
