/* 基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    margin: 0;
    padding: 0;
}

/* ヘッダー */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0; /* パディングを完全に削除 */
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    padding-left: 0; /* 左パディングを削除 */
}

.logo-image {
    height: 9rem;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    display: inline-block;
}

.logo-text-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.logo-text-link:hover {
    color: #00ffff;
}

header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00ffff;
}

/* メインコンテンツ */
main {
    padding: 120px 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* サービス概要セクション */
.service-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.subtitle {
    font-size: 1.4rem;
    color: #ccc;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #ccc;
}

/* コンテンツレイアウト */
.content-wrapper {
    margin: 6rem 0;
}

.service-content {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    padding-top: 2rem;
}

.image-container {
    display: flex;
    flex-direction: column;
    flex: 0 0 60%;
    max-width: 800px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.text-container {
    flex: 1;
    min-width: 0;
    order: 3;
}

/* サービスフェーズ */
.service-phase {
    margin-bottom: 3rem;
}

.service-phase h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.service-phase p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* サービスリスト */
.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #ccc;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00ffff;
}

/* 特徴セクション */
.features {
    text-align: center;
    padding: 4rem 2rem;
    background-color: rgba(255, 255, 255, 0.05);
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.feature {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* CTA セクション */
.cta {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-button {
    background-color: #00ffff;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #00cccc;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
    }
    
    .image-container {
        flex: none;
        max-width: 100%;
    }
    
    nav ul {
        display: none;
    }
}

/* PMOセクション */
.pmo-section {
    max-width: 800px;
    margin: 6rem auto 0;
    padding: 0 2rem;
}

.pmo-section h2 {
    font-size: 1.9rem;
    margin-bottom: 2rem;
    text-align: center;
}

.pmo-section p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: center;
    font-size: 1rem;
}

/* 2番目の段落（82行目）のみ改行を防ぐ */
.pmo-section p:nth-child(3) {
    white-space: nowrap;
}

/* サービスリストのスタイル */
.pmo-section .service-list {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}