body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    text-align: center;
}

header {
    background-color: #FFFFFF;
    color: black;
    padding: 0.5em;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

header img {
    max-width: 100px;
    padding-right: 10px;
    padding-left: 10px;
}
 section {
    padding: 2em;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
}

section content {
    display:block;
}

.navbar {
    background-color: #50AD50;
    overflow: hidden;
}

.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}
.button-link {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #3498db;
  color: #3498db;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button-link:hover {
  background-color: #3498db;
  color: #fff;
}
#conceptpng {
    max-height: 300px;
    height: 100%;
    width: auto;
}

#melonjpg {
    height: 200px;
}

#tomatojpg {
    height: 200px;
}

section img.logo {
    max-width: 100%;
    height: 100px
}

section img.logo.kondo {
    max-width: 100%;
    height: 70px
}
section img {
    max-width: 100%;
}

content {
    display:block;
}

 /* お知らせのコンテンツCSS */
.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 20px;
}

.whats-new {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.whats-new-content {
    padding: 20px;
    text-align: left;
}

.whats-new h2 {
    margin-top: 0;
}

footer {
    background-color: #50AD50;
    color: #FFFFFF;
    padding: 0.5em;
    position: relative;
    /* 相対位置指定 */
    margin-top: 20px;
    /* フッターとのマージンを指定 */
}

/* 画面が小さい場合のフッターの調整 */
@media screen and (max-width: 600px) {
    footer {
        position: static;
        /* スクロールしてもフッターが動かないように */
        margin-top: 0;
    }
}