
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #fff4e6; /* 薄いオレンジ系の背景色 */
}
.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: #ff8c00; /* 深いオレンジ色 */
    color: #fff;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
}
header p {
    font-size: 1.2em;
    margin-top: 10px;
    line-height: 1.5;
}
section {
    margin-bottom: 40px;
}
section h2 {
    color: #ff8c00; /* 深いオレンジ色 */
    border-bottom: 2px solid #ff8c00;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
section h3 {
    color: #333;
    margin-top: 30px;
}
p {
    margin-bottom: 20px;
}
ul {
    list-style: disc inside;
    margin-bottom: 20px;
}

/* 強調部分のスタイル */
em {
    font-style: normal;
    background-color: #fffae6;
    color: #d35400;
    font-weight: bold;
    padding: 0 4px;
    border-radius: 4px;
}

.highlight {
    background-color: #ffe5b4; /* 明るいオレンジ色 */
    padding: 10px;
    border-left: 4px solid #ff8c00;
    margin-bottom: 20px;
}
.consulting {
    background-color: #fff3e0; /* 薄いオレンジ色 */
    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: #ff8c00; /* 深いオレンジ色 */
    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;
    }
}
/* ボタンのスタイル */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffa500;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #ff8c00;
}
