@charset "utf-8";

/* ------------------------------ reset css */

/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
 html, body, div, span, applet, object, iframe,
 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
 a, abbr, acronym, address, big, cite, code,
 del, dfn, em, img, ins, kbd, q, s, samp,
 small, strike, strong, sub, sup, tt, var,
 b, u, i, center,
 dl, dt, dd, ol, ul, li,
 fieldset, form, label, legend,
 table, caption, tbody, tfoot, thead, tr, th, td,
 article, aside, canvas, details, embed,
 figure, figcaption, footer, header, hgroup,
 menu, nav, output, ruby, section, summary,
 time, mark, audio, video {
     margin: 0;
     padding: 0;
     border: 0;
     font-size: 100%;
     font: inherit;
     vertical-align: baseline;
 }
 /* HTML5 display-role reset for older browsers */
* {
    font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

body {
    background-color: #e4f7f0;
    color: #666666;
    margin: 0;
    padding: 0;
}
header {
    background-color: #3abf9a;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-size: 42px;
    margin-bottom: 10px;
}

nav {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-style: normal;
    background-color: #3abf9a;
    color: #fff;
    padding: 10px;
    text-align: center;
}
nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}


.section-title {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 10px;
}

.section-title a {
    color: #2a8f7d; /* 強調テキストの色を赤に */
    text-decoration: none;
}

.section-title a:hover {
    text-decoration: underline; /* ホバー時に下線を追加 */
}


.section-content {
    margin-bottom: 20px;
    line-height: 1.5; /* 行間を調整 */
}



#meeting .section-title {
    color: #2a8f7d; /* 強調テキストの色を赤に */
}

#meeting .section-content {
    margin-bottom: 10px; /* meetingセクションの行間をさらに狭くする */
}

#meeting {
    background-color: #a3e6d8; /* 背景色を淡い黄色に変更 */
    padding: 20px;
    border-radius: 15px; /* 角を丸める */
    border: 2px solid #2a8f7d; /* 枠線を追加 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#meeting .highlight {
    font-weight: bold;
    color: #2a8f7d; /* 強調テキストの色を赤に */
}


footer {
    background-color: #3abf9a;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.social-links {
    margin-top: 10px;
}
.social-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}


.section-title {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    color: #2a8f7d; /* 強調テキストの色を赤に */
}

.main-image {
    width: 50%;
}