/* CSS Document */

body {
	position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin: 0!important;
  position: relative;
  background-color: #FFF;
  color: #000;
}
.bold {
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: bold;
}

main {
  margin: 0 auto;
  padding: 81px 0 0;
  width: 100%;
  min-width: 1100px;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.pconly {
  display: block;
}
.pconly2 {
  display: inline;
}
.mbonly, .mbonly2 {
  display: none;
}
hr { visibility: hidden; }
.indent1 {
  padding-left: 1em;
  text-indent: -1em;
}
.indent2 {
  padding-left: 2em;
  text-indent: -2em;
}
.indent3 {
  padding-left: 3em;
  text-indent: -3em;
}
.indent1.small,
.indent2.small,
.indent3.small { font-size: 14px; line-height: 1.5em;}

p { color: #4d4d4d!important;}

@media only screen and (max-width : 768px ){
  main {
    padding: 61px 0 0;
    min-width: 360px;
  }
  .pconly, .pconly2 {
    display: none;
  }
  .mbonly {
    display: block;
  }
  .mbonly2 {
    display: inline;
  }
}

/* 
contents
*/
.contents {
  width: 1100px;
  margin: 0 auto;
  padding: 0;
}
.contents.flex { display: flex; }
.contents img.full {
  width: 100%;
}
@media screen and (max-width:768px) {
  .contents {
    width: 100%;
    padding: 0 20px;
  }
  .contents.flex {  display: block; }
}


h3.chapter {
  width: 280px;
  line-height: 25px;
  margin: 50px auto 30px;
  background-image: url(../img/chapter_bg.gif);
  background-size: 25px 25px;
  text-align: center;
  font-size: 21px;
  font-weight: bold;
  color: #6B7766;
}
h3.chapter span {
  font-size: 14px;
}
h3.chapter.blue {
  background-image: url(../img/chapter_bg_blue.gif);
  color: #005B8D;
}
h3.chapter.white {
  background-image: url(../img/chapter_bg_white.gif);
  color: #fff;
}

.secTitle {
  font-weight: bold;
  font-size: 32px;
  color: #00480E;
  text-align: center;
  margin: 0 auto 30px;
  cursor: pointer!important;
}
.secTitle.white { color: #FFF; }

/* ボタン */
a.basicBtn {
  width: 280px;
  display: block;
  border: 1px solid #1571DA;
  color: #1571DA;
  padding: 15px;
  border-radius: 5px;
  margin: 0 auto;
  text-align: center;
}
a.basicBtn.disabled {
  pointer-events: none;
}
a.basicBtn:hover {
  background-color: #D3E6FD;
}
a.basicBtn.blue {
  background-color:#1571DA;
  color: #FFF;
}
a.basicBtn.long {
  width:600px;
}

@media screen and (max-width:768px) {
  .secTitle {
    font-size: 24px;
  }
  a.basicBtn.long {
    width:80%;
  }
  
}


/* ===============
header
=============== */
#header {
	position: fixed;
  z-index: 999;
	height: 81px;
	width:100%;
  background:#fff;
  border-bottom: 1px solid #E8E8E8;
}

/* 769px以上の画面のみ */
@media screen and (min-width:769px) {
  /*　上に上がる動き　*/
  #header.UpMove{
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime{
    from {
      opacity: 1;
    transform: translateY(0);
    }
    to {
      opacity: 0;
    transform: translateY(-100px);
    }
  }
  /*　下に下がる動き　*/
  #header.DownMove{
    animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime{
    from {
      opacity: 0;
      transform: translateY(-100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
#header .headerInner {
  position: relative;
	height: 80px;
	width: 1100px;
  max-width: 1100px;
  min-width: 320px;
  margin: 0 auto;
	display: flex;
  flex-wrap: wrap;
	align-items: center;
	background:#fff;
	color:#0E489D;
	text-align: center;
}
.siteLogo {
  width: 240px;
}
.siteLogo img {
  width: 240px;
}



/* ===============
Navigation
=============== */
nav {
  width: 860px;
}
nav ul{
	list-style: none;
	display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
nav ul li {
  width: auto;
}
nav ul li a {
	display: block;
	text-decoration: none;
	color: #4D4D4D;
	padding: 0px 20px;
	transition:all 0.3s;
  font-size: 14px;
  font-weight: 600;
  line-height: 80px;
}
nav ul li.current a,
nav ul li a:hover{
  background: #E8FFD9;
}
nav ul li a.mypageBtn {
  padding: 0px 25px;
  color: #0173B0;
  background-image: url(../img/btn_mypage.gif);
  background-size: 120px 30px;
  background-repeat: no-repeat;
  background-position: center;
}
nav ul li a.mypageBtn:hover {
  color: #FFF;
  background-image: url(../img/btn_mypage_on.gif);
}
.openBtn { display: none; }

@media screen and (max-width:768px) {
  #header{
    height: 61px;
  }
  #header .headerInner {
    height: 60px;
  }
  .siteLogo {
    flex-basis: 80px;
    width:80px;
  }
  .siteLogo img {
    width: auto;
    height: 40px;
    padding-left: 10px;
  }
  #navmenu {
    position:fixed;
    z-index: 999;
    top:-120%;
    left:0;
    width:100%;
    height: auto;
    background:#999;
    transition: all 0.6s;
  }
  #navmenu.panelactive {
    top: 61px;
  }
  
  nav ul li {
    flex-basis: 100%;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #999;
  }
  nav ul li a {
    line-height: 50px;
    font-size: 18px;
  }
  nav ul li a.mypageBtn {
    background-image: none;
    color: #4D4D4D;
  }
  .openBtn{
    display: block;
    position:fixed;
    z-index: 9999;
    top: 15px;
    right: 0px;
    cursor: pointer;
      width: 60px;
      height: 45px;
  }
  .openBtn span {
      display: inline-block;
      transition: all .4s;
      position: absolute;
      left: 15px;
      height: 6px;
      border-radius: 0px;
      background-color: #808080;
      width: 50%;
    }
    .openBtn span:nth-of-type(1) {
      top:0px; 
    }
    .openBtn span:nth-of-type(2) {
      top:12px;
    }
    .openBtn span:nth-of-type(3) {
      top:24px;
    }
    .openBtn.active span:nth-of-type(1) {
      top: 6px;
      left: 15px;
      transform: translateY(6px) rotate(-45deg);
      width: 50%;
      height: 5px;
    }
    .openBtn.active span:nth-of-type(2) {
      opacity: 0;
    }
    .openBtn.active span:nth-of-type(3){
      top: 18px;
      left: 15px;
      transform: translateY(-6px) rotate(45deg);
      width: 50%;
      height: 5px;
    }
}






/* ====================
トップエリア
==================== */
#top {
  background-image: url(../img/main_visual_pc.gif);
  background-repeat: no-repeat;
  background-position: center top;
  background-size:2400px;
  width: 100%; height: 680px;
  position: relative;
}
#top .contents { height:100%; }
#top h1 {
  position: absolute;
  top: 100px; left: 50%;
  font-size: 34px;
  letter-spacing:2px;
  line-height: 1.4em;
  font-weight: bold;
  color: #00480E;

}
#top p {
  width: 425px;
  position: absolute;
  top: 360px; left: 50%;
  margin-left: -540px;
  font-size: 18px;
  letter-spacing:1px;
  line-height: 1.8em;
  color: #4d4d4d;
}

