/* コンテンツ部分のロゴと見出しブロックのスタイル*/
.inquiry-content-main-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.inquiry-main-logo-content {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

/* コンテンツ部分の見出しのスタイル */
.content-title {
    font-size: 24px;
    line-height: 36px;
    font-weight: bold;
    color: #505050;
    text-align: center;
}

/* リンク一覧のコンテナのスタイル */
.inquiry-container {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 40px;
}

/* 個々のお問い合わせ項目のスタイル*/
.inquiry-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.inquiry-item a, .inquiry-item .email-display {
    font-size: 20px;
    color: #0056b3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 2em;
    margin-left: 0 !important;
}

.inquiry-item a {
    text-decoration: underline;
    color: #2868C8;
}

.inquiry-item .email-display {
    font-size: 20px;
    color: #2868C8;
    text-decoration: underline;
    padding-left: 2em;
}

.inquiry-item a:hover {
    color: #588cff;
}

.copy-button {
    margin-left: 15px;
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    background-color: #4d94ff;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease;
}
.copy-button:hover {
    background-color: #6a9fd6;
}
.copy-button:active {
    transform: scale(0.98);
}
.copy-button:disabled {
    background-color: #28a745;
    color: white;
    cursor: default;
    opacity: 1;
}