@charset "utf-8";
/* =Reset default browser CSS.
Based on work by Eric Meyer:http://meyerweb.com/eric/tools/css/reset/index.html

/*==================================================
アコーディオンのためのcss
===================================*/
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: normal;
  padding: 1px 3% 1px 50px;
  transition: all .5s ease;
}
.col50 {
  width: 50%;
}
/*アイコンの＋と×*/
.title::before, .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
.box .image {
  width: 40%; /*画像サイズ指定*/
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.box .text {
  width: 60%;
  margin: 1px 10px 0 1px;
  padding: 0;
}
.box p {
  text-indent: 0.5em;
  color: #079C18;
  line-height: 22px;
  font-size: 100%;
}
-------------------------------------------------------------- */ /* PC用
------------------------------------------------------------*/
.post4 table {
  width: 100%;
}
.post4 table th, .post4 table td {
  vertical-align: middle;
}
.a {
  width: 73%
}
.aa {
  width: 67%
}
.post4 img {
  max-width: 100%;
  height: auto;
}
.post4 p {
  padding-bottom: 5px;
  font-size: 120%;
}
@media only screen and (max-width:960px) {
  .post4 table {
    width: 100%;
  }
  .post4 table tr {
    display: inline;
  }
  .post4 table td {
    display: inline-block;
    margin-left: 10px;
  }
  .post4 img {
    padding-left: 40px;
  }
  .a {
    width: 100%
  }
  .aa {
    width: 100%
  }
  .post4 p {
    padding-bottom: 5px;
    font-size: 100%;
  }
}