@media screen and (max-width:768px) {
  #top {
    background-image: url(../img/main_visual_sp.gif);
    background-size: auto 359px;
    background-position: center top;
    width: 100%; height: auto;
  }
  #top .contents { padding-top: 250px; }
  #top h1 {
    position: static;
    font-size: 28px;
    text-align: center;
    margin: 0 0 70px;
  }
  #top p {
    width: 100%;
    position: static;
    margin-left: 0px;
    font-size: 18px;
    letter-spacing:1px;
    line-height: 1.8em;
    color: #4d4d4d;
  }


}


#common,
#topics,
#about { padding: 85px 0; }
#vision { padding: 85px 0 1px; }
#service { padding: 15px 0 85px; }
#contact { padding: 45px 0 85px; }
#footer { padding: 50px 0 25px; }

@media screen and (max-width:768px) {
  #common,
  #topics,
  #about,
  #contact { padding: 45px 0; }
  #vision { padding: 45px 0 1px; }
  #service { padding: 15px 0 45px; }
  #footer { padding: 50px 0 25px; }
}


/* ====================
topics　お知らせ
==================== */
#topics > .contents {
  width: calc(100% - 60px);
  max-width: 1100px;
  padding: 0;
}
#topics > .contents > ul { margin-bottom: 30px;}
#topics > .contents > ul li {
  border-bottom: 1px solid #CCC;
}
#topics > .contents > ul li {
  text-decoration: none;
  padding: 20px 5px;
}
#topics > .contents > ul li a {
  display: flex;
  flex-wrap: wrap;

}
#topics > .contents > ul li:hover { background-color: #EAF8E1;}

