/* モダンでシンプルなスタイル */
html, body {
    min-height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eef7ee;
    color: #1f3d2e;
    line-height: 1.6;
}

header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

header img {
    max-width: 150px;
    height: auto;
}

nav {
    margin-top: 20px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #7fbf7f;
}

main {
    flex: 1;
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero {
    text-align: center;
    margin-bottom: 30px;
}

.hero img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 8px;
}

.hero-text {
    margin-top: 20px;
}

h1, h2, h3 {
    color: #7fbf7f;
}

button, .btn {
    background-color: #7fbf7f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
}

button:hover, .btn:hover {
    background-color: #5f9f5f;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #2f4f3f;
    color: white;
    margin-top: auto;
}

footer img {
    max-width: 200px;
    height: auto;
    margin-top: 10px;
}

.team-member {
    display: inline-block;
    text-align: center;
    margin: 20px;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.service-btn {
    text-align: center;
    margin: 20px 0;
}

.service-btn img {
    width: 150px;
    height: auto;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.service-btn img:hover {
    transform: scale(1.05);
}

.faq {
    margin-bottom: 20px;
}

.faq h3 {
    margin-bottom: 10px;
}

.faq p {
    display: block;
    margin: 0;
}

.sns-links {
    text-align: center;
    margin: 20px 0;
}

.sns-links img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

/*注目枠*/
.cp_point {
	position: relative;
	margin: 40px 0 30px;
	padding: 45px 20px 15px 40px;
	background: #fcecec;
	border: 1px solid #da3c3c;
	border-radius: 4px;
}
.cp_point:before,.cp_point:after {
	position: absolute;
	display: block;
}
ul.cp_point:before {
	content: attr(title);
	top: -2px;
	left: 0.5em;
	width: auto;
	height: auto;
	padding: .3em 1em;
	background: #da3c3c;
	text-align: center;
	font-weight: bold;
	font-size: 90%;
	color: #fff;
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
	border-bottom: 2px dotted #fcecec;
}
.cp_point li {
	position: relative;
	list-style-type: none;
}
.cp_point li::before {
	position: absolute;
	top: .25em;
	left: -1.3em;
	font-family: FontAwesome;
	content: " ";
	color: #da3c3c;
}

/*注目枠ここまで*/

#software {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	align-items: center;
}

#software a {
	max-width: 100%;
	flex: 1 1 280px;
	text-align: center;
}

#software img {
	width: 100%;
	height: auto;
	max-width: 400px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
