.grecaptcha-badge { visibility: hidden; }
/*
.wp-block-table {overflow-y: scroll;}
.p-single-item table {white-space: nowrap;}*/



.mv .regist {
    margin-top: 60px;
    margin-bottom: 60px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: auto;
    top: 52%;
}

.regist {
    margin-top: 40px;
    text-align: center;
    overflow: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    outline: none;
}
user agent stylesheet
div {
    display: block;
}
.mv {
    position: relative;
    background: url(../images/top/mv.webp) no-repeat bottom center;
    background-size: cover;
    text-align: center;
    padding-top: 2%;
}

@media screen and (max-width:768px) {
    .wp-block-table {
        overflow-y: scroll;
    }
    
    .p-single-item table {
        white-space: nowrap;
    }

    .wp-block-table table, 
    .wp-block-table table th, 
    .wp-block-table table td,
    .wp-block-table table a,
    .p-single-item table, 
    .p-single-item table th, 
    .p-single-item table td,
    .p-single-item table a {
    font-size: 10px !important;
    }
}

/* テーブルの横スクロールは残しつつ、セル内で必ず折り返す */
.wp-block-table,
.wp-block-table.scrollable-table {
  overflow-x: auto;
  padding-bottom: 10px;
}

.wp-block-table table {
  width: 100%;
  table-layout: fixed;        /* 列幅を固定して折り返しやすく */
  border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
  padding: 10px;
  vertical-align: top;
  white-space: normal !important; /* インラインの nowrap を打ち消す */
  overflow-wrap: anywhere;        /* どこでも改行可（英数字/URL対策） */
  word-break: break-word;         /* 旧ブラウザ対策 */
  hyphens: auto;                  /* 可能ならハイフネーション */
}

/* 画像がセル幅を超えないように */
.wp-block-table td img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* モバイル時に縦スクロールは不要。横だけにする */
@media (max-width: 768px) {
  .wp-block-table { overflow-y: visible; }
}

/* チェックリストのスタイル */
.checklist-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Helvetica Neue', Arial, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
}

.checklist-header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

.checklist-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.checklist-body {
    padding: 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item:hover {
    background-color: #f8f9fa;
}

.item-number {
    font-weight: 600;
    color: #2c3e50;
    min-width: 30px;
    margin-right: 15px;
    font-size: 16px;
}

.item-text {
    flex: 1;
    color: #2c3e50;
    font-size: 16px;
    margin-right: 15px;
}

.checkbox-container {
    position: relative;
}

.checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox:checked {
    background-color: #2c3e50;
    border-color: #2c3e50;
}

.checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox:hover {
    border-color: #34495e;
    box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
}

.checklist-item.checked {
    background-color: #f8f9fa;
}

.checklist-item.checked .item-text {
    text-decoration: line-through;
    color: #7f8c8d;
}