/* 日付 */
#topics > .contents > ul li span,
#topics > .contents > .date p span {
  width:110px;
  font-size: 18px;
  font-weight: bold;
  padding-top: 2px;
}
/* カテゴリ */
#topics .contents > ul li i,
#topics .contents > .date p > i {
  width:100px;
  height: 25px;
  padding: 4px 5px;
  font-size: 12px;
  line-height: 15px;
  font-style:normal;
  text-align: center;
  background-color: #9AE070;
  color: #000;
  margin: 0 15px;
}

#topics .contents > ul li i.ctg1,
#topics .contents > .date p > i.ctg1 { background-color: #F2F2F2; }
#topics .contents > ul li i.ctg2,
#topics .contents > .date p > i.ctg2 { background-color: #FCE2BF; }
#topics .contents > ul li i.ctg3,
#topics .contents > .date p > i.ctg3 { background-color: #F9C9D3; }
#topics .contents > ul li i.ctg4,
#topics .contents > .date p > i.ctg4 { background-color: #C6E9CD; }
#topics .contents > ul li i.ctg5,
#topics .contents > .date p > i.ctg5 { background-color: #C1DCE9; }


/* リスト記事タイトル */
#topics > .contents > ul li p {
  width: calc(100% - 240px);
  font-size: 16px;
  line-height: 1.5em;
  position: relative;
}

#topics > .contents > ul li a[target="_blank"][href$=".pdf"] p::after {
  content:"\f1c1"; /* リスト */
  font-family: FontAwesome;
  font-size: 18px;
  color: #F75D7E;
  margin-left: 10px;
}
#topics > .contents > ul li a[target="_blank"] p::after {
  content:"\f2d2"; /* リスト */
  font-family: FontAwesome;
  font-size: 18px;
  color: #8a8a8a;
  margin-left: 10px;
}

@media screen and (max-width:768px) {
  #topics .contents {
  width: 100%;
  padding: 0 20px;
  }
  #topics > .contents > ul { margin-bottom: 0;}
  #topics > .contents > ul li a p {
  width: 100%;
  padding-top: 20px;
  }
  
}

/* ====================
news　記事ページ
==================== */
#topics .newsTitle {
  text-align: center;
}
#topics .newsTitle > h2,
#topics .newsTitle > h3,
#topics .newsTitle > h4 {
  font-weight: bold;
  color: #20908A;
  margin-bottom: 15px;
  
}
#topics .newsTitle > h2 { font-size: 32px; line-height: 1.4em;}
#topics .newsTitle > h3 { font-size: 28px; line-height: 1.5em;}
#topics .newsTitle > h4 { font-size: 21px; line-height: 1.5em;}

#topics .newsTitle p.date {
  font-size: 13px;
}

#topics .contents .lineBox {
  width: 100%;
  border-top:1px solid #9AE070;
  border-bottom:1px solid #9AE070;
  background-color: #f0f8ec;
  padding: 30px;
  line-height: 1.6em;
  margin: 30px auto 50px;
}

.newspage p {
  font-size: 18px;
  line-height: 1.6em;
}
.newspage h4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6em;
}
.newsImgFlex {
  display: flex;
  justify-content: center;
}
.newsImgFlex > img {
  height: 200px;
  margin: 10px 20px;
}

.newsImg > img {
  width:80%;
  display:block;
  margin: 50px auto;
}

#topics > .contents > .date { margin-bottom: 50px;}
#topics > .contents > .date p {
  border-bottom: 1px solid #CCC;
  padding: 10px 5px;
}
#topics > .contents > .date p {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
#topics > .contents > .date p a {
  position: absolute;
  text-decoration: none;
  display: block;
  top: 10px; left: 0;
  padding: 5px 10px;
}
#topics > .contents > .date p a:hover { background-color: #EAF8E1;}
#topics .contents > .date p > i {
  margin: 0 0 0 15px;
}

