#main {
    margin-left: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

.yamane-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.yamane-title {
    color: #3d5c2c;
   margin-top:50px;
    border-bottom: 2px solid #4c7437;
    padding-bottom: 10px;
}

.yamane-subtitle {
    color: #4c7437;
    margin-top: 20px;
}

.yamane-list {
    background-color: #efe9dd;
    padding: 20px 20px 20px 40px;
    border-radius: 8px;
    border-left: 5px solid #4c7437;
    margin-bottom: 20px;
}

.yamane-list ul, .yamane-list ol {
    padding-left: 20px;
}

.yamane-list li {
    margin-bottom: 15px;
    position: relative;
}

.yamane-list > li::before {
    content: "•";
    color: #4c7437;
    font-size: 1.2em;
    position: absolute;
    left: -20px;
    top: -2px;
}

.yamane-list > li > ul > li::before {
    content: "◦";
    color: #5a8a42;
    font-size: 1.1em;
    left: -18px;
    top: 0;
}

.yamane-list > li > ol {
    counter-reset: item;
}

.yamane-list > li > ol > li {
    counter-increment: item;
}

.yamane-list > li > ol > li::before {
    content: counter(item) ".";
    color: #4c7437;
    font-weight: bold;
    left: -20px;
    top: 0;
}

.text-s {
    font-size: 0.9em;
    color: #5a8a42;
}

.yamane-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.yamane-grid-item {
    background-color: #efe9dd;
    padding: 15px;
    border-radius: 8px;
}

.f-rightimg {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.f-leftimg {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.hilight {
    background-color: #e6dfd2;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.hilight a {
    color: #3d5c2c;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.hilight img {
    margin-right: 10px;
}


.moshikomi {
	margin: 0px 0px 15px 0px;
  padding: 10px 20px;
  font-size: 100%;
  background-color: #eff2d1;
  border-radius: 8px;
}




table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #4c7437;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #e0e8d5;
    width:5em;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.contact {
    background-color: #e0e8d5;
    padding: 20px;
    border-radius: 5px;
}

a {
    color: #4c7437;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.introduction {
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}

.museum-activities article {
    border-bottom: 1px solid #e0e8d5;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.museum-activities article:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.reservation ul, .general-info ul {
    list-style-type: none;
    padding-left: 0;
}

.reservation li, .general-info li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.reservation li::before, .general-info li::before {
    content: "•";
    color: #4c7437;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}