
/* css/designB.css */

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header {
    text-align: center;
    padding: 50px 0 20px 0;
    background-color: #005f99;
    color: #fff;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
}
header p {
    font-size: 1.2em;
    margin-top: 10px;
}
section {
    margin-bottom: 40px;
}
section h2 {
    color: #005f99;
    border-bottom: 2px solid #005f99;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
section h3 {
    color: #333;
    margin-top: 30px;
}
p {
    margin-bottom: 20px;
}

/*　画像の出し方と文字の囲い方　*/
.inline-image {
float: left;         /* 画像を左に寄せる */
margin-right: 20px;  /* 画像とテキストの間に余白を作る */
max-width: 300px;    /* 画像サイズの最大幅を指定(お好みで) */
}

/* 強調部分のスタイル */
em {
    font-style: normal;
    background-color: #fffae6;
    color: #d35400;
    font-weight: bold;
    padding: 0 4px;
    border-radius: 4px;
}

ul {
    list-style: disc inside;
    margin-bottom: 20px;
}
.highlight {
    background-color: #e0f7fa;
    padding: 10px;
    border-left: 4px solid #005f99;
    margin-bottom: 20px;
}
.consulting {
    background-color: #fffbf0;
    padding: 30px;
    border: 2px solid #ffa500;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}
.consulting h2 {
    color: #ffa500;
    border-bottom: 2px solid #ffa500;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.consulting p {
    font-size: 1.1em;
    margin-bottom: 20px;
}
.consulting .catchphrase {
    background-color: #ffe5b4;
    padding: 15px;
    border-left: 5px solid #ffa500;
    font-size: 1.5em;
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    color: #ffa500;
    border-radius: 4px;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #005f99;
    color: #fff;
}
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    header p {
        font-size: 1em;
    }
    .consulting p {
        font-size: 1em;
    }
    .consulting .catchphrase {
        font-size: 1.2em;
    }
}