.docLink {
  text-align: center;
}
.docLink a {
  text-decoration: underline;
  color: #005B8D;
}

.col2 {
  display: flex;
  justify-content: center;
}
.col2 > div.lineBox {
  width: 46%!important;
  margin: 50px 2%!important;
}

@media screen and (max-width:768px) {
  #topics .contents .lineBox {
    font-size: 16px;
    line-height: 1.6em;
  }
  #topics .newsTitle > h2 { font-size: 24px; }
  #topics .newsTitle > h3 { font-size: 21px; }
  #topics .newsTitle > h4 { font-size: 14px; }
  #topics .contents .lineBox {
    width: 100%;
  }
  .newsImgFlex {
    display: block;
    width: 89%;
  }
  .newsImgFlex > img {
    width: 100%; height: auto;
    margin: 10px 20px;
  }
  .col2 {
    display: block;
  }
  .col2 > div.lineBox {
    width: 100%!important;
    margin: 30px 0!important;
  }
}

a.blink:hover { opacity: 0.6;}
.aln_c, .aln_l, .aln_r { display: block; }
.aln_c { text-align: center!important; }
.aln_l { text-align: left!important; }
.aln_r { text-align: right!important; }






/* ====================
vision　ビジョン
==================== */
#vision {
  background-color:#DBF8C9;
  background-image: url(../img/bg_vision.gif);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
}
#vision .contents > h3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4em;
  color: #20908A;
  margin-bottom: 50px;
  text-align: center;
}
#vision .contents > p {
  text-align: center;
}
#vision .contents {
  padding-bottom: 180px;
}
#vision .contents > div {
  display: flex;
  width: 100%;
}
#vision .contents > div.upper {
  flex-direction: row-reverse;
}

#vision .contents > div.upper p,
#vision .contents > div.lower img {
  width: 510px;
  margin-right: 70px;
}
#vision .contents > div.lower p,
#vision .contents > div.upper img {
  width: 520px;
}

#vision .contents > div.lower p img {
  width: 300px;
  margin: 0 0 10px;
}

#vision .contents > div.upper p {
  font-size: 18px;
  line-height: 1.5em;
  padding-top: 50px;
}
#vision .contents > div.lower p {
  font-size: 14px;
  line-height: 1.4em;
  padding-top: 120px;
}



#vision table {
  width: 80%;
  border-collapse: collapse;
  margin: 1em auto;
  background-color: white;
}
#vision th {
  background-color: #b5ee93;
  color: #4d4d4d;
  padding: 8px;
  border: 1px solid #DBF8C9;
  text-align: center;
}
#vision td {
  padding: 8px;
  border: 1px solid #DBF8C9;
  color: #333;
}

#vision tbody tr:nth-child(even) {
  background-color: #eaf7e2;
}

#vision tbody tr:nth-child(odd) {
  background-color: #f8fff4;
}

@media (max-width: 768px) {
  #vision table,
  #vision thead,
  #vision tbody,
  #vision th,
  #vision td,
  #vision tr {
    display: block;
  }

  #vision table {
    width: 100%;
    background-color:transparent;
  }

  #vision thead {
    display: none;
  }

  #vision tr {
    margin-bottom: 1em;
    border: 1px solid #e3f8d5;
    background-color: #fff;
  }
  #vision th {
    vertical-align: middle;
  }

  #vision td {
    position: relative;
    padding-left: 50%;
    border: none;
    border: 1px solid #DBF8C9;
    background-color: #f9f9f9;
  }

  #vision td::before {
    position: absolute;
    top:8px;
    left: 0.5em;
    width: 45%;
    padding-right: 0.5em;
    white-space: nowrap;
    font-weight: bold;
    color: #666;
  }

  #vision td:nth-of-type(1)::before { content: "領域"; }
  #vision td:nth-of-type(2)::before { content: "分散の中身"; }
  #vision td:nth-of-type(3)::before { content: "賢さの要素（Smart）"; }
}



