@charset "UTF-8";

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Modern Design Variables */
:root {
    --primary-color: #1890FF;
    --primary-hover: #40a9ff;
    --success-color: #52c41a;
    --error-color: #ff4d4f;
    --text-primary: rgba(0, 0, 0, 0.85);
    --text-secondary: rgba(0, 0, 0, 0.45);
    --text-placeholder: rgba(0, 0, 0, 0.25);
    --border-color: #d9d9d9;
    --border-radius: 6px;
    --background-white: #ffffff;
    --shadow-light: 0px 2px 0px rgba(0, 0, 0, 0.04);
    --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* Modern Container Styles */
body {
    font-family: var(--font-family);
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Title Outside Container */
.page-title-wrapper {
    width: 100%;
    text-align: center;
    padding: 30px 0 20px 0;
}

.page-title-main {
    font-size: 36px;
    color: rgb(0, 97, 177);
    margin: 0;
    font-family: Inter, sans-serif;
    font-weight: 700;
}

.modern-container {
    width: 100%;
    max-width: 1136px;
    margin: 20px auto;
    padding: 32px 24px;
    background: var(--background-white);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Modern Header Styles */
.modern-header {
    width: 512px;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.step-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.step-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    position: relative;
}

.step-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    position: relative;
    z-index: 1;
}

.line-svg {
    width: auto;
    height: 2px;
    max-width: 118px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-item.completed .step-circle {
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-image: url('/images/steps/Check.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}

.step-item.completed .step-circle {
    font-size: 0;
    color: transparent;
}

.step-item.current .step-circle {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
}

.step-item .step-circle {
    border: 1px solid rgba(0, 0, 0, 0.25);
    color: rgba(0, 0, 0, 0.25);
    background: var(--background-white);
}

.step-text {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    white-space: nowrap;
    margin-left: 4px;
}

.step-item.completed .step-text {
    color: var(--text-primary);
}

.step-item.current .step-text {
    color: var(--text-secondary);
}

/* Modern Main Styles */
.modern-main {
    width: 100%;
    max-width: 512px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.form-container {
    width: 100%;
    max-width: 500px;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Modern Form Styles */
.form-group {
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.form-label {
    position: relative;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: var(--error-color);
    font-size: 14px;
    font-weight: 400;
}

.input-row {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}

.input-row .input-wrapper {
    flex: 1;
    max-width: none;
}

.input-wrapper {
    width: 100%;
    max-width: 400px;
    background: var(--background-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.form-input {
    flex: 1;
    padding: 5px 12px;
    background: var(--background-white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-primary);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-placeholder);
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.help-text {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 4px;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--background-white);
    position: relative;
}

.radio-item input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
}

.radio-item input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-text {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

/* Date Selection Styles */
.date-row {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.date-group {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.form-select {
    flex: 1;
    height: 32px;
    padding: 4px 12px;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-placeholder);
    outline: none;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.date-label {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

/* Textarea Styles */
.form-textarea {
    width: 100%;
    max-width: 400px;
    padding: 5px 12px;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-primary);
    resize: vertical;
    outline: none;
}

.form-textarea::placeholder {
    color: var(--text-placeholder);
}

.form-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

/* dl */
#all dl {
    display: block;
    margin: 0 auto;
    overflow: hidden;
    border-bottom: 1px dotted rgb(121, 148, 170);
}

/* dt */
#all dl dt {
    display: block;
    float: left;
    width: 40%;
    padding: 1rem 0rem 1rem 2rem;
}

#all dl dt h2 {
    display: block;
    font-size: 22px;
    font-weight: 400;
    float: left;
    padding-left: 5px;
    margin-right: 15px;
    color: rgb(0, 63, 114);
}

#all dl dt span {
    display: block;
    background: #ff0000;
    float: right;
    font-size: 11px;
    line-height: 1;
    display: inline-block;
    color: #FFFFFF;
    border-radius: 5px;
    padding: 3px 5px 3px 5px;
    margin: 10px 15px 0 0px;
}

/* dd */
#all dl dd {
    display: inline-block;
    margin-right: 0;
    width: 60%;
    float: right;
    overflow: visible;
    padding: 1rem 0rem 1rem 2rem;
}

/* input */
.name li:first-child{
    margin-right: 10px;
}
.name1 li:first-child{
    margin-right: 10px;
}
.input {
    display: block;
    padding: 0.3rem 0.7rem;
    /* margin-right: 10px; */
    width: 200px;
    height: 45px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #353535;
    background-color: rgba(0, 64, 117, 0.048);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* input01 */
.input01 {
    width: 410px;
}

/* year */
.year,
.month,
.day {
    display: block;
    padding: 0.3rem 0.7rem;
    margin-right: 10px;
    width: 102px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: rgba(0, 64, 117, 0.048);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* hopetimeinput */
.hopetimeinp {
    display: block;
    padding: 0.3rem 0.7rem;
    margin-right: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #353535;
    background-color: rgba(0, 64, 117, 0.048);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.inpy,
.inpmo,
.inpd {
    width: 102px;
}

.inph,
.inpm {
    width: 172px;
}

/* htext */
.htext {
    font-size: 18px;
    margin-right: 10px;
    text-align: center;
    color: rgb(121, 148, 170);
}

/* radio */

/* Privacy Section Styles */
.privacy-section {
    width: 512px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.privacy-title {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    text-align: center;
}

.privacy-description {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin: 0;
}

.privacy-content {
	width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
}

.privacy-text {
	width: 100%;
    height: 144px;
    padding: 5px 12px;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    overflow-y: auto;
}

/* Checkbox Styles */
.checkbox-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.checkbox-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    position: relative;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 9.56px;
    height: 7.55px;
    position: absolute;
    top: 4px;
    left: 3px;
    background: var(--background-white);
    -webkit-mask: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m13.854 3.646-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") no-repeat 50% 50%;
    mask: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m13.854 3.646-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") no-repeat 50% 50%;
}

.checkbox-text {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

/* Submit Button Styles */
.submit-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.submit-button {
    min-width: 120px;
    padding: 12px 24px;
    background: var(--primary-color);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
	text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.submit-button:hover:not(:disabled) {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.submit-button:disabled {
    background: #f5f5f5;
    border-color: var(--border-color);
    color: rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
}

/* .submit:hover {
    color: #fff;
    background-color: rgb(0, 97, 177);
} */

/* footer */
.footer {
    margin: 40px auto 20px auto;
    padding: 17px 0;
    text-align: center;
    color: #ffffff;
    background-color: #000000;
    width: 100%;
}

.ftr {

    position: fixed;
    width: 100%;
    bottom: 0px;
}


/* confirm_main */
.confirm_main dl dt{
    color: rgb(0, 63, 114);
}

/* Error Message Styles */
.input-error {
	font-size: 14px;
    color: var(--error-color);
    margin-top: 4px;
    display: block;
}

.mailRepeat {
    font-size: 12px;
    color: var(--error-color);
    margin-top: 4px;
}


/* 
-------------------------------------
login-page

*/

#lgn-all{
    margin: 0;
    padding: 0;
    display: block;
}

.lgn-main{
    display: block;
    margin: 20vh auto 0 auto;
    text-align: center;
}

/* h1 */
.lgn-title{
    display: block;
    font-size: 40px;
    margin: 40px 0 80px 0;
    color:rgb(0, 63, 114);
}

/* input */
.lgn-input{
	text-align: center;
    outline-style: none;
    border: 0px;
    padding: 10px;
    font-size: 22px;
    font-weight: 400;
    width: 400px;
    color: rgb(70, 70, 70);
    transition: 0.5s;
    border-bottom: 1px solid #aaaaaa;
}
.lgn-input:hover{
    font-size: 24px;
}
.lgn-error{
    /* margin-top: 10px; */
    display: block;
    margin: 0 auto;
    /* text-align: left; */
    width: 400px;
}
.lgn-in{
    /* margin-bottom: 40px; */
    margin: 0 auto;
    margin-bottom: 40px;
    display: block;
    text-align: center;
}

.lgn-tip{
	font-size: 12px;
    color: #ff5858;
}

/* btn */
.lgn-btn{
    margin-top: 60px;
    margin-bottom: 10px;
}

/* a */
.register-map{
	display: inline-block;
    color: rgb(0, 63, 114);
    font-size: 12px;
    transition: 0.5s;
    margin-top: 20px;
    /* text-decoration: none; */
}

.mailRepeat{
	font-size: 12px;
	color: rgb(255, 0, 0);
}

/* 
login-page
-------------------------------------
*/

/* 
    syu
    0603
    register-page
    レスポンシブ追加
*/

/* Modern Responsive Design */
@media screen and (max-width: 768px) {
    body {
        padding: 20px 0;
    }

    .page-title-wrapper {
        padding: 20px 0 15px 0;
    }

    .modern-container {
        max-width: 100%;
        padding: 24px 16px;
        margin: 10px;
        border-radius: 12px;
    }

    .modern-header {
        width: 100%;
        max-width: 400px;
    }

    .modern-main {
        max-width: 100%;
    }

    .form-container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }

    .input-wrapper,
    .input-row,
    .date-row,
    .form-textarea {
        max-width: 100%;
    }

    .privacy-section {
        width: 100%;
    }

    .input-row {
        flex-direction: column;
        gap: 8px;
    }

    .date-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .date-group {
        min-width: 120px;
    }

    .step-container {
        gap: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-item {
        gap: 6px;
    }

    .step-text {
        font-size: 12px;
        margin-left: 2px;
    }

    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .step-item.completed .step-circle {
        background: white;
        border: 1px solid var(--primary-color);
        background-size: 14px 14px;
        font-size: 0;
        color: transparent;
    }

    .line-svg {
        max-width: 80px;
    }

    .step-line {
        margin: 0 4px;
    }

    .page-title-wrapper {
        padding: 30px 0 15px 0;
    }

    .page-title-main {
        font-size: 28px;
        font-weight: 700;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding: 15px 0;
    }

    .page-title-wrapper {
        padding: 15px 0 10px 0;
    }

    .modern-container {
        padding: 20px 12px;
        margin: 8px;
    }

    .form-container {
        padding: 0 12px;
    }

    .radio-group {
        gap: 16px;
    }

    .step-item {
        gap: 4px;
    }

    .step-text {
        font-size: 11px;
        margin-left: 1px;
    }

    .step-circle {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .step-item.completed .step-circle {
        background: white;
        border: 1px solid var(--primary-color);
        background-size: 12px 12px;
        font-size: 0;
        color: transparent;
    }

    .line-svg {
        max-width: 60px;
    }

    .step-line {
        margin: 0 2px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input, .form-select, .form-textarea {
        font-size: 13px;
        padding: 4px 8px;
    }

    .date-group {
        min-width: 100px;
    }

    .privacy-text {
        height: 120px;
        font-size: 13px;
    }

    .submit-button {
        min-width: 100px;
        padding: 8px 16px;
        font-size: 14px;
    }

    .footer {
        font-size: 12px;
    }

    .page-title-wrapper {
        padding: 20px 0 10px 0;
    }

    .page-title-main {
        font-size: 24px;
        font-weight: 700;
    }

    .radio-group {
        gap: 12px;
    }

    .radio-text {
        font-size: 13px;
    }
}

/* max:375px */
@media screen and (max-width: 375px) {
    
    .step li{
        font-size: 12px;
    }
    .header h1{
        font-size: 24px;
    }
    #all dl dt h2 {
        font-size: 16px;
    }
    
    /* 0615追加 */
    .lgn-title{
        font-size: 30px;
    }
    .submit-lgn{
        font-size: 16px;
        padding: 0.5rem 3rem;
    }
    .lgn-input{
        width: 250px;
        font-size: 14px;
    }
    /*  */
    
    .input{
        width: 140px;
    }
    .input01{
        width: 290px;
    }
    .year,.inpy{
        width: 80px;
        font-size: 12px;
    }
    .month, .day, .inpmo, .inpd{
        width: 60px;
        font-size: 12px;
    }
    .inpy, .inpmo, .inpd{
        margin-bottom: 10px;
    }
    
    .inph, .inpm {
        /* margin-top: 20px; */
        width: 120px;
        font-size: 12px;
    }
    .htext{
        font-size: 12px;
    }
    .tips{
        width: 300px;
    }
    .textarea{
        font-size: 12px;
    }
    .contentrsp{
        width: 350px;
    }
    .radiorsp{
        font-size: 12px;
        margin-left: 40px;
    }
}

/* max:320px */
@media screen and (max-width: 320px) {
    
    .header h1{
        font-size: 20px;
    }
    
    /* 0615追加 */
    .lgn-title{
        font-size: 26px;
    }
    .submit-lgn{
        font-size: 14px;
        padding: 0.4rem 2.5rem;
    }
    .lgn-input{
        width: 230px;
        font-size: 14px;
    }
    /*  */

    #all dl dt{
        padding: 1rem 0 0 0.5rem;
    }
    .contentrsp{
        width: 300px;


    }
}

/* ============ Completeページ専用スタイル ============ */

.complete-main .form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    flex-direction: column;
}

.complete-content {
    text-align: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.complete-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.complete-message {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Completeページ用ボタンセクション */
.complete-main .submit-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .complete-title {
        font-size: 24px;
    }
    
    .complete-message {
        font-size: 16px;
    }
    
    .complete-main .form-container {
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .complete-title {
        font-size: 20px;
    }
    
    .complete-message {
        font-size: 14px;
    }
    
    .submit-button {
        width: 100%;
        max-width: 280px;
        white-space: nowrap;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============ 確認ページ専用スタイル ============ */


/* 横向き確認行のレイアウト */
.confirm-row {
    display: flex;
    margin-bottom: 16px;
    padding: 12px 0;
}

.confirm-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 16px;
    margin-right: 12px;
    min-width: 120px;
    flex-shrink: 0;
}

.confirm-value {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    flex: 1;
}

.button-form {
    display: inline-block;
    margin: 0;
}

.submit-button.secondary {
    background-color: var(--background-white);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    font-size: 16px;
    padding: 12px 32px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-family);
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.submit-button.secondary:hover {
    background-color: #f5f5f5;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.submit-button.primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 16px;
    min-width: 120px;
    padding: 12px 32px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-family);
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.submit-button.primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
}

/* 確認ページ用ボタンセクション */
.confirm-main .submit-section {
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .confirm-main .submit-section {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 30px;
    }
    
    .submit-button {
        width: 100%;
        max-width: 280px;
        white-space: nowrap;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .confirm-value {
        font-size: 14px;
    }
}
