@import url(sanitize.css);
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@900&display=swap');


h1 {
    font-family: 'M PLUS 1p', sans-serif;
    margin: 0;
    font-size: 36px;
    /* font-weight: 50px; */
    text-align: center;
    color: #2c3e50;
}
.tfl {
    /*background-color: #E35A4D;*/
    padding: 0 40px;
    font-size:  100%;
    color: #255;
    text-align: right;
}
.sub_title {
    font-size: 21px;
    font-weight: normal;
    text-align: center;
}
.link {
    font-size: 16px;
    text-align: center;
    color: #fff;
    background: linear-gradient(90deg, #373B44, #4286f4); /*グラデーション*/
    padding: 10px 0;
    box-shadow: 0 0 4px rgba(39, 39, 39, 0.4);
}
menu {
    list-style: none;
    padding:0;
    margin:0;
}
.link li::before{
    content: "●";
    color: #FFB74D;
    /* font-size: 12px; */
    padding: 0 4px 0 16px;
}
.link li {
    display: inline-block;
    
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    color: #90a4ae;
}
ul{
    margin:0;
    padding: 0;
    list-style: none;
}
body {
    font-family: "Helvetica", "Arial", sans-serif;
    line-height: 1.8;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

footer{
    background: linear-gradient(90deg, #373B44, #4286f4); /*グラデーション*/
    color: white;
    text-align: center;
    padding: 10px;
}
ul.footer-menu li {
    display: inline;
}
.container {
    background-color: #fff;
}

.header-container {
    display: flex;
    align-items: center; /* 縦位置を中央揃え */
    justify-content: center; /* 全体を中央揃え */
    gap: 12px; /* ロゴとタイトルの間にスペース */
}

.header-container img {
    height: 36px; /* タイトルのフォントサイズと同じにする */
    width: auto;
}

.title {
    font-size: 36px;
    margin: 0;
    font-family: 'M PLUS 1p', sans-serif;
}

a.logo img {
  height: 40px;        /* ロゴの高さを固定 */
  width: auto;         /* アスペクト比維持 */
  display: block;      /* 画像下の余白除去 */
}

a.logo {
  display: inline-block;
  height: 40px;        /* imgの高さに合わせる */
}