@media screen and ( max-width : 768px ){
  #vision {
    background-size: 200%;
  }
  #vision .contents {
    padding: 30px 20px 100px;
  }
  #vision .contents > div {
    display: block;
  }
  #vision .contents > div.upper p,
  #vision .contents > div.lower img,
  #vision .contents > div.lower p,
  #vision .contents > div.upper img {
    width: 100%;
    margin-right: 0;
  }
  #vision .contents > div.upper p,
  #vision .contents > div.lower p {
    padding: 50px 0;
  }
  #vision .contents > h3 {
  font-size: 21px;
}
}



/* ====================
service　サービス
==================== */
#service {
  background-color: #F7F7EA;
}
#service .contents {
  display: flex;
  justify-content: center;
}
#service .contents > div {
  width: 45%;
  margin-right: 10%;
}
#service .contents > div:last-child { margin-right: 0;}
#service .contents > div h2 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  color: #00480E;
}
#service .contents > div img {
  width: 100%;
  margin-bottom: 20px;
}
#service .contents > div p {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 30px;
}

@media screen and ( max-width : 768px ){
  #service .contents {
    display: block;
  }
  #service .contents > div {
    width: 100%;
    margin-right: 0;
    margin-bottom: 85px;
  }
  #service .contents > div:last-child { margin-bottom: 0;}


}

/* ====================
about　会社概要
==================== */
#about {

}
.aboutText {
  text-align: center;
  color: #999;
  margin-top: 20px;
  font-size: 12px;
}
.aboutTableWrap {
  width: 700px;
  padding: 0;
  margin: 50px auto 0;
}
table.basicTB {
  font-size: 15px;
  line-height: 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1px dotted #CCCCCC;
}
table.basicTB th, table.basicTB td {
  padding: 15px;
}
table.basicTB th {
  width: 150px;
  text-align: center;
  color: #4D4D4D;
  border-top: 1px dotted #CCCCCC;
  vertical-align: middle;
}
table.basicTB td {
  color: #4D4D4D;
  border-top: 1px dotted #CCCCCC;
}
table.basicTB ul {
  margin: 0 0 0 1.2em;
  
}
table.basicTB ul li {
  list-style: disc;
  
}

@media screen and ( max-width : 768px ){
  .aboutTableWrap {
    width: 100%;
    overflow-x: scroll;
  }
  .aboutTableWrap {
    margin: 10px auto 0;
  }
}


/* ====================
contact　お問い合わせ
==================== */
#contact {
  background-color: #CCCCCC;
}
#contact a.basicBtn {
  margin: 50px auto;
  width: 380px;
  background-color: #1571DA;
  color: #fff;
}
#contact a.basicBtn:hover { opacity: 0.6; }
#contact p {
  font-size: 14px;
  text-align: center;
  line-height: 2em;
}
#contact p span {
  font-size: 28px;
  font-weight: bold;
  margin-left: 15px;
}
@media screen and ( max-width : 768px ){
  #contact a.basicBtn {
    width: 100%;
  }
}





/* ====================
特定商取引法に基づく表記
tokushoho.html
==================== */
#common .tokushoho .basicTB {
  width: 80%;
  margin: 0 auto;
}
#common .tokushoho .basicTB th {
  width: 200px;
  text-align: center;
  color: #4D4D4D;
  border-top: 1px dotted #CCCCCC;
  vertical-align: middle;
}

@media screen and (max-width:768px) {
  #common .tokushoho .basicTB {
    width: 100%;
  }
  #common .tokushoho .basicTB th {
    width: 140px;
  }
}





/* ====================
利用規約 / 個人情報保護方針
terms.html / privacy-policy.html
==================== */
#common .terms{
  line-height: 1.5em;
}
#common .terms h1 {
  margin: 0 0 50px 0;
  font-size:36px;
}

#common .terms h2 {
  margin: 50px 0 40px 0;
  padding: 15px 0 15px 20px;
  font-size: 28px;
  border-left:5px solid #20908A;
}

#common .terms .g-laySecTyp01 h2 {
  margin: 0 0 30px 0;
  padding: 0;
  border-left:none;
}

#common .terms p.tR {
  margin: 60px 0 0 0;
  text-align:right;
}

#common .terms ol {
  margin:20px 0 0 50px;
}

#common .terms ul {
  margin:20px 0 0 30px;
}

#common .terms td ul {
  margin:0;
}

#common .terms ol li {
  position: relative;
  list-style: outside decimal;
  padding:0 0 0 5px;
}

#common .terms ol li::marker {
  font-size: 130%;
  font-weight: 700;
  color:#20908A;
}

