@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
*/

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

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

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

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

.pr-text {
    font-size: 14px;
    text-align: right;
}

ul.cm,
ol.cm {
  background: #fcfcfc;/*背景色*/
  padding: 0.5em 0.5em 0.5em 2em;/*ボックス内の余白*/
  border: solid 3px #F3F3F3;/*線の種類 太さ 色*/
  border-radius: 10px; /* 枠の角を丸くする */
}

ul.cm li,
ol.cm li {
  line-height: 1.5; /*文の行高*/
  padding: 0.5em 0; /*前後の文との余白*/
}

/* サイト内のすべてのテーブル */
table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
  table-layout: auto !important;
}

table th,
table td {
  border: 1px solid #b5b5b5 !important;
  padding: 9px 14px;
  text-align: left;
  vertical-align: middle;
  overflow-wrap: break-word;
  word-break: normal;
}

table th {
  background-color: #f7f7f7 !important;
  font-weight: bold;
}

table td {
  background-color: #fff !important;
}

@media screen and (max-width: 767px) {
  table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: auto !important;
    font-size: 14px;
  }

  table th,
  table td {
    padding: 8px 10px;
  }
}
/* Cocoonのカラム境界線を削除 */
.content,
.main,
.sidebar,
.sidebar-menu-content {
  border: none !important;
}
}

.red-button-wrap {
  width: 100%;
  max-width: 350px;
  margin: 30px auto;
  text-align: center;
}

.red-button-guide {
  margin: 0 0 8px !important;
  padding: 0 !important;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.red-button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 20px;
  background: #ed4b4f;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  border-radius: 6px;
  border-bottom: 5px solid #c9363a;
  box-shadow: 0 5px 10px rgba(0,0,0,0.20);
  transition: all 0.15s ease;
}

/* マウスを乗せたとき */
.red-button:hover {
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(4px);
  border-bottom-width: 1px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.18);
}

/* クリックした瞬間 */
.red-button:active {
  transform: translateY(5px);
  border-bottom-width: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}