/* メインコンテンツ */
        .main-content {
            max-width: 1000px;
            margin: 20px auto;
            padding: 80px 15px 0 15px;
        }
        
        h1{
          font-size: 24px;
          padding-left: 10px;
        }
        
        .back-link {
            display: inline-block;
            margin-bottom: 20px;
            padding: 8px 15px;
            background-color: #8BC34A;
            text-decoration: none;
            color: #fff;
            border-radius: 4px;
            font-weight: bold;
        }
        
        .back-link:hover {
            background-color: #7CB342;
        }
        
        /* 詳細情報 */
        .agency-detail {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .agency-header {
            display: flex;
            justify-content: space-between;
            background: #8BC34A;
            color: #fff;
            padding: 15px;
        }
        
        .agency-name {
            font-size: 22px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .icon-text {
            margin-right: 8px;
        }
        
        .agency-certification {
            display: flex;
            align-items: center;
            font-size: 14px;
        }
        
        .certification-badge {
            background-color: #ffd700;
            color: #333;
            padding: 4px 8px;
            border-radius: 50px;
            margin-right: 10px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .detail-section {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .detail-section:last-child {
            border-bottom: none;
        }
        
        .section-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #8BC34A;
            display: flex;
            align-items: center;
        }
        
        .section-title::before {
            content: "■";
            margin-right: 8px;
            color: #8BC34A;
        }
        
        .detail-content {
            padding-left: 20px;
            margin-bottom: 15px;
            font-size: 16px;
            line-height: 1.8;
        }

        .price-label {
            display: inline-block;
            background-color: #8BC34A;
            color: #fff;
            padding: 4px 15px;
            border-radius: 43px;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .agency-status {
            background-color: #e74c3c;
            color: #fff;
            padding: 15px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .coupon-label {
            background-color: #fff;
            color: #e74c3c;
            padding: 3px 8px;
            border-radius: 4px;
            margin-right: 10px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .coupon-content {
            flex: 1;
            font-size: 16px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        .agency-phone {
            font-size: 22px;
            font-weight: bold;
            margin-top: 10px;
        }
        
        .agency-phone a {
            color: #333;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .agency-phone a:hover {
            color: #8BC34A;
        }
        
        .area-tags {
            display: flex;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        
        .area-tag {
            background-color: #ecf0f1;
            color: #2c3e50;
            padding: 5px 15px;
            border-radius: 50px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-size: 13px;
        }
        
        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        
        .payment-method {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 5px 10px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-size: 13px;
        }
        
        .invoice-label {
            display: inline-block;
            background-color: #e74c3c;
            color: #fff;
            padding: 5px 10px;
            border-radius: 4px;
            margin-right: 10px;
            font-size: 14px;
        }      
                
        /* レスポンシブ */
        @media (max-width: 768px) {
                       
            .agency-header {
                flex-direction: column;
            }
            
            .agency-certification {
                margin-top: 10px;
            }
        }

        .text-center {
            text-align: center;
        }