       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Helvetica Neue", "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
            background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
            color: #333;
            line-height: 1.6;
            padding: 20px 0;
        }

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.wpcf7-not-valid-tip, .help-text, .help-text{
	font-weight: bold;
	color: red;
	font-size: 1em !important;
}
		.checkbox-item input[type="checkbox"] {
			width: 20px !important;
			height: 10px;
			cursor: pointer;
		}
        .form-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 30px;
            padding: 30px 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .header h1 {
            font-size: 28px;
            color: #E8002D;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .header p {
            font-size: 14px;
            color: #666;
        }

        /* キャンペーンバナー */
        .campaign-banner {
            background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
        }

        .campaign-banner h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .campaign-banner p {
            font-size: 14px;
            margin: 0;
        }

        /* フォームカード */
        .form-section {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
			max-width: 1100px;
        }

        .section-title {
            font-size: 20px;
            font-weight: 700;
            color: #E8002D;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 3px solid #E8002D;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i {
            font-size: 22px;
        }

        /* フォームグループ */
        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .required-badge {
            display: inline-block;
            background: #E8002D;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            margin-left: 8px;
        }

        .optional-badge {
            display: inline-block;
            background: #999;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            margin-left: 8px;
        }

        /* 入力フィールド */
        .form-input,
        .form-select,
        .form-textarea {
            width: 100% !important;
            padding: 12px 16px !important;
            font-size: 15px !important;
            border: 2px solid #ddd !important;
            border-radius: 8px !important;
            background: #fafafa !important;
            transition: all 0.3s !important;
			max-width: 100% !important;
        }

.form-input{
    width: 15vw;
    /* max-width: 80%; */
    padding: 10px;
    border: 2px solid #ccc !important;
    border-radius: 6px;
    background-color: #fff;
    box-sizing: border-box;
    font-size: 16px;
    cursor: pointer;
}
.buttonversion input[type="date"]{
border: 2px solid #ddd !important;	
}
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #E8002D;
            background: white;
            box-shadow: 0 0 0 3px rgba(232, 0, 45, 0.1);
        }

        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }

        /* 2列レイアウト */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        /* 郵便番号ボタン */
        .zip-code-wrapper {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .zip-code-btn {
            padding: 12px 20px;
            background: #E8002D;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.3s;
        }

        .zip-code-btn:hover {
            background: #c40027;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(232, 0, 45, 0.3);
        }

        /* チェックボックス */
        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .checkbox-item input[type="checkbox"] {
            width: 20px;
            height: 10px;
            cursor: pointer;
        }

        .checkbox-item label {
            cursor: pointer;
            font-size: 15px;
        }

        /* ラジオボタン */
        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .radio-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .radio-item input[type="radio"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .radio-item label {
            cursor: pointer;
            font-size: 15px;
        }

        /* ヘルプテキスト */
        .help-text {
            font-size: 13px;
            /*color: #666;*/
            margin-top: 6px;
        }

        .help-text2{
            font-size: 13px;
            color: #666;
            margin-top: 6px;
        }

        /* 同意チェック */
        .agreement-box {
            background: #f9f9f9;
            border: 2px solid #ddd;
            border-radius: 8px;
            padding: 16px 16px 0 16px;
           
			margin: 0  auto 24px auto;
			max-width: 1100px;
        }

        .agreement-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
        }

        .agreement-item:last-child {
            margin-bottom: 0;
        }

        .agreement-item input[type="checkbox"] {
            width: 20px;
            height: 10px;
            margin-top: 2px;
            cursor: pointer;
        }

        .agreement-item label {
            font-size: 14px;
            cursor: default;
        }

        .agreement-item a {
            color: #E8002D;
            text-decoration: underline;
        }

        /* 送信ボタン */
        .submit-wrapper {
            text-align: center;
            margin: 30px auto 0 auto;
			max-width: 1100px;
        }

        .submit-wrapper input{
            text-align: center !important;
 margin: 0 auto;
        }

        .submit-btn {
            display: inline-block;
            padding: 18px 80px;
            background: linear-gradient(135deg, #E8002D 0%, #c40027 100%);
            color: white;
            font-size: 18px;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 16px rgba(232, 0, 45, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(232, 0, 45, 0.5);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        /* 注意事項 */
        .notice-box {
            background: #fffbf0;
            border: 2px solid #FFB800;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 24px;
			max-width: 1100px;
			margin: 0 auto 24px auto;
        }

        .notice-box h3 {
            font-size: 16px;
            color: #FF8C00;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .notice-box ul {
            list-style: none;
            font-size: 14px;
            color: #666;
        }

        .notice-box ul li {
            padding-left: 16px;
            margin-bottom: 6px;
            position: relative;
        }

        .notice-box ul li:before {
            content: "・";
            position: absolute;
            left: 0;
        }

.formdisplay{
	/*display: flex;*/
}

.formdisplay span{
	margin-right: 20px;
}

.formdisplay span input{
	margin-right: 10px;
	height: 10px;
	cursor: pointer;
}

.formdisplay span input[type="radio"]{
	margin-right: 10px;
width: 18px;
    height: 18px;
    cursor: pointer;
}

.formdisplay span input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
	border: 1px;
	margin-right: 10px;
	transform: scale(1) !important;
	margin-top: 1px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

span.wpcf7-list-item{
display: flex;
    align-items: center;
    margin-right: 20px;	
}

span.wpcf7-list-item input{
transform: scale(1) !important;
    margin-right: 10px;
    width: 20px;
    height: 20px;
	margin-top: 2px;
}
label{
    cursor: pointer;
    font-size: 15px;
}
.wpcf7-list-item-label{
	vertical-align: top;
}
    .agreement-item input[type="checkbox"] {
        height: 20px;
    }

        /* レスポンシブ */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 22px;
            }

            .form-section {
                padding: 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .checkbox-group {
                grid-template-columns: 1fr;
            }

            .zip-code-wrapper {
                flex-direction: column;
            }

            .zip-code-btn {
                width: 100%;
            }

            .submit-btn {
                width: 100%;
                padding: 16px 20px;
            }
        /* 注意事項 */
        .notice-box, .agreement-box, .form-section, .submit-wrapper{
			max-width: 90%;
        }
			.wpcf7-validates-as-date{
				width: 90% !important;
			}
			.span.wpcf7-list-item{
				display: block;
			}
			.wpcf7-form-control.wpcf7-submit{
				width: 80% !important;
			}
			.wpcf7-radio input{
				margin-bottom: 10px;
			}
        .agreement-item input[type="checkbox"] {
            height: 20px;
        }
        .agreement-item .wpcf7-list-item{
			margin-right: 0 !important;
        }
}