/*
Theme Name:bizsuuhi-Child
Template:twentytwentyfour
Version:1.0.0
*/

.pmpro_form_submit {
  display: flex;
  justify-content: space-between; /* 左右に分ける */
  align-items: center; /* ボタンの高さを揃える */
}

/* 戻るボタンのスタイル */
.pmpro-btn-secondary {
  margin-left: auto; /* 右端に移動 */
  background-color: #f5f5f5; /* 薄いグレー */
  color: #333; /* 文字色を濃いグレーに設定 */
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #ddd; /* 境界線の色 */
  display: inline-block;
  margin-left: 10px; /* 他の要素との間隔 */
  transition: background-color 0.3s ease; /* ホバー時のスムーズな変化 */
}

/* 戻るボタンのホバー時のスタイル */
.pmpro-btn-secondary:hover {
  background-color: #eaeaea; /* ホバー時の少し濃いグレー */
  color: #000; /* ホバー時の文字色を黒に設定 */
}

.has-global-padding{
  padding-left: 1rem;
  padding-right: 1rem;
}

.waku1 {
  padding: 0.5em 1em;
  margin: 1em 0;
  font-weight: 400;
  color: #000;/*文字色*/
  background: #FFF;
  border: solid 2px #6091d3;/*線*/
  border-radius: 10px;/*角の丸み*/
}
.waku1 p {
  margin: 0 !important; 
  padding: 0 !important;
}

.pmpro_card_content{
  padding: 1rem !important;
}

.waku2 {
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border: solid 3px #95ccff;
  border-radius: 8px;
}
.waku2 .waku2-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FFF;
  color: #95ccff;
  font-weight: bold;
}
.waku2 p {
  margin: 0; 
  padding: 0;
}

.wp-block-post-title{
  font-size: 2rem !important;
}

.contentContainerBordered{
  overflow: none !important;
}

.thinspan{
  padding: 0 20px 0 20px;
}

.table-scroll {
  overflow-x: auto;
}
.table_design11 {
  border-collapse: collapse;
  min-width: 700px;
  font-weight: bold;
  text-align: center;
}
.table_design11 th, .table_design11 td {
  padding: .5em 1em;
}
.table_design11 th {
  border-top: 2px solid #4d9bc1;
  border-bottom: 2px solid #4d9bc1;
  color: #4d9bc1;
}

#execute-button {
  background-color: var(--pmpro--color--accent);
  border: 1px solid var(--pmpro--color--accent);
  border-radius: var(--pmpro--base--border-radius);
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  color: var(--pmpro--color--base);
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.5;
  min-height: 40px;
  outline: 0;
  padding: var(--pmpro--base--spacing--small) var(--pmpro--base--spacing--medium);
  text-align: center;
  text-decoration: none;
  text-rendering: geometricprecision;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  transition: background-color 0.2s, color 0.2s;
}

.warning-class{
  position: relative;
  padding: 4rem 1rem 1rem;
  background-color: #efefef;
  background-image: repeating-linear-gradient(45deg, #EBBB2F 0 5px, #333 5px 10px);
  background-position: top;
  background-size: 100% 2rem;
  background-repeat: no-repeat;
}
.warning-class::before {
  position: absolute;
  top: 1rem;
  left: 50%;
  padding: 0.5rem;
  transform: translateX(-50%);
  border-radius: 30px;
  background-color: #333;
  box-shadow: 0 0 5px black;
  color: #EBBB2F;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  content: attr(data-title);
}
.warning-class p {
  color: #333;
  line-height: 1.5;
}