.coporate-info a:hover {
  color: #4380DF;
}

.member {
  text-align: center;
  margin: auto;
  margin-bottom: 80px;
  width: 100%;
  word-break: auto-phrase;
}

.member_name {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 16px;
}

.border-radius {
  border-radius: 10px;
}

.yakuin_img {
  width: 400px;
  height: auto;
}

/* レスポンシブ */

@media only screen and (min-width: 960px){
  .member {
    width: 80%;
    max-width: 920px;
  }
}

@media only screen and (max-width: 584px){
  .member {
    font-size: 14px;
  }
}

         /* コンテナ */
        .greeting-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        /* ヘッダー部分 */
        .greeting-header {
            padding: 60px 40px 40px;
            border-bottom: 2px solid #e0e0e0;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #0066cc;
        }

        .section-subtitle {
            font-size: 14px;
            color: #666;
            letter-spacing: 2px;
            margin-top: 10px;
        }

        /* メインコンテンツ */
        .greeting-content {
            padding: 60px 40px 0;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 80px;
            align-items: start;
        }

        /* 代表者情報 */
        .president-info {
            text-align: center;
        }

        .president-photo {
            width: 280px;
            height: 380px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 25px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .president-name {
    font-size: 16px;
        }

        .president-title {
    font-size: 16px;
        }

        /* メッセージ部分 */
        .message-area {
            padding-top: 10px;
        }

        .main-message {
          width: auto;
            font-size: 28px;
            font-weight: 700;
            color: #0066cc;
            line-height: 1.4;
            margin-bottom: 30px;
            position: relative;
            border-bottom: 1px solid black;
        }

        .president-message {
          padding-bottom: 20px;
          word-break: auto-phrase;
        }
/* 
        .main-message::before {
            content: '"';
            position: absolute;
            left: -10px;
            top: -10px;
            font-size: 60px;
            color: #e0e0e0;
            font-family: Georgia, serif;
        } */

        .message-body {
            font-size: 16px;
            line-height: 2;
            color: #333;
            margin-bottom: 25px;
            text-align: justify;
        }

        .message-body:first-of-type {
            font-size: 17px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 30px;
        }

        /* 経歴セクション */
        .career-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid #e0e0e0;
        }

        .career-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
        }

        .career-title::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 24px;
            background: #0066cc;
            margin-right: 12px;
        }

        .career-list {
            list-style: none;
        }

        .career-item {
            display: flex;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.3s ease;
        }

        .career-item:hover {
            background: #f8f8f8;
            padding-left: 10px;
        }

        .career-year {
            flex-shrink: 0;
            width: 100px;
            font-weight: 700;
            color: #0066cc;
            font-size: 16px;
        }

        .career-content {
            flex: 1;
            color: #333;
            font-size: 15px;
            line-height: 1.6;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .greeting-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .president-info {
                margin-bottom: 20px;
            }

            .president-photo {
                width: 100%;
                max-width: 400px;
                height: 250px;
                border-radius: 8px;
            }

            .main-message {
                font-size: 22px;
                padding-left: 15px;
            }

            .president-message {
                text-align: center;
            }

            .career-item {
                flex-direction: column;
            }

            .career-year {
                margin-bottom: 10px;
            }
        }