#common .terms ol li ol {
  padding:0 0 30px 0;
}
#common .terms ol li ol li {
  list-style: outside disc;
}

@media screen and (max-width:768px) {
  #common .terms h1 {
    margin: 0 0 20px 0;
    font-size:28px;
  }
  #common .terms h2 {
    margin: 30px 0 15px 0;
    padding: 5px 0 5px 10px;
    font-size: 21px;
    border-left:5px solid #20908A;
  }
}






/* ====================
footer
==================== */
footer {
  width: 100%;
  background: #000;
  color: #FFF;
  text-align: center;
  padding: 0 0 30px;
}
footer img {
  width: 120px;
  margin-bottom: 15px;
}

footer p {
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 10px;
}
footer p span {
  font-size: 14px;
}
.footerOption {
  width: 100%;
  max-width: 540px;
  font-size: 14px;
  line-height: 1.5em;
  margin: 5px auto 0;
  text-align: left;
}
.footerCopyright {
  width: 1000px;
  margin: 0 auto;
  font-size: 11px;
  color: #9F9F9F;
  padding: 15px 0 0;
  line-height: 1.4em;
  text-align: center;
}
.footerCopyright span {
  font-size: 16px;
  vertical-align: bottom;
}

@media screen and ( max-width : 768px ){
  footer img {
    width: 120px;
  }
  .footerCopyright {
    width: 100%;
    padding: 10px 0 0;
  }
}





/* ====================
note
==================== */
#message {
  width: 1100px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}
#message p img {
  display: none;
}
#message a {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}
#message a.btn {
  display: block;
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom: 0;
}
#message .mu {
  width: 23%;
  position: relative;
  padding: 10px;
  margin-bottom: 40px;
  background-color: #FFF;
  border-radius: 10px;
}
#message .mu img {
  width: 100%;
  height:auto;
  max-height: 130px;
}
#message .mu .thumb {
  height:130px;
  background-image: url(../img/Unknown.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

#message .mu h3 {
  font-size: 1.1em;
  line-height: 1.4em;
  text-align: left;
  font-weight: normal;
  margin-bottom: 1em;
}
#message .mu h3:nth-of-type(2) {
  display: none!important;
}
#message .mu p.date {
  margin: 10px 0;
  color: #8a8a8a!important;
}
#message .mu p,
#message .mu h2 {
  color: #4d4d4d!important;
  font-size: 13px!important;
  line-height: 1.5em;
  font-weight: normal!important;
}
#message .mu strong {
  font-weight: normal!important;
}
#message .mu a.btn:hover {
  background-color: #FFF;
  opacity: 0.4;
}

@media screen and ( max-width : 768px ){
  #message {
    width: 100%;
    display:block;
    padding: 0 20px;
  }
  #message .mu {
    width: 100%;
    margin-bottom: 60px;
  }
  #message .mu img {
    width: 100%;
    height:auto;
    max-height: 200px;
  }
  #message .mu .thumb {
    width: 100%;
    height:200px;
  }
}



/* 
margin padding
*/
.mt-0{
    margin-top:0px!important;
}
.mb-0{
    margin-bottom:0px!important;
}
.mr-0{
    margin-right:0px!important;
}
.ml-0{
    margin-left:0px!important;
}
.mt-10{
    margin-top:10px!important;
}
.mb-10{
    margin-bottom:10px!important;
}
.mr-10{
    margin-right:10px!important;
}
.ml-10{
    margin-left:10px!important;
}
.mt-20{
    margin-top:20px!important;
}
.mb-20{
    margin-bottom:20px!important;
}
.mr-20{
    margin-right:20px!important;
}
.ml-20{
    margin-left:20px!important;
}
.mt-30{
    margin-top:30px!important;
}
.mb-30{
    margin-bottom:30px!important;
}
.mr-30{
    margin-right:30px!important;
}
.ml-30{
    margin-left:30px!important;
}
.mt-40{
    margin-top:40px!important;
}
.mb-40{
    margin-bottom:40px!important;
}
.mr-40{
    margin-right:40px!important;
}
.ml-40{
    margin-left:40px!important;
}
.mt-50{
    margin-top:50px!important;
}
.mb-50{
    margin-bottom:50px!important;
}
.mr-50{
    margin-right:50px!important;
}
.ml-50{
    margin-left:50px!important;
}
.mt-60{
    margin-top:60px!important;
}
.mb-60{
    margin-bottom:60px!important;
}
.mr-60{
    margin-right:60px!important;
}
.ml-60{
    margin-left:60px!important;
}
.mt-70{
    margin-top:70px!important;
}
.mb-70{
    margin-bottom:70px!important;
}
.mr-70{
    margin-right:70px!important;
}
.ml-70{
    margin-left:70px!important;
}
.mt-80{
    margin-top:80px!important;
}
.mb-80{
    margin-bottom:80px!important;
}
.mr-80{
    margin-right:80px!important;
}
.ml-80{
    margin-left:80px!important;
}
.mt-90{
    margin-top:90px!important;
}
.mb-90{
    margin-bottom:90px!important;
}
.mr-90{
    margin-right:90px!important;
}
.ml-90{
    margin-left:90px!important;
}
.mt-100{
    margin-top:100px!important;
}
.mb-100{
    margin-bottom:100px!important;
}
.mr-100{
    margin-right:100px!important;
}
.ml-100{
    margin-left:100px!important;
}


