html {
    font-family: 'Noto Sans JP', sans-serif;
}

body {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    font-size:16px ;
}
.flex {
    display: flex;
   justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

/*ヘッダー*/
.header {
    padding: 27px 0;
  display: flex;
     flex-wrap: wrap;
      justify-content: space-around;
}
.header h2 {
        font-size: 36px;
    font-weight: 700;
}

/*メイン*/

.container {
display: flex;
     flex-wrap: wrap;
    justify-content:center ;
    width: 100%;
}
.title {
    width: 100%;       /* 追加：タイトルエリアを横幅いっぱいにする */
    text-align: center; /* 追加：文字を中央に寄せる */
    margin-bottom: 20px; /* 任意：画像との間に少し隙間を作る */
}
.title h3{
    font-size: 24px;
    color: #e61a1e;
    background-color: aquamarine;
    padding: 5px 10px;
    border-radius: 15px;
        display: inline-block; /* 任意：装飾などしやすくする */
}
.title h4 {
    padding: 20px 0 5px;
    line-height: 1.5;
    letter-spacing: 2px;
}
.column-2 {
    width: 48%;
}

    /*サービス*/

.service_inner {
    margin-bottom: 50px;
    position: relative;
  }

  
  .service_inner img {
  margin-bottom: 30px
}
.service_inner p {
  padding: 30px 0;
  color: blue;
}
 .header_menu li {
    justify-content:left ;
line-height: 1.6;
margin-top: 20px;

 }
 code {
    color: brown;
    background: #eee;
    padding: 2px 5px;
 }
 ol {
    list-style-type: decimal;
 }
  .column-40 {
      width: 38%;
}
.column-55 {
    width: 60%;
}


/*フッタ*/
footer {
    text-align: center;
    margin: 90px 0
}

.copyright {
    font-size: 12px;
    margin-top: 40px;
}








