h1,h2,h3,h4,h5,p,span,a{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.header-version{
    background-color: #09408b;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 20px;
}

p{
    line-height: 2.5;
}

.bold{
    font-weight: bold;
}

.hero{
    position: relative;
    width: 100%;
    height: 90svh;
    background-image: linear-gradient(180deg, rgba(145, 222, 255, 1), rgba(226, 208, 214, 1) 30%, rgba(251, 228, 210, 1) 60%, rgba(255, 255, 255, 1));
}

.hero-content{
    width: 100%;
    padding: 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
}

.hero-content h1{
    font-size: 40px;
}

.hero-content p{
    font-size: 15px;
    color: #5F6C7B;
    padding: 15px 0;
}

.hero-logo{
    width: 100px;
    margin: 0 auto;
}

.hero-action-btn-area{
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-action-btn{
    padding: 15px 25px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: bold;
    margin: 0 5px;
}

.hero-action-btn:hover{
    background-color: #ebf9ff;
    color: #053D89;
    border: solid 1px #053D89;
}

.blue-btn{
    background-color: #053D89;
    color: #fff;
}

.wb-btn{
    background-color: #fff;
    color: #053D89;
    border: solid 1px #053D89;
}

header{
    width: 80%;
    padding: 20px 0 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;

}

.head-gradation{
    background-image: linear-gradient(180deg, rgba(145, 222, 255, 1), rgba(226, 208, 214, 1) 30%, rgba(251, 228, 210, 1) 60%, rgba(255, 255, 255, 1));
}

.brand{
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand img{
    margin-right: 10px;
}

.header-menu{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-menu a{
    margin: 0 20px;
}

.content{
    width: 70%;
    margin: 0 auto;
}

table{
    width: 100%;
}

.title-area h1{
    font-size: 35px;
}

.section-bloc{
    margin: 50px 10px;
}

.textlink{
    color: #006aff;
}

.language-box{
    border-radius: 40px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

.table-box{
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    padding: 20px;
}

.table-box{
    max-width: 100%;
    display: flex;
    overflow-x: scroll;
}

.table-box table{
    min-width: 700px;
    flex-shrink: 0;
}

..table-box tr{
    text-align: left;
}

.table-box tr{
    height: 50px;
    text-align: left;
    border-bottom: solid 1px #b7b7b7;
}

.table-box::-webkit-scrollbar {
  height: 4px; /* スクロールバーの高さ */
}
 
.table-box::-webkit-scrollbar-thumb {
  background: #7d7d7d; /* ツマミの色 */
  border-radius: 7px; /* ツマミ両端の丸み */
}
 
.table-box::-webkit-scrollbar-track {
  background: #e7e7e7; /* トラックの色 */
  border-radius: 7px; /* トラック両端の丸み */
}

.end-point-table-model{
    width: 10%;
}

.end-point-table-detail{
    width: 45%;
}

.end-point-table-url{
    width: 45%;
}

.rbody-key{
    width: 30%;
}

.rbody-detail{
    width: 60%;
}

.rbody-biko{
    width: 10%;
}

@media(max-width:450px){
    .hero-action-btn-area{
        text-align: center;
        flex-wrap: wrap;
    }

    header{
        width: 100%;
    }

    .content{
    width: 90%;
    margin: 0 auto;
    }
}













/* Form styles */
.form-container {
    width: 100%;
}

.form-section {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fafafa;
}

.form-group {
    margin-bottom: 20px;
}

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

input, select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    transition: border-color 0.2s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.description-text {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    line-height: 1.4;
}

/* Selection container */
.selection-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.selection-container select {
    flex: 1;
    max-width: 300px;
}

/* Buttons */
.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-add {
    background-color: #28a745;
    color: white;
}

.btn-add:hover {
    background-color: #218838;
}

.btn-remove {
    background-color: #dc3545;
    color: white;
}

.btn-remove:hover {
    background-color: #c82333;
}

.btn-generate {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
}

.btn-generate:hover {
    background-color: #0056b3;
}

.btn-copy {
    background-color: #6c757d;
    color: white;
    margin-top: 10px;
}

.btn-copy:hover {
    background-color: #5a6268;
}

.button-container {
    text-align: center;
    margin: 30px 0;
}

/* Selected items */
.selected-list {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 80px;
    padding: 15px;
    margin-bottom: 15px;
}

.selected-item {
    display: inline-block;
    background-color: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    margin: 3px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #dee2e6;
}

.selected-item:hover {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* Result display */
.result-container {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.result-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.result-text {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    white-space: pre-wrap;
    overflow-x: auto;
    border: 1px solid #4a5568;
    max-height: 400px;
    overflow-y: auto;
}

/* Messages */
.warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 20px;
    }
    
    .main-title {
        font-size: 2em;
    }
    
    .selection-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .selection-container select {
        max-width: none;
        margin-bottom: 10px;
    }
    
    .form-section {
        padding: 15px;
    }
}

/* Table-like layout for form groups */
.form-group {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    align-items: start;
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 0;
    padding-top: 10px;
}

.form-group input,
.form-group select {
    margin-bottom: 0;
}

.form-group .description-text {
    grid-column: 2;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .form-group {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .form-group label {
        padding-top: 0;
        margin-bottom: 5px;
    }
    
    .form-group .description-text {
        grid-column: 1;
    }
}