@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/


.appreach {
  text-align: left;
  padding: 10px;
  border: 1px solid #7C7C7C;
  overflow: hidden;
}
.appreach:after {
  content: "";
  display: block;
  clear: both;
}
.appreach p {
  margin: 0;
}
.appreach a:after {
  display: none;
}
.appreach__icon {
  float: left;
  border-radius: 10%;
  overflow: hidden;
  margin: 0 3% 0 0 !important;
  width: 25% !important;
  height: auto !important;
  max-width: 120px !important;
}
.appreach__detail {
  display: inline-block;
  font-size: 20px;
  line-height: 1.5;
  width: 72%;
  max-width: 72%;
}
.appreach__detail:after {
  content: "";
  display: block;
  clear: both;
}
.appreach__name {
  font-size: 16px;
  line-height: 1.5em !important;
  max-height: 3em;
  overflow: hidden;
}
.appreach__info {
  font-size: 12px !important;
}
.appreach__developper, .appreach__price {
  margin-right: 0.5em;
}
.appreach__posted a {
  margin-left: 0.5em;
}
.appreach__links {
  float: left;
  height: 40px;
  margin-top: 8px;
  white-space: nowrap;
}
.appreach__aslink img {
  margin-right: 10px;
  height: 40px;
  width: 135px;
}
.appreach__gplink img {
  height: 40px;
  width: 134.5px;
}
.appreach__star {
  position: relative;
  font-size: 14px !important;
  height: 1.5em;
  width: 5em;
}
.appreach__star__base {
  position: absolute;
  color: #737373;
}
.appreach__star__evaluate {
  position: absolute;
  color: #ffc107;
  overflow: hidden;
  white-space: nowrap;
}

.table-container {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 16px;
            font-family: Arial, sans-serif;
        }
        .table-container th, .table-container td {
            border: 1px solid #ddd;
            text-align: left;
            padding: 12px;
        }
        .table-container th {
			text-align: center;
        }
        .table-container th:first-child {
            background-color: #5cabff;
            color: #fff;
        }
        .table-container th:last-child {
            background-color: #d3d3d3; /* グレー背景 */
            color: #000;
        }
        .table-container td {
            background-color: #f9f9f9;
        }/* テーブル全体のスタイル */
.table-container {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.table-container th, .table-container td {
    border: 1px solid #ddd;
    text-align: left;
    padding: 12px;
}

.table-container th:first-child {
    background-color: #007bff; /* メリットヘッダーの青色 */
    color: #fff;
    text-align: center;
}

.table-container th:last-child {
    background-color: #d3d3d3; /* デメリットヘッダーのグレー色 */
    color: #000;
    text-align: center;
}

.table-container td {
    background-color: #f9f9f9;
}

.table-container td:first-child {
    font-weight: bold; /* メリット本文を太字に */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .table-container {
        display: block;
        width: 100%;
    }
    .table-container thead {
        display: none; /* テーブルヘッダーを非表示 */
    }
    .table-container tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #f9f9f9;
    }
    .table-container td {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        border: none;
        border-bottom: 1px solid #ddd;
    }
    .table-container td:last-child {
        border-bottom: none;
    }
    .table-container td::before {
        width: 30%; /* 左側のラベル幅を設定 */
        content: attr(data-label); /* data-label属性を使用 */
        font-weight: bold;
        color: #007bff;
    }
    .table-container td:nth-of-type(2)::before {
        color: #9d9d9d;
    }
    .table-container td:first-child {
        font-weight: bold; /* メリットの本文を太字に */
    }
}
.container-card {
      max-width: 800px;
      margin: 20px auto;
      padding: 0 20px;
    }

    .card {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 20px;
      padding: 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

   
 .card .ttl {
  position: relative;
  padding: 1rem .5rem;
	 text-align: center;
    font-weight: bold;
}

.card .ttl:before,
.card .ttl:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: -webkit-gradient(linear, right top, left top, from(#30cfd0), to(#330867));
  background-image: -webkit-linear-gradient(right, #30cfd0 0%, #330867 100%);
  background-image: linear-gradient(to left, #30cfd0 0%, #330867 100%);
}

.card .ttl:before {
  top: 0;
}

.card .ttl:after {
  bottom: 0;
}


    .card p {
      margin: 10px 0;
      color: #555;
    }

    .card ul {
      margin: 10px 0 0 20px;
      padding: 0;
    }

    .card ul li {
      margin-bottom: 8px;
      color: #333;
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 10px;
      }
    }
.cta-box {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  margin: 20px 0;
  border-radius: 8px;
}

.cta-box strong {
  color: #e60023; /* 楽天のブランドカラー */
  font-size: 1.2em;
}

.cta-button {
  display: inline-block;
  background-color: #e60023;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
}

.cta-button:hover {
  background-color: #c5001e;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
