/* TEXT+
------------------------------- */
.index {
  text-align: left;
  font-size: 13px;
  line-height: 2;
  margin-top: 10px;
  margin-bottom: 30px;
}
.index-cat {
  text-align: left;
  font-size: 12px;
  letter-spacing: 1px;
  color: #555;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 5px;
  background-color: #fff;
}
.index-cat2 {
  text-align: left;
  font-size: 12px;
  letter-spacing: 1px;
  color: #555;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 5px;
  background-color: #f7f4ed;
}
.index-title {
  text-align: left;
  font-size: 15px;
  letter-spacing: 1px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #f7f4ed;
}
.index-subtitle {
  text-align: left;
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.index-news {
  text-align: left;
  font-size: 13px;
  /*font-weight: bold;*/
  color: #C63;
  margin-top: 0px;
  margin-bottom: 0px;
}
.text-cat {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 5px;
}
.text-cat-label {
  text-align: left;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 2.2;
  margin: 0px;
  color: #555;
  border-bottom: solid 1px #CCC;
}
.text-title {
  text-align: left;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-top: 0px;
  margin-bottom: 30px;
}
.text-subtitle {
  text-align: left;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-top: 0px;
  margin-bottom: 30px;
}
.text-content {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 30px;
}
.text-content-left {
  width: 32%;
}
.text-content-right {
  width: 64%;
}
.img-copyright {
  text-align: right;
  font-size: 11px;
  line-height: 0;
  margin-top: 0;
  margin-bottom: 20px;
}
.text-info {
  text-align: left;
  font-size: 13px;
  line-height: 2.2;
  margin-top: 0;
  margin-bottom: 50px;
}
.text-info a{
  text-decoration: underline;
}
.text-info2 {
  text-align: left;
  font-size: 13px;
  line-height: 2;
  margin-top: 0;
  margin-bottom: 50px;
  margin-left: 0px;
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: #CCC;
  padding-left: 15px;
}
.text-text {
  text-align: left;
  font-size: 15px;
  line-height: 2;
  padding-left: 15px;
  margin-top: 5px;
  margin-bottom: 50px;
}
.text-text2 {
  text-align: left;
  font-size: 12px;
  line-height: 2;
  /*margin-top: 5px;*/
  margin-bottom: 0px;
  /*text-indent: -2em;*/
  padding-left: 2em;
}
.text-text-refer {
  text-align: left;
  font-size: 13px;
  line-height: 2;
  /*margin-top: 5px;*/
  margin-bottom: 5px;
  padding-left: 2em;
  text-indent: -2em;
}
/*質問文の文頭に2倍ダーシと少しの余白を入れる*/
p.text-text-refer::before {
  content: "ーー";
  letter-spacing: -.2em;
  width: 2em;
  margin-right: .5em;
}

.works-index {
  display: flex;
  justify-content: space-between;
  gap: 1%;
  margin-top: 0px;
  margin-bottom: 20px;
}
.works-index div{
  width: 24.5%;
  margin-bottom: 20px;
}
.works-index h2{
  font-size: 14px;
  font-weight: normal;
}
.works-index p{
  text-align: left;
  font-size: 12px;
  margin-top: 0px;
  margin-bottom: 20px;
}

/* INDEX MORE */
.indexmore{
  position: relative;
  box-sizing: border-box;
  /*以下お好み*/
  /* ボーダーを付ける場合 */
  /*padding: 10px;
  border: 1px solid #CCC;*/
}
.indexmore-content{
  position: relative;
  overflow: hidden;
  /*以下お好み*/
  /*高さの初期値*/
  height: 200px;
}
.indexmore-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  /*以下お好み グラデーションの色と高さ 高さはindexmoreのheight以下にすること*/
  height: 50px;
  background: -webkit-linear-gradient(top, rgba(247,244,237,0) 0%, rgba(247,244,237,0.8) 50%, rgba(247,244,237,0.8) 50%, #f7f4ed 100%);
  background: linear-gradient(top, rgba(247,244,237,0) 0%, rgba(247,244,237,0.8) 50%, rgba(247,244,237,0.8) 50%, #f7f4ed 100%);
}
/* 続きを読むボタン */
.indexmore-label{
  display: table;
  bottom: 5px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0 auto;
  z-index: 2;
  padding: 0 10px;
  background-color: rgba(204,102,51,0.6);
  border-radius: 10px;
  color: #fff;
}
.indexmore-label:before{
  content: 'OPEN';
}
.indexmore-check{
  display: none;
}
/*チェック時にボタンを非表示*/
.indexmore-check:checked ~ .indexmore-label{
  position: static;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
  /* display: none; */
}
.indexmore-check:checked ~ .indexmore-label:before{
  content: 'CLOSE';
}
/*チェック時に高さを自動に戻す*/
.indexmore-check:checked ~ .indexmore-content{
  height: auto;
}
/*チェック時グラデーション等を削除*/
.indexmore-check:checked ~ .indexmore-content::before {
  display: none;
}

/* モバイル版
------------------------------- */
@media (max-width: 600px) {
  /* TEXT+ */
  .text-content {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 10px;
  }
  .text-content-left {
    width: 100%;
  }
  .text-content-right {
    width: 100%;
  }
  .works-index {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .works-index div{
    width: 49.5%;
  }
}