/* ベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hiragino Sans', 'Meiryo', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 15%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

/* ヘッダー */
header {
    position: relative;
    overflow: hidden;
}

.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-area {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #c9a52c;
    padding: 15px 30px;
    color: white;
    font-weight: bold;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: 10;
}

.header-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px;
}

.header-content h1 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.header-content p {
    font-size: 16px;
}

/* メインコンテンツ */
.main-content {
    padding: 100px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature-reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    padding: 0 40px;
}

.feature-text {
    flex: 1;
    padding: 0 40px;
}

.feature-title {
    position: relative;
    padding-left: 25px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.feature-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-color: #c9a52c;
    border-radius: 50%;
}

.feature-description {
    font-size: 14px;
    line-height: 1.8;
}

/* FAQ セクション */
.faq-section {
    padding: 60px 0;
    background-color: #ebebeb;
}

.faq-heading {
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
}

.faq-item {
    background-color: white;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.question {
    padding: 20px;
    display: flex;
    align-items: flex-start;
}

.question-icon {
    color: #c9a52c;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
}

.question-text {
    font-weight: bold;
    color: #333;
}

.answer {
    padding: 0 20px 20px 20px;
    display: flex;
    align-items: flex-start;
}

.answer-icon {
    color: #0077B6;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
}

.answer-text {
    color: #555;
}

/* フッター */
footer {
    background-color: white;
    padding: 40px 0 0 0;
    margin: 0;
}

.footer-content {
    display: flex;
    flex-direction: column; /* 縦方向に並べる */
    align-items: center; /* 中央寄せ */
    margin-bottom: 40px;
}

.footer-content > div:last-child {
    display: flex;
    justify-content: center; /* 横方向の中央寄せ */
    width: 100%;
}

.company-info {
    display: flex;
    flex-direction: column; /* 縦方向に並べる */
    align-items: center; /* 中央寄せ */
    margin-bottom: 30px; /* 下部に余白を追加 */
    text-align: center; /* テキストを中央寄せ */
}

.company-logo {
    width: 80px;
    margin-right: 0; /* 右側の余白を削除 */
    margin-bottom: 20px; /* 下側に余白を追加 */
}

.company-details {
    font-size: 14px;
}

.company-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.company-table {
    margin: 0 auto; /* 中央寄せ */
    margin-bottom: 30px; /* 問い合わせボタンとの間隔 */
}

table.company-table {
    font-size: 9px;
}

.company-item {
    font-size: 14px;
    color: #333;
    text-align: left;
    padding-right: 20px;
    white-space: nowrap;
    vertical-align: top;
    line-height: 1.6;
}

.company-value {
    font-size: 14px;
    color: #333;
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    background-color: #c9a52c;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #b18a1c;
}

.footer-gold-bar {
    width: 100%;
    line-height: 0;
}

.footer-gold-bar img {
    width: 100%;
    display: block;
}

.copyright {
    text-align: right;
    font-size: 12px;
    color: #888;
    margin-top: 30px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .feature {
        flex-direction: column;
    }
    
    .feature-reverse {
        flex-direction: column;
    }
    
    .feature-image, .feature-text {
        width: 70%;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .company-info {
        margin-bottom: 30px;
    }
    
    body {
        padding: 0 !important;
    }
@media (max-width: 500px) {
    body {
        padding: 0 !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-image {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    
    .company-info {
        flex-direction: column;
    }
    
    .company-logo {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .header-content h1 {
        font-size: 22px;
    }
    
    .header-content p {
        font-size: 14px;
    }
}