@CHARSET "UTF-8";

/* スマホ用のCSSはメディアクエリの外に記述する */
html {
    font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: .05em;
    color: #262626;
}
a.logo img {
    opacity: 1;
    transition: opacity 0.3s;
}
a.logo:hover img {
    opacity: 0.7;
}
#header {
    border-bottom: solid 1px #ccc;
}
#contentOuter {
    display: flex;
    gap: 40px;
}
#menu {
    background-color: #eee;
}
#menu li a {
    display: block;
    width: 240px;
    line-height: 60px;
    padding: 0 40px;
    text-decoration: none;
    color: #262626;
    border-bottom: solid 1px #ccc;
    border-right:solid 1px #ccc;
}
#menu li a:hover {
    color: #666;
    background-color: #f9f9f9;
}
#contents {
    margin-top: 40px;
    width: calc(100% - 321px);
}
.title {
    border-left: solid 5px rgba(219, 112, 147, 1);
    background-color: rgba(219, 112, 147, 0.1);
    padding: 10px 20px;
}
