@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main .layout-body {
  overflow: hidden;
  background: #f5fafc;
}

#main .layout-body > .body {
  display: flex;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 70px 20px;
}

#main div.body {
  max-width: 1240px;
  padding:0 20px;
  margin: 0 auto;
}

#main .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {
  /*ブラウザの幅が736px以下の時*/
  #main .layout-body > .body {
    display: block;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding: 70px 20px;
  }

 #main div.body {
   max-width: 100%;
   padding:0 20px;
   margin: 0 auto;
   }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

  #main .layout-body > .body {
    display: block;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px;
  }

#main > .section {
  padding-top: 30px;
  padding-bottom: 30px;
}

#main .column ~ .column {
  margin-top: 20px;
}

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メインコンテンツ
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#main #main-contents .section ~.section {
  padding-top: 50px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main #main-contents .section ~ .section {
  padding-top: 30px;
}

}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * お知らせ
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */


/* ****************************************************************************************************
   * お知らせ一覧
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.topics {
  position: relative;
}

.topics .body {
  padding: 0;
}

.topics .content a {
  color:#009fe8;
}
.topics .content a:hover {
  color:#8adaff;
}

/* ----------------------------------------------------------------------------------------------------
   * リスト
/* ------------------------------------------------------------------------------------------------- */

.topics .detail {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}


.topics ul.list {}

.topics ul.list li {}

.topics ul.list li a {
  position: relative;
  display: flex;
  font-size: 1.5rem;
  padding: 10px 0;
  border-bottom: 1px dashed #dde5e8;
}
.topics ul.list li a > * {
  display: inline-block;
}
.topics ul.list li a:hover {
  background: #f5fafc;
  color: #009fe8;
}

.topics ul.list li .day {
  min-width: 8em;
  color: #a3a3a3;
}
.topics ul.list li .text {}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.topics .detail {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-top: 0px;
  box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}

.topics ul.list li a {
  position: relative;
  display: block;
  font-size: 1.5rem;
  padding: 10px 0;
  border-bottom: 1px dashed #dde5e8;
}
}

/* ****************************************************************************************************
   * お知らせ詳細
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.topics .title + .day {
  color:#a3a3a3;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * サイドメニュー
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#side-contents #archive-1 {}

#side-contents #archive-1 .title {
  font-size: 2.2rem;
}
#side-contents #archive-1 .title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #009fe8;
  z-index: 3;
}
#side-contents #archive-1 ul {}

#side-contents #archive-1 ul li {}

#side-contents #archive-1 ul li a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px dashed #dde5e8;
  transition: 0.3s;
}
#side-contents #archive-1 ul li a:hover {
  background: #fff;
  color: #009fe8;
}

#side-contents #archive-1 ul li p.text {
  margin-top: 0;
}

/* ****************************************************************************************************
   * お知らせ詳細
**************************************************************************************************** */

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

#topics .btn::after {
  right: auto;
  left: 1em;
  transform: rotate(225deg);
  transition: 0.2s left;
}

#topics .btn:hover:after {
  left:0.6em;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #topics .btn {
    width: auto;
    padding: 15px 4em;
  }
}