.google-map {
    display: flex;
    justify-content: center;
    margin-top: 20px; /* 必要に応じて調整 */
    margin-bottom: 20px; /* 必要に応じて調整 */
}
.widget-title {
    font-size: 24px; /* NEWSのサイズ */
    font-weight: bold; /* NEWSを太字に */
    color: #000; /* NEWSの文字色 */
    border-left: 4px solid #00bcd4; /* 左のラインの色 */
    padding-left: 10px; /* テキストとの間隔 */
}

. subSection-title span {
    font-size: 16px; /* （最新の記事）のサイズ */
    color: #888; /* グレー色 */
    font-weight: normal; /* 通常の太さ */
    margin-left: 5px; /* NEWSと（最新の記事）の間隔 */
}

@media (max-width: 768px) {
    div {
        flex-direction: column;
        align-items: center;
    }

    iframe {
        width: 100%;
    }
}

.page-content {
    padding: 0 !important;
    margin: 0 auto !important;
}

/* フォーム全体を中央に配置 */
.wpcf7 {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 入力フィールドのスタイル */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: border 0.3s ease-in-out;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}


.wpcf7 input[type="submit"]:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.wpcf7 input[type="submit"]:active {
    transform: scale(0.95);
}

/* フォーム内のラベルスタイル */
.wpcf7 label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* アニメーションを追加（マウスオーバー時の動き） */
.wpcf7 input[type="submit"]::after {
    content: '→';
    position: absolute;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(-10px);
}

.wpcf7 input[type="submit"]:hover::after {
    opacity: 1;
    transform: translateX(0);
}


/* 送信ボタンを横長にしてセンター配置 */
.wpcf7 input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    width: 100%;
    max-width: 300px; /* 横幅を制限 */
    padding: 15px 0; /* 上下の余白を確保 */
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;
    margin: 20px auto; /* 上下の余白とセンター配置 */
    display: block;
    transition: transform 0.2s ease-in-out, background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wpcf7 input[type="submit"]:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.wpcf7 input[type="submit"]:active {
    transform: scale(0.95);
}


