/* styles.css */

/* Global */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #111;
    text-decoration: none;
}

.nav ul {
    list-style: none;
    padding: 0;
}

.nav ul li {
    display: inline;
    margin-right: 20px;
}

.nav ul li a {
    text-decoration: none;
    color: #111;
}

/* Hero */
.hero {
    background: url('https://via.placeholder.com/1600x600') center/cover no-repeat;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

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

.hero-content p {
    font-size: 20px;
}

.hero-content button {
    padding: 10px 20px;
    font-size: 18px;
    background: #ff0000;
    color: #fff;
    border: none;
    cursor: pointer;
}

.hero-content img {
    
    max-width: 100%;
    width: 90%;
    height: auto;
}

/* Sections */
.section {
    padding: 30px 0;
}

.fields .cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #f5f5f5;
    padding: 20px;
    flex: 1 1 30%;
}
  
.president {
    margin: 40px 0;
  }
  
  .president-name {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: bold;
  }
  
  .career-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .career-table th,
  .career-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #dcdcdc;
    vertical-align: top;
  }
  
  .career-table th {
    width: 20%;
    font-weight: normal;
    color: #555;
    white-space: nowrap;
  }
  
  .career-note {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
  }

/* Footer */
.footer {
    background: #222;
    color: #eee;
    text-align: center;
    padding: 20px 0;
}

.footer a {
    color: #eee;
    margin: 0 10px;
    text-decoration: none;
}






/* 三つのボックスを含むセクション */
.three-boxes {
    display: flex;
    /* 横並びにする */
    justify-content: space-between;
    /* ボックス間にスペースを均等に配置 */
    padding: 20px;
    max-width: 1000px;
}

/* 各ボックスのスタイル */
.boxfor3 {
    background-color: #f0f4f8;
    /* ボックスの背景色 */
    border-radius: 8px;
    /* 角を丸くする */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    /* 各ボックスの幅を30%に設定 */
    margin: 10px;
    /* max-width: 250px;  */
    /* ボックスの最大幅を設定 */
    text-align: left;
    /* テキストを左寄せ */
}

.boxfor3white {
    background-color: white;
    /* ボックスの背景色 */
    border-radius: 8px;
    /* 角を丸くする */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    /* 各ボックスの幅を30%に設定 */
    margin: 10px;
    /* max-width: 250px;  */
    /* ボックスの最大幅を設定 */
    text-align: left;
    /* テキストを左寄せ */
}