.pt-10{
    padding-top:10px!important;
}
.pb-10{
    padding-bottom:10px!important;
}
.pr-10{
    padding-right:10px!important;
}
.pl-10{
    padding-left:10px!important;
}
.pt-20{
    padding-top:20px!important;
}
.pb-20{
    padding-bottom:20px!important;
}
.pr-20{
    padding-right:20px!important;
}
.pl-20{
    padding-left:20px!important;
}
.pt-30{
    padding-top:30px!important;
}
.pb-30{
    padding-bottom:30px!important;
}
.pr-30{
    padding-right:30px!important;
}
.pl-30{
    padding-left:30px!important;
}
.pt-40{
    padding-top:40px!important;
}
.pb-40{
    padding-bottom:40px!important;
}
.pr-40{
    padding-right:40px!important;
}
.pl-40{
    padding-left:40px!important;
}
.pt-50{
    padding-top:50px!important;
}
.pb-50{
    padding-bottom:50px!important;
}
.pr-50{
    padding-right:50px!important;
}
.pl-50{
    padding-left:50px!important;
}
.pt-60{
    padding-top:60px!important;
}
.pb-60{
    padding-bottom:60px!important;
}
.pr-60{
    padding-right:60px!important;
}
.pl-60{
    padding-left:60px!important;
}
.pt-70{
    padding-top:70px!important;
}
.pb-70{
    padding-bottom:70px!important;
}
.pr-70{
    padding-right:70px!important;
}
.pl-70{
    padding-left:70px!important;
}
.pt-80{
    padding-top:80px!important;
}
.pb-80{
    padding-bottom:80px!important;
}
.pr-80{
    padding-right:80px!important;
}
.pl-80{
    padding-left:80px!important;
}
.pt-90{
    padding-top:90px!important;
}
.pb-90{
    padding-bottom:90px!important;
}
.pr-90{
    padding-right:90px!important;
}
.pl-90{
    padding-left:90px!important;
}
.pt-100{
    padding-top:100px!important;
}
.pb-100{
    padding-bottom:100px!important;
}
.pr-100{
    padding-right:100px!important;
}
.pl-100{
    padding-left:100px!important;
}


/*フォント系*/
.f-12{
    font-size:12px!important;
}
.f-14{
    font-size:14px!important;
}
.f-20{
    font-size:20px!important;
}
.f-25{
    font-size:25px!important;
}
.f-26{
    font-size:26px!important;
}
.f-30{
    font-size:30px!important;
}
.f-35{
    font-size:35px!important;
}
.f-38{
    font-size:38px!important;
}
.f-40{
    font-size:40px!important;
}
.f-46{
    font-size:46px!important;
}
.f-50{
    font-size:50px!important;
}
.line-h-15{
    line-height:1.5!important;
}
.f-b{
     font-weight:bold!important;
}

.wd-50 {
  width: 50%!important;
}
.wd-80 {
  width: 80%!important;
}
.wd-100 {
  width: 100%!important;
}
@media only screen and (max-width: 767px) {
  .mwd-50 {
    width: 50%!important;
  }
  .mwd-80 {
    width: 80%!important;
  }
  .mwd-100 {
    width: 100%!important;
  }
}
