@charset "UTF-8";

*, *::before, *::after {
    box-sizing: border-box; 
}

body {
    background-color: #f4f6f9; 
    padding: 40px 20px;
    /* display: flex;
    justify-content: center; */
    margin: 0; 
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px); 
    transition: opacity 0.8s ease, transform 0.8s ease; 
    will-change: opacity, transform;
}

.fade-in-up.is-show {
    opacity: 1;
    transform: translateY(0); 
}

.mv-inner-wrap {
	z-index: 10;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.mv-breadcrumb {
	width: 100%;
	text-align: left;
	padding: 20px 0;
	font-size: 11px;
	color: #666;
	font-family: "Helvetica Neue", Arial, sans-serif;
}

.mv-breadcrumb a {
	color: #333;
	text-decoration: none;
}

.container-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-title {
    font-size: 24px;
    font-weight: bold;
    color: #e91713;
    margin-bottom: 24px;
    position: relative;
    padding-left: 12px;
}

.contact-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background-color: #e91713;
    border-radius: 2px;
}

.shaken-flow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    width: 100%;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: bold;
    color: #64748b; 
}

.flow-num {
    width: 28px;
    height: 28px;
    background-color: #cbd5e1; 
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.flow-line {
    flex: 1;
    max-width: 120px; 
    height: 1px;
    border-top: 2px dashed #cbd5e1;
}

.flow-step.is-active {
    color: #e91713; 
}

.flow-step.is-active .flow-num {
    background-color: #e91713; 
}

.shaken-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 24px;
}

.shaken-summary-box {
    background: #e6f4ff; 
    border: 1px solid #bae7ff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.summary-item {
    font-size: 15px;
    color: #e91713; 
}

.summary-item strong {
    color: #4a5568;
    margin-right: 12px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 32px;
    width: 100%;
}

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

.form-group-row {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0; 
    margin-bottom: 0;
    width: 100%;
}

.form-group-row .form-label {
    width: 300px;
    flex-shrink: 0;
    padding-top: 10px; 
    margin-bottom: 0;
}

.form-group-row .form-content-area {
    flex-grow: 1;
    width: 100%;
}

.grid-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding-top: 8px;
}

.grid-option-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.label-required {
    background: #ef4444; 
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.label-optional {
    background: #94a3b8;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.form-limit-note {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
    letter-spacing: 0.02em;
    display: block;
}

.form-control {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    color: #0f172a;
    background-color: #fff;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #e91713; 
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
}

.caution-box {
    background-color: #fff7ed;
    border: 1px solid #ffedd5;
    border-left: 4px solid #ea580c;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.caution-box-title { 
    font-size: 14px; 
    font-weight: bold; 
    color: #c2410c;
    margin-bottom: 6px; 
}

.caution-box-list {
    margin: 0; 
    padding-left: 18px; 
    font-size: 13px; 
    color: #9a3412; 
    line-height: 1.6; 
}


.phone-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-inputs .form-control {
    text-align: center;
}

.privacy-box {
    width: 100%;
    height: 120px;
    border: 1px solid #cbd5e1;
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    color: #475569;
    overflow-y: auto;
    line-height: 1.6;
}

.checkbox-group {
    margin-top: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #0f172a;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e91713; 
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #0f172a;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #e91713; 
}

.form-actions {
    margin-top: 40px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    width: 100%;
}

.shaken-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #cbd5e1;
    background: #fff;
    cursor: pointer;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    color: #475569;
    transition: all 0.2s;
}

.shaken-btn:hover {
    background: #f1f5f9;
}

.btn-submit {
    background: #e91713; 
    color: #fff;
    border: none;
    padding: 12px 36px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #f9bebc; 
}

.confirm-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.confirm-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.confirm-table th {
    width: 250px;
    text-align: left;
    padding: 16px 8px;
    font-size: 15px;
    color: #475569;
    font-weight: bold;
    vertical-align: top;
}

.confirm-table td {
    padding: 16px 8px;
    font-size: 15px;
    color: #0f172a;
    line-height: 1.6;
}

.section-divider {
    font-size: 16px;
    font-weight: bold;
    color: #e91713;
    padding-bottom: 8px;
    margin: 40px 0 16px 0;
    border-bottom: 2px solid #fff5f5;
}

.section-divider:first-of-type {
    margin-top: 0;
}

.complete-container {
    text-align: center;
    padding: 40px 20px;
}

.complete-icon {
    font-size: 64px;
    color: #e91713; 
    margin-bottom: 24px;
}

.complete-title {
    font-size: 22px;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 16px;
}

.complete-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 32px;
}

.caution-box {
    background-color: #fff7ed;
    border: 1px solid #ffedd5;
    border-left: 4px solid #ea580c;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.caution-box-title { 
    font-size: 14px; 
    font-weight: bold; 
    color: #c2410c; 
    margin-bottom: 6px; 
}

.caution-box-list { 
    margin: 0; 
    padding-left: 18px; 
    font-size: 13px; 
    color: #9a3412; 
    line-height: 1.6; 
}

.info-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    max-width: 600px;
    margin: 0 auto 40px auto;
    text-align: left;
    font-size: 14px;
    color: #64748b;
}

.menu-select-box {
    background-color: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.menu-select-title {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.menu-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 12px;
    background-color: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    transition: all 0.2s;
}

.menu-radio-label:hover {
    background-color: #f1f5f9;
}

.menu-radio-label input[type="radio"]:checked + span {
    color: #e68a00;
}

